Skip to content

Proof of Stake & The Merge

Proof of Work answers the Sybil problem with physics: influence over the next block costs real energy, and you cannot fake the failed-hash footprint of electricity you never spent. Ethereum used Proof of Work too, for its first seven years — and then, on 15 September 2022, in an event called The Merge, it switched the entire live network to a completely different way of rationing influence: Proof of Stake (PoS). This page explains what PoS replaces mining with, why The Merge cut Ethereum’s energy use by roughly 99.95%, and the genuinely open debate about whether staking capital is a stronger or weaker anchor for “one ledger” than burning energy. We’ll keep it balanced — this is one of the most contested questions in the field.

The core swap: scarce energy → scarce capital

Section titled “The core swap: scarce energy → scarce capital”

Both Proof of Work and Proof of Stake solve the same problem: make influence expensive so identities can’t be faked. They disagree only on which scarce resource does the rationing.

PROOF OF WORK (Bitcoin) PROOF OF STAKE (Ethereum, post-Merge)
────────────────────────── ──────────────────────────────────────
scarce resource : energy/hardware scarce resource : staked capital (ETH)
to influence : spend electricity to influence : lock up coins as a bond
cost is : external (burned cost is : internal (at risk —
in the real world) slashed if you cheat)
wasteful by : design (the burn wasteful by : (almost) nothing burned;
IS the security) the bond is the security

In Proof of Work the cost is spent — electricity leaves the system as heat, and that irreversible burn is the security. In Proof of Stake the cost is at risk — you lock up coins as a bond, and the protocol can destroy part of that bond if you misbehave. Nothing is continuously burned, which is why the energy footprint collapses. The security comes not from “I paid to be here” but from “I have something large to lose if I cheat.”

To participate you become a validator by staking 32 ETH into the protocol. Validators do the job miners used to: propose new blocks and vote (attest) to the validity of others’ blocks.

  • Time is sliced into slots and epochs. A slot is 12 seconds (one chance to propose a block); an epoch is 32 slots (~6.4 minutes). In each slot a validator is pseudo-randomly chosen to propose, and a committee attests.
  • Finality is explicit. Unlike Bitcoin’s probabilistic finality (a payment grows safer as blocks pile on, never reaching 100%), Ethereum’s PoS finalizes checkpoints after two epochs (~12.8 minutes) — once finalized, reverting them would require an attacker to lose at least a third of all staked ETH. This explicit, capital-backed finality is one of PoS’s headline claims.
  • Rewards flow to validators that propose and attest honestly and on time — replacing the block subsidy and fees miners earned.

Slashing: where the “at risk” becomes real

Section titled “Slashing: where the “at risk” becomes real”

Proof of Work has a built-in honesty incentive: mine on the wrong chain and you waste real electricity. Proof of Stake needs an equivalent stick, because signing messages is nearly free. That stick is slashing.

A validator that commits a provable protocol violation — the canonical ones are double-proposing (signing two different blocks for the same slot) or surround voting (casting contradictory attestations) — can have a chunk of its 32 ETH destroyed and be forcibly ejected from the validator set. The proof of the violation is itself a message anyone can submit on-chain.

honest validator : earns steady rewards, keeps its 32 ETH stake
offline validator : small "inactivity" penalties (leaks stake slowly)
cheating validator : SLASHED — loses a portion of stake + is ejected

This is the answer to the classic “nothing at stake” critique of naïve Proof of Stake: if signing were free, a validator could costlessly vote for every competing fork and never lose by hedging. Slashing makes hedging expensive — vote for two conflicting histories and you can be proven a cheat and have your bond burned. The thing you’d lose by attacking the ledger is now inside the ledger.

Here is where reasonable, informed people genuinely disagree. The debate is not “is PoS a scam” vs “is PoW wasteful” — it’s a real trade between two ways of anchoring trust. Laid out fairly:

QuestionProof of Work viewProof of Stake view
Where does cost live?Outside the system — energy and ASICs in the physical world, unforgeableInside the system — staked coins, enforced by the protocol itself
Attack a finalized chainOut-hash the whole network (rent/buy a majority of hashpower)Acquire and risk on the order of a third-to-half of all staked ETH; an attack gets your stake slashed
EnergyThe burn is the security; critics call it wasteful~99.95% less energy — a major selling point
Bootstrapping a new nodeObjective from genesis: just follow the most-work chainWeakly subjective: a brand-new node needs a recent trusted checkpoint to rule out old long-range forks
Centralization worryASIC manufacturing + mining pools concentrate hashpowerStaking concentrates via large staking pools / exchanges; “rich get more” reward dynamics

