Workchain
An independent blockchain inside the TON network, with its own rules and address format. The protocol reserves up to 2^32 workchains; in practice, two are live — masterchain (-1) and basechain (0).
Aliases: work chain, ton workchain
A workchain is an autonomous blockchain that lives under the umbrella of the TON network. The protocol allows up to 2^32 workchains to coexist, each with its own virtual machine, native asset, and account format. In practice, only two are active in 2026:
- Masterchain (
workchain_id = -1) — the coordination chain that holds validator sets and global config. - Basechain (
workchain_id = 0) — the chain ordinary users and dApps interact with.
Every TON address is prefixed by its workchain ID, e.g. 0:abc… for basechain and -1:abc… for masterchain. Tonkeeper, Tonhub, and most dApps default to basechain because storage and gas there are cheaper than on the masterchain.
Why allow many workchains
The original TON whitepaper assumed that, eventually, dedicated workchains would appear for specific roles — e.g. an EVM-compatible workchain, a privacy workchain, or a workchain restricted to fiat-backed stablecoins. Each new workchain would need explicit governance approval and a quorum of validators willing to validate it.
The architectural advantage is isolation: a bug in the rules of workchain N would not corrupt workchain 0. The cost is coordination, since cross-workchain messages still travel through the masterchain.
Workchain vs shardchain
Workchains are static units defined by governance. Shardchains are dynamic subdivisions of a workchain that the network creates and destroys on the fly to absorb load. A workchain can be split into up to 2^60 shards in theory; in practice the basechain runs with a handful of shards most of the time, and merges them back when load is low.
Why only two workchains today
Adding a workchain is a heavy lift: validators have to install new software, governance has to vote, and applications have to rewrite address parsing. The TON team has so far preferred to scale the basechain via shardchains rather than to fragment the network into specialised workchains. As of 2026 there are no public proposals to launch a third workchain, but the hooks are there.
What this means for users
For 99% of users, “workchain” never surfaces. Wallet addresses begin with 0: or EQ…/UQ… (basechain), token contracts live there, and wallet apps abstract the prefix away. The concept matters mainly to developers and to anyone parsing raw addresses — strip or check the workchain prefix correctly, otherwise you’ll send funds to the wrong chain.