Pomegra Wiki

Validator

A validator is a participant in a proof-of-stake blockchain who locks cryptocurrency as collateral and participates in consensus by proposing and attesting to blocks. Validators are selected to propose blocks (often randomly or weighted by stake), earn rewards for honest participation, and lose collateral (are “slashed”) if they misbehave.

This entry covers validators in proof-of-stake systems. For miners in proof-of-work systems, see mining Bitcoin; for staking mechanisms, see staking.

Role in consensus

A validator’s role is to:

  1. Propose blocks. Periodically, a validator is selected to propose the next block in the chain.
  2. Attest to blocks. Validators vote on the validity of blocks proposed by other validators.
  3. Follow rules. Validators must follow the protocol rules (e.g., only vote for one chain at a time, include valid transactions).

Selection and randomisation

Validators are selected to propose blocks using various mechanisms:

  • Ethereum: Uses a pseudo-random selection weighted by stake. A validator with 2% of staked ETH is roughly 2% likely to be selected to propose a block.
  • Cardano: Uses verifiable random function (VRF) to select validators.
  • Delegated proof-of-stake: Token holders vote for a small number of delegates who become validators.

Randomisation prevents validators from knowing in advance when they will be selected, reducing opportunities for coordination or attacks.

Staking and collateral

To become a validator on Ethereum, you must lock 32 ETH in a contract. This collateral:

  • Gives you “skin in the game” — if you attack the network, you lose your own money.
  • Makes attacks expensive — attacking requires controlling enough validators’ collateral to offset gains.
  • Serves as a bond that can be seized if you misbehave.

On other networks, minimum stake requirements vary (Cardano has no minimum; Polkadot has a lower minimum).

Rewards

Validators earn rewards for honest participation:

  • Block proposal rewards. When a validator proposes a block, they earn a small reward (newly minted coins or transaction fees).
  • Attestation rewards. When a validator votes to attest a block, they earn a small reward (proportional to how quickly they vote).

On Ethereum, annual staking yield is typically 3–6%, depending on total amount staked (more staking = lower yield for each validator).

Slashing and penalties

If a validator misbehaves (e.g., proposes two conflicting blocks or votes for two different chains), they are slashed:

  • Minor slashing. Losing a small percentage of stake (e.g., 1% if you fail to participate when selected).
  • Major slashing. Losing significant stake (e.g., 50% if you double-sign, greatly threatening network security).

Slashing is automatic and enforced by the protocol. A validator’s collateral is cryptographically seized if they misbehave.

Hardware requirements

Unlike ASIC miners (which cost millions for large operations), validators require only standard computers:

  • A modern laptop or desktop computer.
  • Stable internet connection.
  • 32 ETH stake (on Ethereum).

This lower barrier to entry means validators can be more geographically distributed and diverse than miners, theoretically improving decentralisation.

Operator centralisation risk

Despite lower hardware requirements, validator operations have concentrated in:

  • Large institutional validators. Crypto exchanges (like Kraken, Lido) run validators on behalf of customers.
  • Liquid staking services. Services like Lido run validators and distribute rewards to token holders.

This centralisation creates risk: if a large validator operator is compromised or misbehaves, a significant portion of the network is affected.

Ethereum and other networks have tried to mitigate this by limiting rewards if a single entity controls too much stake and encouraging validator diversity.

Active validators

Ethereum (as of 2024) has roughly 1 million active validators, with ~16 million ETH staked. This is a large and distributed validator set, improving decentralisation relative to proof-of-work mining (which is concentrated in pools).

Cardano has ~3,000 active validators. Polkadot has ~300.

Comparison with miners

AspectMinerValidator
HardwareSpecialised (ASIC)Standard computer
Cost of entryHigh (ASIC + electricity)Medium (stake)
Ongoing costHigh (electricity)Low (internet)
Penalty for misbehaviourNone (can’t misbehave in PoW)Slashing (lose stake)
DecentralisationLower (concentrated in pools)Higher (more distributed)
Environmental costHigh (energy)Negligible

Validators are generally more accessible than miners, though decentralisation is still threatened by institutional operators.

Running a validator

To run a validator on Ethereum:

  1. Deposit 32 ETH into the staking contract.
  2. Run validator software (Prysm, Lighthouse, etc.) on a computer.
  3. Connect to the network and participate in consensus.
  4. Earn ~4–6% annual yield on your staked ETH.

Withdrawals are possible and relatively quick (~few days), though operators must initiate them.

See also

Wider context