Illustrated Guide

The Merge: How Ethereum Actually Switched to Proof of Stake

On September 15, 2022, Ethereum stopped mining forever. This guide rebuilds the proof-of-stake machine that took over that day — the deposit contract, GHOST voting, committees, BLS aggregation and Casper finality — frame by frame from an animated explainer.

9 minutes • 16 illustrated steps • In-depth historical chronology & technical analysis

Editorial Research & Chronological Archive

Independently synthesized and cross-verified by The Blockchain History Editorial Board using primary whitepapers, historical archives, and on-chain records.

Fact-checked Archive

When did Ethereum switch to proof of stake?

Ethereum switched to proof of stake on September 15, 2022, at 06:42:42 UTC. The network had been waiting for its total cumulative mining difficulty to reach a pre-agreed value — the Terminal Total Difficulty of 58,750,000,000,000,000,000,000 — and block 15,537,393 pushed it past the line (to 58,750,003,716,598,352,816,469). That was the last proof-of-work block ever mined; the Beacon Chain's validators produced the first proof-of-stake block, 15,537,394, minutes later. Mining on Ethereum ended permanently, network energy use fell by about 99.95%, and the consensus machine explained in this guide — staking, GHOST voting, committees, BLS aggregation and Casper finality — has run every block since.

Key Takeaways

  • The Merge executed on September 15, 2022 at 06:42 UTC: once total difficulty crossed the Terminal Total Difficulty of 58,750,000,000,000,000,000,000, block 15,537,393 became the last PoW block and 15,537,394 the first PoS block — mining ended overnight.
  • Switching to validation cut Ethereum's energy consumption by about 99.95%, from roughly the electricity use of a mid-sized country to something ordinary home hardware can participate in.
  • Each validator stakes exactly 32 ETH plus a public key and withdrawal address; by merge day the Beacon Chain — live since December 1, 2020 — held over 400,000 validators and more than 13 million ETH of stake.
  • The 12,000-plus votes behind every block are aggregated through 128 subnets into a single BLS signature — the trick that lets hundreds of thousands of validators reach consensus on normal hardware.
  • Thirty-two slots of 12 seconds form an epoch (6 minutes 24 seconds); once two consecutive epochs secure a two-thirds supermajority of stake, blocks are final — about 13 minutes end to end.
  • 84.4% of validator income comes from attestations rather than block proposals; network issuance floats between 0.17% and 0.94% per year depending on total stake, and post-merge issuance dropped roughly 90% versus the PoW era.

The Consensus That Replaced Mining

The Merge was not a new coin or a reboot — it was an engine swap. Here is what Ethereum switched to, and how a deposit turns into proof.

  1. 1

    No new chain, no downtime: an engine swap

    On September 15, 2022, Ethereum's execution layer stopped listening to miners and adopted the Beacon Chain's consensus — a combined protocol called Gasper. Inside it, LMD GHOST decides which branch of the chain has the most validator support, while Casper FFG decides when that choice becomes irreversible. The animation this guide is built from walks through exactly that machine: the one that quietly took over from proof of work, one block after the last mined one.

    LMD GHOST title card from Alt Explainer's animation of Ethereum's proof-of-stake consensus, the fork-choice half of the Gasper protocol Ethereum runs after The Merge
    Half of the machine that replaced mining.
  2. 2

    First register, then validate

    Proof of stake starts with a register. To become a validator you deposit exactly 32 ETH — along with a public key and a withdrawal address — into a staking contract that lists every participant for the whole network to audit. The chain that keeps this register, the Beacon Chain, went live on December 1, 2020, and by merge day it held deposits from more than 400,000 validators: over 13 million ETH of stake. The Merge simply let this mining-free consensus layer take over block production.

    Ethereum staking smart contract register listing validators #88 through #690 with 32 ETH stakes, public addresses and withdrawal addresses required to become a validator
    A roll call anyone on the network can audit.
  3. 3

    The signature is the proof

    Whenever a validator signs something with its private key, anyone can check the register, confirm that this signer controls 32 ETH, and treat the signature as the proof of stake itself. Because the stake is locked up, it can be punished: get caught misbehaving and part of your 32 ETH is burned — a process called slashing. Fall below 16 ETH after penalties and you are ejected from the contract altogether, so an attacker gets a handful of attempts, not unlimited ones.

    Staking contract row for Validator 690 highlighted in green beside a Signed by Validator 690 card, showing how one digital signature proves a validator's 32 ETH stake
    One signature, and the stake proves itself.
  4. 4

    Two families of consensus, one chain

    Cryptocurrency consensus comes in two broad families. Longest-chain systems — Bitcoin's model — treat every block added to a branch as a vote for that branch, and the longest chain wins. BFT-style systems instead run rounds of explicit voting and finalize when a supermajority agrees. Ethereum ended up combining both: a tweaked longest-chain rule called LMD GHOST handles day-to-day fork choice, and a BFT overlay called Casper FFG stamps the result as final. The Merge put that hybrid in charge of mainnet.

    Fork choice diagram where a chain of Vote for A blocks beats a lone Vote for B block under the longest chain rule, the winner-takes-all voting model Ethereum moved away from
    In the old model, the longest branch took all.

