Proof of stake is a consensus mechanism where validators lock up (stake) cryptocurrency as collateral to earn the right to propose and attest to new blocks. Validators who act honestly earn rewards; those who act maliciously lose part of their stake (slashing). It replaces energy expenditure with economic commitment.

What Is Proof of Stake?

2 min read

The short version

Instead of proving you did expensive work (burning electricity), proof of stake says: "Put your money where your mouth is." Validators deposit coins as a security bond. If they try to cheat, the network confiscates their deposit. It's a system where economic skin-in-the-game replaces physical energy as the security guarantee.

How It Works

In PoS, validators deposit a minimum stake (32 ETH on Ethereum). The protocol randomly selects a validator to propose each new block, weighted by stake size. Other validators attest (vote) that the block is valid. After enough attestations, the block is finalized. Validators earn rewards for correct proposals and attestations. If a validator signs contradictory blocks (equivocation) or goes offline extensively, the protocol slashes their stake, destroying a portion as punishment. This economic penalty makes attacks expensive without requiring energy expenditure. Ethereum's PoS achieves finality in ~12 minutes (2 epochs of 32 slots).

Running an Ethereum validator

You deposit 32 ETH (~$96,000 at $3,000/ETH) into the Beacon Chain deposit contract. Your validator is activated after ~24 hours in the entry queue. Every 12 seconds (each slot), you may be randomly selected to propose a block (rare) or assigned to attest (every epoch, every ~6.4 minutes). Annual rewards average 3-5% APR, earning ~1.3 ETH/year ($3,900). If your node goes offline for 4 hours, you lose approximately 0.0001 ETH in inactivity penalties. If you double-sign a block, you could lose 1+ ETH in slashing penalties.

What People Get Wrong

  • PoS means the rich get richer

    Returns are percentage-based (same % regardless of stake size). The rich don't get a higher rate, they get more absolute rewards because they staked more, same as earning interest on a larger savings account.

  • PoS is less secure than PoW

    Different security model, not weaker. Attacking Ethereum PoS requires controlling ~$30B+ in ETH and losing it when slashed. The cost to attack is comparable to PoW at scale.

  • You need 32 ETH to participate

    That's for solo validation. Staking pools and liquid staking protocols (Lido, Rocket Pool) let you participate with any amount, receiving proportional rewards.

Sources & Further Reading

Questions People Also Ask

When did Ethereum switch to proof of stake?
Ethereum transitioned from PoW to PoS on September 15, 2022 at block 15,537,394 (The Merge). It reduced Ethereum's energy consumption by ~99.95%.
Can proof of stake be 51% attacked?
Theoretically yes, an attacker controlling 2/3 of all staked ETH could finalize malicious blocks. But acquiring that much would cost tens of billions, and the attacker's stake would be slashed.
What is the "nothing at stake" problem?
In naive PoS, validators could vote on multiple chain forks for free (unlike PoW where energy can only be spent once). Modern PoS solves this with slashing conditions that punish equivocation.

More in Blockchain & Consensus

See all →
Was this page helpful?

Page last checked