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

Because the work is off-chain, you cannot verify a miner's output by reading the blockchain. You can only see the scores validators assigned to it. That is why the incentive design of each individual subnet matters so much.

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

RoleWhat they doHow they earn
MinerRuns the software a subnet asks for and answers validator requests.A share of the subnet's miner emission, set by its incentive score.
ValidatorQueries miners, scores their responses, and submits weights on chain.A share of the subnet's validator emission, shared with its delegators.
Delegator / stakerStakes TAO behind a validator without running infrastructure.A portion of that validator's dividends, minus the validator's take.
Subnet ownerDefines 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

Anyone with your coldkey mnemonic can move your funds. Never enter it into a website, including this one. TaoScope has no feature that requires it.

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.

BlocksApproximate wall-clock time
112 seconds
51 minute
3001 hour
360 (default tempo)72 minutes
4,096 (default immunity period)~13.7 hours
7,2001 day

Defaults are not guarantees

Tempo and immunity period are per-subnet hyperparameters that owners can change. Always read the live value for the subnet you care about — TaoScope shows both on each subnet detail page.