GHOST: How Validators Outvote the Longest Chain

Four hundred thousand validators cannot each produce a block — so Ethereum invented a much lighter way to vote.

  1. 5

    One validator per slot: a two-month wait

    Under proof of stake, blocks are produced in 12-second slots, and only one validator per slot gets to propose. With roughly 400,000 validators staking, the arithmetic gets ugly: any single validator would wait about eight weeks between proposals, and even collecting votes from just a tenth of them would take around five days. If producing a block were the only way to vote, consensus would crawl — so Ethereum invented a second, far lighter way to vote.

    400,000 blocks and 8 weeks bracket showing how long one proposal per 12-second slot would take before every Ethereum validator got a turn to produce a block
    Block-as-vote could never scale to everyone.
  2. 6

    Attestations: voting without proposing

    That lighter vote is an attestation. Instead of building a block, a validator signs a statement about which block it believes heads the chain — voting without proposing. Attestations carry real weight: when two forks compete, the one with more attesting validators behind it wins, even if it is the shorter branch. And if the designated proposer fails to produce within the first four seconds of a slot, the attesting validators vote for the previous block instead — the chain never idles.

    Two competing forks where Validator 1 and Validator 2 send attestation votes toward Fork B, the mechanism that lets Ethereum validators vote without producing blocks
    Most validators never propose — they vote.
  3. 7

    The heaviest chain wins

    This is LMD GHOST in action: count the attestations on every branch, not just the blocks on the longest one. In the animation, Fork A is longer, but Fork B collects more attestation weight — so B is the heaviest chain, and the one new blocks should extend. Weight beats length. It was this rule, running on the Beacon Chain since December 2020, that let the execution layer be absorbed on merge day without a chain split.

    Fork B marked Heaviest Chain with 4 validator votes against Fork A's 3, the GHOST fork choice rule that counts attestations instead of chain length
    Weight beats length.

Epochs, Committees and the One-Signature Trick

