Proof of Stake (PoS)

Proof-of-Stake (PoS) is a consensus mechanism where validators are chosen to create new blocks based on the amount of cryptocurrency they hold and are willing to stake.

Proof-of-Stake (PoS) is a family of consensus mechanisms used by blockchain networks to achieve distributed agreement on the state of the ledger. Unlike Proof-of-Work (PoW), which relies on computational power, PoS relies on the economic stake held by network participants, known as validators. Validators lock up a certain amount of the network's native cryptocurrency (their 'stake') as collateral. In return for staking, they are given the opportunity to validate transactions, propose new blocks, and participate in the consensus process.

The core mechanic involves selecting validators to create new blocks. This selection process is typically randomized but weighted based on the size of the validator's stake; those with larger stakes generally have a higher probability of being chosen. Once selected, a validator proposes a new block of transactions. Other validators then attest to the validity of this proposed block. If the block receives sufficient attestations (meeting a predefined threshold), it is added to the blockchain.

Validators are incentivized through transaction fees and potentially newly minted coins. Crucially, PoS mechanisms incorporate "slashing" penalties. If a validator acts maliciously (e.g., by attempting to double-spend or validating fraudulent blocks), a portion or all of their staked collateral is forfeited. This economic disincentive is the primary security feature, making attacks prohibitively expensive.

Trade-offs compared to PoW include significantly lower energy consumption, as it eliminates the need for intensive computation. However, PoS introduces different challenges, such as the "nothing-at-stake" problem (where validators might be incentivized to validate multiple conflicting chains without penalty in some older designs) and concerns about wealth centralization, as those with more stake potentially gain more influence. Various PoS implementations (e.g., Delegated PoS, Liquid PoS) aim to mitigate these issues.

        graph LR
  Center["Proof of Stake (PoS)"]:::main
  Pre_logic["logic"]:::pre --> Center
  click Pre_logic "/terms/logic"
  Rel_consensus_mechanism["consensus-mechanism"]:::related -.-> Center
  click Rel_consensus_mechanism "/terms/consensus-mechanism"
  Rel_consensus_mechanisms["consensus-mechanisms"]:::related -.-> Center
  click Rel_consensus_mechanisms "/terms/consensus-mechanisms"
  Rel_mining["mining"]:::related -.-> Center
  click Rel_mining "/terms/mining"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 Explain Like I'm 5

💰 It's like a 'Security Deposit' system for a shared map. To be allowed to update the map, you have to lock up some of your own coins in a safe. If you follow the rules, you earn more coins as a tip. If you try to cheat, the system takes away your deposit (this is called 'slashing'). No huge computers or electricity wasted—just math and [collateral](/en/terms/collateral).

🤓 Expert Deep Dive

Proof-of-Stake (PoS) is a type of consensus mechanism used by many blockchains to achieve distributed consensus. Instead of relying on computational power like Proof-of-Work (PoW), PoS selects validators based on the number of tokens they hold and are willing to 'stake' or lock up.

PoS was created as an alternative to PoW to address its energy consumption concerns and to improve scalability. Early implementations of PoS started appearing in the early 2010s, with more widespread adoption in the following years. Ethereum's transition to PoS, known as The Merge, in September 2022, was a major milestone.

Validators in a PoS system are chosen to create new blocks and validate transactions. The more tokens a validator stakes, the higher their chances of being selected. Validators earn rewards for successfully validating blocks. PoS systems are designed to be more energy-efficient and scalable than PoW systems, making them attractive for various blockchain applications.

Technical details include the use of slashing, where validators can lose their staked tokens for malicious behavior; the implementation of different staking models (e.g., delegated PoS); and the use of various cryptographic techniques to ensure the security and integrity of the blockchain.

🔗 Related Terms

Prerequisites:

📚 Sources