Two points deserve special honesty:

  • Weak subjectivity. A fresh Bitcoin node can verify the whole chain from the genesis block using nothing but the most-work rule — its trust is objective. A fresh PoS node, in the worst case, cannot distinguish the real history from an elaborate old fork built by validators who have since unstaked, so it relies on a recent trusted checkpoint (a “weak subjectivity” assumption). PoW advocates consider this a fundamental weakening; PoS advocates consider a months-old checkpoint a mild, practical assumption that ordinary software updates already make.
  • Centralization cuts both ways. PoW concentrates in ASIC supply chains and pools; PoS concentrates in large staking providers and exchanges (and in jurisdictions, since staking is more regulatable than burning electricity). Neither model is automatically more decentralized — they centralize along different axes.

How does staked capital let untrusting strangers agree on one ledger? By the same logic Proof of Work uses, with the scarce resource swapped. Strangers don’t need to trust a validator’s identity or intentions — they need that anyone trying to corrupt the ledger stands to lose something large and unfakeable. Proof of Work makes that “something” external energy already spent; Proof of Stake makes it internal capital that the protocol itself can slash. Both keep the property the whole book has chased: influence over the next block is rationed by a scarce cost no software trick can counterfeit. The genuine, unsettled question — and it is unsettled — is whether an internal bond (which the system can destroy, but which also makes finality fast and explicit) is a sturdier anchor than an external burn (which is objectively verifiable from genesis, but wasteful by design). Bitcoin bet on the burn; Ethereum, as of 2022, bet on the bond.

Proof of Stake is the clearest contrast design to Bitcoin’s PoW — interrogate the swap:

  • Why does it exist? To solve the same Sybil problem as Proof of Work but with a different scarce resource — staked capital instead of burned energy — so influence over the next block is rationed by coins you’d lose, not electricity you spent.
  • What problem does it solve? Sybil resistance without the energy (The Merge cut Ethereum’s use ~99.95%), plus explicit finality — checkpoints finalize after ~2 epochs (~12.8 min), and reverting them costs ≥1/3 of all staked ETH, a guarantee PoW’s probabilistic finality never offers. Slashing answers the “nothing-at-stake” critique by making hedging across forks provably punishable.
  • What are the trade-offs? Security cost moves inside the system (a bond the protocol can destroy), and a fresh node is only weakly subjective — it needs a recent trusted checkpoint to rule out long-range forks, where a Bitcoin node bootstraps objectively from genesis. Stake concentrates in large pools/exchanges and is more regulatable.
  • When should I avoid it? PoS is the wrong choice when objective, from-genesis verification and an externally-anchored, hard-to-censor cost are the priority — exactly what Bitcoin guards by sticking with energy.
  • What breaks if I remove it? Drop slashing and signing is nearly free, so “nothing-at-stake” returns — validators could costlessly vote for every competing fork — and the bond stops being “at risk,” collapsing the entire PoS security argument.
  1. On what exact date did The Merge happen, and what single thing did it change about Ethereum?
  2. Both PoW and PoS make influence expensive. Name the scarce resource each uses, and say whether its cost is “spent” or “at risk.”
  3. What is slashing, and which classic critique of naïve Proof of Stake does it answer?
  4. Explain “weak subjectivity”: why can a fresh Bitcoin node bootstrap objectively while a fresh PoS node may need a trusted checkpoint?
  5. Name two things The Merge did not do, and the roughly-99.95% figure it did deliver.
Show answers
  1. 15 September 2022. It changed Ethereum’s consensus mechanism only — from Proof of Work to Proof of Stake (the existing execution layer stopped mining and started taking its ordering from the already-running Beacon Chain). It did not change fees, speed, or capacity.
  2. PoW uses energy/hardware, and that cost is spent (electricity is irreversibly burned as heat — the burn is the security). PoS uses staked capital (ETH), and that cost is at risk (locked as a bond the protocol can slash if you cheat).
  3. Slashing destroys part of a validator’s staked ETH and ejects it when the validator commits a provable violation (e.g. double-proposing a slot or surround-voting). It answers the “nothing at stake” critique: if signing were free, a validator could costlessly vote for every competing fork; slashing makes such hedging provably punishable, so the thing you’d lose by attacking the ledger lives inside the ledger.
  4. A fresh Bitcoin node can verify the entire chain from genesis using only the most-work rule — its trust is objective, requiring no outside input. A fresh PoS node, in the worst case, can’t distinguish the true history from an elaborate old long-range fork built by validators who have since unstaked, so it relies on a recent trusted checkpoint — a “weak subjectivity” assumption. PoW advocates call this a real weakening; PoS advocates call a months-old checkpoint a mild, practical assumption.
  5. The Merge did not lower fees and did not increase throughput/speed (those are the job of other upgrades and layer-2 rollups); staked-ETH withdrawals also came only later (Shanghai/Capella, April 2023). What it did deliver was the switch to Proof of Stake and a roughly 99.95% drop in energy use (a 2022 estimate — treat as order-of-magnitude).