Skip to main content

The Ethereum Merge: Transition from PoW to PoS

On September 15, 2022, at block 15,537,393, Ethereum executed one of the most ambitious technical upgrades in the history of software engineering. The Merge transitioned Ethereum's consensus mechanism from proof of work (PoW) to proof of stake (PoS), eliminating mining entirely and replacing it with a staking-based validation system. This guide covers what happened, why it mattered, how proof of stake works on Ethereum, and the impact on the ecosystem over three years later.

What Was The Merge?

The Merge was the joining of two separate Ethereum chains:

  1. The Execution Layer (formerly "Eth1"): The original Ethereum mainnet running proof of work since July 2015, containing all transaction history, smart contracts, and state.

  2. The Consensus Layer (formerly "Eth2" or the Beacon Chain): A proof-of-stake chain launched on December 1, 2020, running in parallel with mainnet. It managed validators and the PoS consensus protocol but did not process transactions.

On September 15, 2022, these two layers merged. The execution layer adopted the Beacon Chain's proof-of-stake consensus, and mining ceased immediately. It was the equivalent of changing the engine of an airplane while it was still flying — with hundreds of billions of dollars in value at stake and zero downtime.

Timeline

DateEvent
Dec 1, 2020Beacon Chain launched (PoS consensus running in parallel)
Jun 2022Ropsten testnet merge
Jul 2022Sepolia testnet merge
Aug 2022Goerli testnet merge
Sep 6, 2022Bellatrix upgrade (Beacon Chain prepared for Merge)
Sep 15, 2022The Merge — Terminal Total Difficulty reached, PoS activated

What Changed

AspectBefore (PoW)After (PoS)
Block producersMinersValidators
Block time~13 seconds (variable)12 seconds (fixed)
Energy consumption~112 TWh/year~0.01 TWh/year
New ETH issuance~13,000 ETH/day~1,700 ETH/day
Hardware requirementGPUs/ASICsConsumer hardware + 32 ETH
FinalityProbabilisticDeterministic (~13 minutes)

What Did NOT Change

It is equally important to understand what The Merge did not change:

  • Gas fees: The Merge did not reduce transaction fees (that is the role of Layer 2s and EIP-4844)
  • Transaction speed: Block times decreased slightly but the fundamental throughput remained the same
  • History: All transaction history and smart contract state was preserved
  • User experience: From an end-user perspective, Ethereum functioned identically before and after
  • Smart contracts: All existing contracts continued to work without modification

Why Proof of Stake?

Energy Efficiency

The most immediately visible benefit was the 99.95% reduction in energy consumption. Under proof of work, Ethereum consumed approximately as much electricity as the Netherlands. Under proof of stake, a validator can run on a consumer laptop or a Raspberry Pi.

This change was significant not just environmentally but also narratively. ESG-focused institutions that had avoided Ethereum due to energy concerns could now participate. The environmental argument against Ethereum was effectively eliminated.

Economic Security

Under proof of work, security is provided by the ongoing expenditure of electricity and hardware. Under proof of stake, security is provided by the at-risk capital — validators lock up ETH that can be destroyed (slashed) if they misbehave.

Key differences in the security model:

FactorProof of WorkProof of Stake
Cost of attackAcquiring 51% of hash powerAcquiring 33% of staked ETH
Attack consequenceEquipment can be reusedStaked ETH is destroyed
RecoveryMust out-hash the attackerSocial coordination can fork away
Ongoing costPerpetual electricityOne-time capital lockup

An important advantage of PoS is that an attacker's capital is at risk and can be destroyed. With PoW, a 51% attacker keeps their mining hardware even after the attack. With PoS, a malicious validator's stake is slashed — they lose their investment.

Reduced Issuance

PoW required high issuance (approximately 13,000 ETH/day) to compensate miners for electricity and hardware costs. PoS requires far less issuance (approximately 1,700 ETH/day) because validators' costs are minimal — they just need a computer and internet connection.

Combined with EIP-1559's fee burning mechanism, this reduced issuance has made ETH net deflationary during periods of normal-to-high network activity. More ETH is burned in transaction fees than is created as staking rewards.

How Proof of Stake Works on Ethereum

Validators

Anyone can become a validator by depositing 32 ETH into the staking contract. Validators run two pieces of software:

  1. Execution client: Processes transactions and manages state (e.g., Geth, Nethermind, Besu, Erigon)
  2. Consensus client: Handles proof-of-stake logic (e.g., Prysm, Lighthouse, Teku, Nimbus, Lodestar)

Running both clients is called running a full validator node. The Ethereum community actively encourages client diversity — using different client implementations to prevent bugs in one client from affecting the entire network.

Slots, Epochs, and Finality

Ethereum's PoS divides time into discrete units:

  • Slot: A 12-second window during which one validator proposes a block
  • Epoch: 32 slots (6.4 minutes)
  • Finality: After two epochs (~13 minutes), a block is considered finalized — it cannot be reverted without slashing at least one-third of all staked ETH