A rota that lets hundreds of thousands speak in order — and the compression trick that fits all their votes into one signature.

  1. 8

    Thirty-two slots make an epoch

    Hearing from hundreds of thousands of validators takes rhythm. Ethereum slices time into slots of 12 seconds and groups 32 of them into an epoch — 6 minutes and 24 seconds, the heartbeat of proof-of-stake consensus. Every epoch the protocol reshuffles: all staked validators are randomly split into committees, one committee on duty per slot. Even the randomness is generated in-protocol: validators' BLS signatures are mixed into an unpredictable seed that no one can game as long as a single participant is honest.

    Timeline of 32 twelve-second slots forming one Ethereum epoch while committee badges assemble, the 6 minute 24 second heartbeat of proof-of-stake consensus
    Every 6 minutes 24 seconds, the deck is reshuffled.
  2. 9

    One committee, one shift

    A committee's shift lasts exactly one slot. Its first member proposes the block; everyone else attests to what they believe is the chain's head. Each validator may cast only one attestation per epoch — sign two conflicting votes and you have equivocated, slashable evidence. The constant reshuffling doubles as a defense: with committees redrawn every epoch, an attacker cannot know in advance which validators they would need to bribe or capture to sway a particular slot.

    Committee 9 roster ellipse listing its validator IDs, the randomly drawn group assigned to propose and attest across one Ethereum time slot each epoch
    Random duty rosters keep bribery blind.
  3. 10

    12,000 votes in, one signature out

    Twelve thousand attestations per block would drown the network in data, so Ethereum aggregates. Committees are divided into 128 subnets of roughly 100 signatures each; within every subnet, 16 randomly chosen aggregators compress their neighbors' votes into a single BLS signature. The block proposer collects the best signature from each of the 128 subnets and folds them together. What lands in the block is one BLS aggregate speaking for more than 12,000 validators.

    Subnet 59 committee with green-highlighted BLS aggregators compressing thousands of validator signatures into one, Ethereum's trick for scaling proof-of-stake votes
    Thousands of votes, one representative.
  4. 11

    Why exactly 32 ETH

    Because every validator is one signature, and signature count is the cost. The video runs the numbers: if the minimum dropped to 23.9 ETH, 120 million staked ETH would mean over 50 million validators and 157,138 signatures per slot; at 3.6 ETH it explodes past a million per slot. Holding the floor at 32 ETH makes every signature weigh the same and keeps the per-slot vote small enough to aggregate on ordinary hardware — decentralization as a design constraint, not a slogan.

    Whiteboard math showing 120 million ETH divided by a 23.9 ETH minimum yielding 50 million validators and 157,138 signatures per slot, why Ethereum kept the 32 ETH staking floor
    Lower the floor, flood the slot.

Rewards, Finality and the World After The Merge

With the miners gone: how validators get paid, when a block becomes irreversible, and what changed on September 15, 2022.

  1. 12

    The income is in the voting, not the proposing

    Validators are paid for showing up — but not equally for every task. The rewards pie tells the story: 84.4% of validator income comes from attestations, 12.5% from proposing blocks and 3.1% from sync duties for light clients. A proposal pays enormously more — the video estimates about 23.6 million Gwei versus 17,631 Gwei per attestation, roughly a thousandfold — but proposals arrive only a few times a year. For a steady return, attesting on time, every epoch, is the job.

    Rewards Breakdown pie chart giving Ethereum validators 84.4 percent of income from attestations, 12.5 percent from block proposals and 3.1 percent from sync committees
    A validator's paycheck is mostly attendance.
  2. 13

    Issuance floats with the stake

    None of these rewards are fixed. Total issuance scales inversely with how much is staked: the table shows 0.17% annual issuance at 1 million ETH staked, 0.54% at 10 million and 0.94% at 30 million — with validator APY of 5.72% at the 10-million mark, and 3.3% to 5.72% at the 13.4 million ETH staked when the video was made. After The Merge, mining rewards vanished entirely, cutting new ETH issuance by roughly 90% — the birth of the 'ultrasound money' era.

    Ethereum staking table highlighting 0.54 percent annual issuance and a 5.72 percent APY at 10 million ETH staked, with a note that 13.4 million ETH staked earns 3.3 to 5.72 percent
    More stake, less new supply.
  3. 14

    Casper: the ghost that stamps 'final'

    GHOST has a limit: it makes reverting the chain progressively unlikely, but it never declares the matter settled. That is the job of Gasper's second half — Casper, the Friendly Finality Gadget. Casper is a BFT-style overlay running on top of GHOST, voting in rounds: one round per epoch. When validators representing two thirds of the staked ETH agree on a checkpoint across consecutive rounds, that checkpoint is finalized — irreversible by economics and by consensus alike.

    Casper the Friendly Finality Gadget ghost mascot, the BFT overlay that lets Ethereum proof-of-stake blocks become irreversible after two thirds of stake agrees
    The ghost that signs off on history.
  4. 15

    Attack the vote, burn your own stake

    The two-thirds threshold invites a tempting attack: an adversary voting for both sides of a fork could push each side past 67%. But double votes are self-incriminating — the same validator's signature appears on conflicting blocks, visible to everyone. Slashing burns the offender's stake, and once penalties eat it below 16 ETH the validator is removed from the contract, so the attack gets a handful of tries, not infinite ones. If finality ever stalls, inactive validators leak stake until two-thirds participation returns.

    Four red validators voting on two conflicting Ethereum blocks that each reach 70 percent of stake, the double-voting attack Casper FFG punishes by slashing
    Double-voting, at the price of the stake itself.
  5. 16

    After The Merge: irreversible every 13 minutes

    The end state is the checkpoint board: Epoch 0 and Epoch 1 stamped Finalised while later epochs wait for their votes to fill. Under proof of work, six confirmations gave probabilistic comfort; since The Merge, finality lands about every two epochs — under 13 minutes — and it is absolute. One trade-off remains: a brand-new node cannot work out from genesis alone which chain is real, so it accepts a recent checkpoint from peers — Ethereum calls this weak subjectivity, its most debated compromise.

    Epoch 0 and Epoch 1 stamped Finalised with blue checkmarks while Epoch 2 stalls at 250,000 of 400,000 signatures, Ethereum's two-epoch path to irreversible blocks
    Probability gave way to certainty.

