Skip to content

Block Subsidy, Halving & Issuance

Every new bitcoin in existence entered the world the same way: as the block subsidy paid to the miner who found a block. There is no other minting mechanism — no central bank, no pre-mine faucet that keeps dripping. The entire monetary policy of Bitcoin is a few lines of code that halve the subsidy on a fixed schedule, and from that simple rule the famous 21-million cap falls out automatically.

The first transaction in every block is the coinbase transaction (see Coinbase Transactions). It has no real inputs — it conjures value — and it pays the miner two things:

miner reward = block subsidy + sum of all transaction fees in the block
(newly minted) (recycled from users)

Only the subsidy is new money. The fees are coins that already existed, paid by users for block space (see the fee market). This distinction matters enormously for Bitcoin’s long-run security, which we return to below.

The subsidy started at 50 BTC per block at genesis and is cut in half every 210,000 blocks — which, at the ~10-minute target block time, is roughly every four years.

Era 1 (blocks 0–209,999) 50 BTC/block
Era 2 (210,000–419,999) 25 BTC/block
Era 3 (420,000–629,999) 12.5 BTC/block
Era 4 (630,000–839,999) 6.25 BTC/block
Era 5 (840,000–1,049,999) 3.125 BTC/block
... halving continues until the subsidy rounds to zero

Each of these events is called a halving (or “halvening”). Because the supply increase is known in advance and cannot be altered without breaking consensus, anyone can compute Bitcoin’s exact future issuance for the next century — a stark contrast with discretionary fiat printing.

The total ever issued is just a geometric series. Each era mints 210,000 × subsidy, and the subsidy halves each era:

210,000 × (50 + 25 + 12.5 + 6.25 + ...) BTC
= 210,000 × 50 × (1 + ½ + ¼ + ⅛ + ...)
= 210,000 × 50 × 2
= 21,000,000 BTC (in the limit)

The infinite sum 1 + ½ + ¼ + … converges to 2, so the whole thing converges to 21 million.

Here is the rare insight most people miss. Proof of Work’s security comes from the fact that mining is expensive, and miners only spend that money because they’re paid. Today the subsidy dominates that pay. But the subsidy is engineered to vanish:

TODAY: security paid mostly by ──► subsidy (new issuance)
~2140 onward: security paid entirely by ──► transaction fees

This is an open, genuinely debated question in Bitcoin economics: will fee revenue alone be enough to fund a secure hash rate once the subsidy is gone? The optimistic view is that a thriving fee market (driven by demand for block space) will carry it; the skeptical view worries about a shrinking security budget. Either way, it’s not decided by decree — it’s an emergent property of future demand. We explore both sides in Miner Incentives & the Security Budget.

How does this help untrusting strangers agree on one ledger? The issuance schedule is the one piece of “monetary policy” that every participant agrees on without trusting anyone — it’s just arithmetic enforced by every node. No stranger has to believe a central authority about how many coins exist or will exist; they can compute it themselves and reject any block that pays the miner even one satoshi too much. Predictable, verifiable scarcity is itself a form of trustless agreement.

  1. What are the two components of a miner’s reward, and which one actually creates new bitcoin?
  2. State the halving rule precisely — in blocks, not years — and explain why the “four years” figure is only approximate.
  3. Show, with the geometric series, why total issuance converges to 21 million.
  4. Why is the real supply cap slightly below 21 million?
  5. What is the “security budget” problem, and why does the halving schedule make it a long-term question rather than a present-day one?