For each slot:

  1. A validator is randomly selected to propose a block
  2. A committee of validators is assigned to attest (vote) on the block's validity
  3. Attestations are aggregated and included in subsequent blocks

Rewards

Validators earn rewards for:

ActivityDescription
Proposing blocksSelected ~once per 2 months per validator
AttestingVoting on block validity each epoch
Sync committeesHelping light clients verify the chain
WhistleblowingReporting slashable offenses by other validators

The annual staking yield varies based on the total amount of ETH staked. As of 2026, with tens of millions of ETH staked, the yield is approximately 3-4% APR. This yield is lower than the early post-Merge period (when fewer validators existed) and represents a maturation of the staking market.

Slashing

Slashing is the mechanism that punishes misbehaving validators by destroying a portion of their staked ETH. Slashable offenses include:

  • Double voting: Attesting to two different blocks for the same slot
  • Surround voting: Making an attestation that contradicts a previous one
  • Double proposing: Proposing two different blocks for the same slot

Slashing penalties escalate:

  1. Initial penalty: 1/32 of the validator's stake (1 ETH minimum for a 32 ETH validator)
  2. Correlation penalty: If many validators are slashed around the same time, the penalty increases proportionally — up to the entire stake if one-third or more of validators are slashed simultaneously
  3. Forced exit: Slashed validators are ejected from the validator set

The correlation penalty is a brilliant design choice: honest mistakes by individual validators incur minor penalties, but coordinated attacks (which would affect many validators simultaneously) result in catastrophic losses for the attackers.

Inactivity Leak

If a validator goes offline (fails to attest), they incur a mild penalty roughly equivalent to the rewards they would have earned. However, if the network fails to finalize (more than one-third of validators offline), the inactivity leak activates, progressively draining offline validators' stakes until the remaining online validators hold two-thirds and can finalize again.

This ensures that the network can recover from catastrophic scenarios — even if a large portion of validators disappears, the protocol gradually redistributes their stake to active participants.

Staking in Practice

Solo Staking

The most decentralized and sovereign option:

  • Requirements: 32 ETH, a computer with 8+ GB RAM, 2+ TB SSD, stable internet
  • Advantages: Maximum rewards (no fees), contributes to decentralization, full control
  • Challenges: Technical setup, maintenance responsibility, 32 ETH capital requirement
  • Withdrawal: Validators can exit and withdraw their stake (enabled since the Shanghai/Capella upgrade in April 2023)

Liquid Staking

Liquid staking protocols (Lido, Rocket Pool, Coinbase cbETH) accept ETH deposits and stake on behalf of users, issuing a liquid derivative token in return:

  • Lido (stETH): The largest liquid staking protocol. Users deposit ETH and receive stETH, which accrues staking rewards automatically. stETH can be used in DeFi while the underlying ETH is staked.
  • Rocket Pool (rETH): A more decentralized alternative with permissionless node operators. Users receive rETH, which appreciates in value against ETH as staking rewards accumulate.
  • Coinbase (cbETH): A centralized liquid staking token. Simple and regulated but involves custodial risk.

Liquid staking has become the dominant staking method, with Lido alone accounting for a significant portion of all staked ETH. This concentration has raised decentralization concerns, spurring the development of distributed validator technology (DVT) and self-limiting mechanisms.

Distributed Validator Technology (DVT)

DVT (pioneered by Obol Network and SSV Network) allows a single validator to be run by multiple independent operators. Instead of one machine holding the validator's key, the key is split across several nodes using threshold cryptography. This improves:

  • Resilience: No single point of failure
  • Security: No single operator holds the full key
  • Decentralization: Validators can be geographically and operationally distributed

By 2026, DVT has gained significant adoption, particularly among institutional stakers and liquid staking protocols seeking to improve their decentralization profiles.

Impact on ETH Economics

Supply Dynamics

The Merge fundamentally changed ETH's monetary policy:

Pre-Merge (PoW):

  • Issuance: ~13,000 ETH/day to miners
  • Burning: ~6,000-10,000 ETH/day (EIP-1559, active since August 2021)
  • Net effect: Inflationary (net issuance of ~3,000-7,000 ETH/day)

Post-Merge (PoS):

  • Issuance: ~1,700 ETH/day to validators
  • Burning: ~2,000-4,000+ ETH/day (EIP-1559, varies with demand)
  • Net effect: Often deflationary (more burned than issued)

Since The Merge, the total supply of ETH has generally decreased, making it one of the few major assets with a reducing supply.

"Ultrasound Money" Thesis

The combination of EIP-1559 burning and reduced PoS issuance led to the "ultrasound money" narrative — the idea that ETH is not just sound money (like Bitcoin, with predictable issuance) but ultrasound money (with potentially decreasing supply). During periods of high network activity, ETH's supply shrinks, creating a positive feedback loop between network usage and asset value.

Staking as a "Risk-Free Rate"