Frequently Asked Questions

When did Ethereum switch from proof of work to proof of stake?

On September 15, 2022, at 06:42:42 UTC. Ethereum had set a Terminal Total Difficulty of 58,750,000,000,000,000,000,000 in advance; block 15,537,393 carried total difficulty past that line, making it the last proof-of-work block ever mined. The Beacon Chain's validators then produced the first proof-of-stake block, 15,537,394. There was no downtime and no new currency — the same ETH, contracts and balances simply continued under a new consensus engine.

Is Ethereum more environmentally friendly since The Merge?

Dramatically. Ethereum's own estimates put the energy reduction at about 99.95%: mining rigs that once drew electricity on the scale of a mid-sized country were replaced by validators running on ordinary computers, each spending roughly as much power as a home router-scale setup. Studies by the Carbon Ratings Group reached the same order of magnitude, which is why the environmental argument for the switch was one of its strongest drivers.

What happened to GPU miners — and what is Ethereum Classic's role?

Miner revenue went to zero the moment the Merge block landed. Within days, much of the hash rate migrated to Ethereum Classic — the original proof-of-work chain that split off after the 2016 DAO hack — along with other GPU coins like Ravencoin and Ergo, but none paid anything like mining ETH once did, and many cards ended up on the secondhand market. Ethereum Classic remains the proof-of-work sibling: same ancestry, opposite consensus religion.

Do ETH holders need to do anything because of The Merge?

No. ETH stayed ETH: balances, DeFi positions and smart contracts carried over untouched, which was the entire point of the merge design. The only group with homework was stakers — rewards kept accruing, but withdrawals only opened with the Shapella upgrade on April 12, 2023, letting validators finally exit and reclaim their 32 ETH deposits.

Why is it called 'The Merge'?

Because the execution layer — the chain that holds your transactions and accounts — was not replaced but merged into the Beacon Chain, which had been running separately since December 1, 2020. After the merge, the Beacon Chain decides which blocks are canonical while the execution layer keeps executing them; two chains became one, hence The Merge. The name deliberately avoided 'Ethereum 2.0', which suggested a new network that never existed.

Why does Ethereum staking require exactly 32 ETH?

Every validator contributes one signature of equal weight, and signature count is the system's core cost. With a lower floor, the same staked ETH splits into far more validators: the video calculates that a 23.9 ETH minimum would mean 50 million validators and 157,138 signatures per slot. At 32 ETH, roughly 12,000 signatures per slot stay within reach of BLS aggregation across 128 subnets, so consensus runs on ordinary hardware instead of data centers — a deliberate trade for decentralization.

Continue the Story

References

Extended Multimedia Reference

Visual sequences and chronologies in this guide cross-reference video documentation “Ethereum's Proof of Stake consensus explained” by Alt Explainer.

Educational Archive & Risk Disclaimer

This illustrated guide is maintained strictly for educational, research, and historical documentation purposes. None of the materials constitute investment, financial, legal, or trading advice. Historical crisis and market events are documented from public archives. Digital assets involve significant risks.