Vol. 1 — June 2026
L1 LIBRARY

Built from MIT curriculum · Every chain. Explained.

L1
CONCEPT · CONSENSUS

Proof of Stake

A consensus mechanism that chooses the next block producer by a lottery weighted by stake rather than by computation. Validators post tokens as collateral; misbehavior risks losing the stake.

Last updated: June 10, 2026

Why It Matters

Proof of Work bought security with electricity — and by the late 2010s the bill had become the industry’s defining controversy. Proof of Stake is the answer to one question: can you keep PoW’s security properties while replacing burned energy with locked capital?

The bet paid off at scale: Ethereum’s 2022 Merge moved the second-largest chain to PoS and cut its energy use by ~99.95%. But the casebook’s caveat still stands — stake-based security has its own blind spots, and the debate between the two camps is really a debate about what “skin in the game” should mean.

How It Works

Beginner

Instead of a race between computers, imagine a raffle where your odds are proportional to how many tokens you’ve locked up as a deposit. Win, and you get to add the next block and earn rewards. Cheat, and the network can confiscate your deposit. Your stake is both your lottery ticket and your bond for good behavior.

Intermediate

Validators lock (stake) tokens as collateral. The protocol selects a block proposer pseudo-randomly, weighted by stake. Other validators attest to the block; provable misbehavior — like signing two conflicting blocks — triggers slashing, destroying part of the offender’s stake.

The security arithmetic changes: a 51% attack now requires owning a majority of staked tokens rather than hashing power. That capital is on-chain and destructible — attacking the network devalues and forfeits your own position. The casebook’s caveat: the protocol can’t see a validator’s off-chain holdings. An attacker who profits elsewhere from the chain’s collapse — short positions, a competing chain, political motives — isn’t fully deterred by losing stake.

Builder

Modern PoS (Ethereum’s Gasper): validators stake 32 ETH each; committees attest every slot (12s); finality comes from Casper-FFG checkpoints — two-thirds of total stake must attest across two epochs (~13 min) for a block to be final. Slashing conditions are narrow and provable (double-proposal, surround-voting). Long-range attacks are handled socially via weak subjectivity checkpoints. Stake-grinding is mitigated by RANDAO (plus future VDF designs).

Examples

  • Ethereum — Gasper PoS since the Merge (Sept 2022); ~34M ETH staked.
  • Cardano — Ouroboros PoS, delegation-friendly with stake pools.
  • AlgorandPure Proof of Stake: no slashing, no minimum, sortitioned committees.
  • VariantsDelegated Proof of Stake (vote for block producers).

Tradeoffs

Strengths

  • Energy efficiency — security from capital at risk, not electricity; orders of magnitude less energy than PoW.
  • Internalized punishment — slashing makes attacks directly destructive to the attacker’s own capital.
  • Fast(er) finality — vote-based attestation enables explicit finality instead of probabilistic confirmations.
  • Lower hardware barrier — no ASIC arms race; consumer hardware can validate.

Limitations

  • Off-chain motives blind spot — the protocol can’t price an attacker’s external incentives (the casebook’s core caveat).
  • Rich-get-richer dynamics — stake earns yield, compounding concentration over time.
  • Liquid-staking centralization — pooled staking products can aggregate dangerous fractions of total stake.
  • Complexity — slashing, checkpoints, and weak subjectivity are far harder to reason about than longest-chain.

Main alternative: Proof of Work — burns external energy instead of risking internal capital.

Sources & Last Updated

  • MIT BLC Module 2: Maintaining Blockchain Integrity (primary source)
  • Vault note: Proof of Stake (M2 cluster)

Freshness note: the casebook pre-dates Ethereum’s Merge (2022); current-state material is flagged inline and should be re-verified annually.

Last updated: June 10, 2026