ETH staking yields have become the de facto "risk-free rate" of the Ethereum ecosystem. Just as US Treasury yields serve as the baseline for traditional finance, ETH staking yields (approximately 3-4% APR in 2026) serve as the baseline against which DeFi yields are compared. Any DeFi yield below the staking rate is effectively unattractive, as users can earn more by simply staking their ETH.

Challenges and Criticisms

Centralization of Validators

By 2026, a significant concentration of staked ETH sits with a few large liquid staking providers (particularly Lido) and centralized exchanges. This raises concerns about:

  • Censorship: Could large staking providers be compelled to censor certain transactions?
  • Governance capture: Could concentrated validators influence protocol decisions?
  • Systemic risk: What if a major staking provider suffers a bug or exploit?

The Ethereum community has actively addressed these concerns through:

  • Client diversity campaigns
  • DVT adoption
  • Proposals for staking caps (e.g., Lido's self-limiting discussions)
  • Research into enshrined proposer-builder separation (ePBS)

MEV (Maximal Extractable Value)

Validators can extract value by reordering transactions within their proposed blocks. This MEV extraction creates an uneven playing field and can harm users through sandwich attacks, frontrunning, and other tactics.

MEV-Boost and the Flashbots ecosystem have emerged as mitigation mechanisms, separating block building (MEV extraction) from block proposing (validators). By 2026, most blocks are produced through MEV-Boost, distributing MEV more equitably but also creating a semi-centralized block building market.

Validator Exits and Queues

The Shanghai/Capella upgrade (April 2023) enabled validator withdrawals for the first time. Validators can now exit and retrieve their staked ETH, but entry and exit queues limit the rate of staking and unstaking to maintain network stability. During periods of high demand, the entry queue can stretch to weeks.

Post-Merge Upgrades

Shanghai/Capella (April 2023)

Enabled staking withdrawals, completing the staking lifecycle. Validators could finally withdraw their rewards and principal, which had been locked since the Beacon Chain launched in December 2020.

Dencun/EIP-4844 (March 2024)

Introduced blob transactions for Layer 2 data availability. While not directly related to The Merge, this upgrade was a critical step in Ethereum's post-Merge roadmap, reducing L2 costs by 10-100x and making the rollup-centric scaling vision practical.

Future: Pectra and Beyond

Ethereum continues to evolve with upgrades focused on:

  • Proposer-Builder Separation (PBS): Formalizing the separation of block building and proposing
  • Single-Slot Finality (SSF): Reducing finality time from ~13 minutes to a single 12-second slot
  • Verkle Trees: Enabling stateless clients and reducing node storage requirements
  • Max Effective Balance changes: Allowing validators to stake more than 32 ETH per validator
SafeSeed Tool

Whether you are staking ETH solo or using a liquid staking provider, your seed phrase protects your validator keys and staked assets. Generate a secure BIP-39 seed phrase with the SafeSeed Seed Phrase Generator and back it up on durable material. For staking amounts of 32+ ETH, consider a metal seed backup solution for maximum protection.

FAQ

What was The Merge?

The Merge was Ethereum's transition from proof of work (PoW) to proof of stake (PoS) on September 15, 2022. It combined Ethereum's existing execution layer (transaction processing) with the Beacon Chain (PoS consensus), eliminating mining and replacing it with staking.

Did The Merge reduce gas fees?

No. The Merge changed how blocks are produced (staking instead of mining) but did not increase throughput or reduce fees. Fee reduction comes from Layer 2 solutions (Arbitrum, Optimism, Base) and data availability improvements like EIP-4844.

How much energy does Ethereum save after The Merge?

Ethereum's energy consumption dropped by approximately 99.95% — from roughly 112 TWh/year (comparable to the Netherlands) to about 0.01 TWh/year (comparable to a few thousand households). This was one of the largest single decarbonization events in the tech industry.

Can I still mine Ethereum?

No. Ethereum mining ended permanently when The Merge occurred. Former Ethereum miners either switched to mining other PoW cryptocurrencies (like Ethereum Classic), sold their hardware, or repurposed GPUs for AI/ML workloads.

How much ETH do I need to stake?

Solo staking requires exactly 32 ETH per validator. However, liquid staking services (Lido, Rocket Pool) and exchange staking (Coinbase, Kraken) allow you to stake any amount — even fractional ETH.

What is slashing?

Slashing is the penalty imposed on validators who provably misbehave (e.g., signing contradictory blocks). A slashed validator loses a portion of their staked ETH and is forcibly exited from the validator set. Slashing is rare under normal operations and primarily designed to punish deliberate attacks.

Is Ethereum deflationary after The Merge?

Conditionally, yes. When network activity is high enough that EIP-1559 burns more ETH than is issued to validators, the total supply decreases. During low-activity periods, issuance exceeds burning and the supply increases slightly. Since The Merge, the overall trend has been mildly deflationary.

Was The Merge successful?

By virtually all measures, yes. The transition occurred without downtime, no funds were lost, the network continued operating seamlessly, and all predicted benefits (energy reduction, reduced issuance, deterministic finality) were realized. It stands as one of the most successful live infrastructure upgrades in computing history.