Topic lesson Sun, Aug 16, 2026 · 8 min read

How Ethereum Adds a Block

Slots, attestations, fork choice, and the difference between the head of the chain and a block that can never be undone.

Proof of Stake Mechanics · intro

Where this sits

The clock

The clock runs whether or not anyone proposes. A slot with no block is an empty slot; the chain continues at the next one.

Validators

What an attestation says

One attestation carries three claims at once, and the two halves of consensus read different parts of it.

ClaimMeaningUsed by
Head"This block is the tip of the chain I see"Fork choice (LMD-GHOST)
SourceThe last checkpoint the validator considers justifiedFinality (Casper FFG)
TargetThe checkpoint of the current epochFinality (Casper FFG)

A checkpoint is just the block at the first slot of an epoch. Voting happens on blocks every slot, but finality is decided on checkpoints once an epoch — which is why finality moves in 6.4-minute steps rather than 12-second ones.

Fork choice: which chain is real right now

Finality: which chain can never change

Finality is economic, not mathematical. Reverting a finalized checkpoint requires validators holding at least a third of all staked ETH to sign contradictory votes, which is exactly the evidence needed to slash them. The chain is not impossible to reverse; reversal is priced at billions of dollars and the attacker pays it whether or not the attack succeeds.

Why it matters

There are three different meanings of "confirmed"

StateTypical delayWhat can still happen
In a block at the headup to 12sReorged away by fork choice
Justified~6.4 minVery unlikely to revert; not yet final
Finalized~13 minOnly by an attack that burns billions

Liveness and safety are separate failures

The proposer has a monopoly for 12 seconds

Where to go deeper

Threads left open

  • What is actually inside a block — accounts, transactions, state
  • How block building is outsourced, and what MEV does to the proposer role
  • Reorg mechanics in detail

The next topic lesson picks these up.

Sources