The network
Bittensor is a blockchain that pays for useful work. The work itself happens off-chain; the chain records who took part, measures agreement about who did it well, and emits TAO accordingly.
The Subtensor chain
Bittensor runs on a Substrate-based blockchain called Subtensor. The production network is known as Finney; a public test network runs the same software with valueless tokens.
Subtensor does not execute the AI workloads itself. Machine learning inference, data retrieval, and every other task a subnet defines happen on participants' own hardware. What the chain stores is the accounting layer: which accounts are registered where, what scores validators submitted, and how much TAO each participant has earned.
Why this matters
The TAO token
TAO is the network's native token. Its maximum supply is capped at 21,000,000. New TAO is minted every block and distributed to subnets according to how much stake each has attracted, then distributed within each subnet to the participants who earned it.
Block emission follows a halving schedule tied to total issuance rather than to a fixed calendar. The first halving reduced the per-block emission from 1 TAO to roughly 0.5 TAO. Live issuance figures are shown on the analytics page.
The smallest unit of TAO is the RAO, where 1 TAO = 109 RAO. Chain APIs return balances in RAO; TaoScope converts them to TAO before display.
Who participates
| Role | What they do | How they earn |
|---|---|---|
| Miner | Runs the software a subnet asks for and answers validator requests. | A share of the subnet's miner emission, set by its incentive score. |
| Validator | Queries miners, scores their responses, and submits weights on chain. | A share of the subnet's validator emission, shared with its delegators. |
| Delegator / staker | Stakes TAO behind a validator without running infrastructure. | A portion of that validator's dividends, minus the validator's take. |
| Subnet owner | Defines the task, writes the incentive mechanism, and maintains the code. | 18% of the subnet's emission. |
Miners and validators are both called neurons. A neuron is identified by a hotkey and occupies a numbered UID slot on a specific subnet. See Miners and validators.
Coldkeys and hotkeys
Every wallet has a coldkey that holds funds and one or more hotkeys that operate on the network. A hotkey lives on the machine running your miner or validator, so it is exposed by design; the coldkey should stay offline.
Protect your coldkey
The root network
Netuid 0 is the root network. It is unlike every other subnet: it has no miners, no task, and no alpha token. Registration there is stake-based rather than burn-based.
Root is where TAO is staked directly. Root stake counts toward a validator's stake weight on every subnet, scaled by a governance-set global TAO weight (0.18 on mainnet at the time of writing). By convention root TAO is priced at 1.0 wherever subnet prices are summed.
TaoScope excludes netuid 0 from subnet listings and miner tooling, because neither registration cost nor miner emission applies to it.
Measuring time in blocks
Subtensor produces one block roughly every 12 seconds, which works out to about 7,200 blocks per day. Chain parameters — immunity periods, rate limits, epoch lengths — are all expressed in blocks rather than in seconds, so it is worth memorising the conversions.
| Blocks | Approximate wall-clock time |
|---|---|
| 1 | 12 seconds |
| 5 | 1 minute |
| 300 | 1 hour |
| 360 (default tempo) | 72 minutes |
| 4,096 (default immunity period) | ~13.7 hours |
| 7,200 | 1 day |
Defaults are not guarantees