What is a validator?
A validator is a node that stakes capital to propose and attest to blocks in a proof-of-stake network, earning rewards and risking slashing.
A validator is the proof-of-stake equivalent of a miner. It is a node that runs the consensus protocol, proposes and attests to blocks, and collectively with other validators decides what the canonical chain looks like. In exchange for this work, validators earn rewards. In exchange for misbehavior, they get slashed — losing part or all of their stake. The whole system is designed so that the cost of attacking the network exceeds the potential gain.
Ethereum's validator role
On Ethereum, a validator is defined by a deposit of exactly 32 ETH into the staking contract. This activates a validator record on the beacon chain, the consensus layer that coordinates the network. From then on, the validator is expected to be online and to do two kinds of work.
First, attestation. Every 12-second slot, a random committee of validators attests to what they see as the current head of the chain. Each validator's attestation says "I see block X at slot N." These attestations accumulate into the consensus mechanism that finalizes the chain. Attesting correctly pays a small reward; missing an attestation or attesting to the wrong block costs a small penalty.
Second, proposal. Validators are randomly selected — once every few weeks, on average — to propose a block. Proposing a block pays a larger reward, including transaction fees and MEV (through MEV-boost and the builder market). Missing a proposal costs the opportunity but is not slashed.
A validator that performs its duties earns roughly 3 to 4 percent annualized on the 32 ETH, though the rate declines as the total amount of ETH staked grows.
Slashing
Slashing is the mechanism that makes validators trustworthy. Two behaviors cause slashing: proposing two different blocks for the same slot (equivocation) and signing conflicting attestations. Both indicate that a validator is trying to double-spend or fork the chain.
A slashed validator loses a portion of its stake and is ejected from the validator set. The slash penalty starts small — around one ETH — and grows if many validators are slashed together, which is how the protocol discourages coordinated attacks. In the most severe scenarios, a validator can lose its entire 32 ETH.
The deterrence works. Across the millions of validators that have operated since Ethereum's beacon chain launched in December 2020, slashing incidents are rare, and most have been accidents — operators running duplicate signing keys across two machines, or botched failover setups.
Running a validator
Operating a solo validator requires three things: the 32 ETH, a machine running the consensus and execution clients, and enough operational attention to keep uptime high. The hardware requirements are modest — a reasonable laptop-class machine with a fast SSD and a reliable internet connection — but the uptime standard is real. Offline validators do not earn rewards and accrue small penalties.
The reward math has a breakeven. Solo staking captures the full yield but costs in hardware, electricity, attention, and operational risk (your own slashing risk from misconfiguration). Many validators delegate operation to staking services, which take a fee in exchange.
Staking pools and liquid staking
Because 32 ETH is a meaningful barrier, most staked ETH is pooled. Lido, Rocket Pool, Coinbase, Binance, and Kraken together run millions of validators on behalf of users. Each contributes less than 32 ETH, and the pool aggregates deposits into full validators.
Lido is the largest, operating about 30 percent of all Ethereum validators. Users deposit ETH and receive stETH — a liquid staking token that tracks the staked balance plus accrued rewards (see the liquid staking token explainer). Rocket Pool is a more decentralized alternative where node operators run the validators and users deposit through a permissionless contract. Coinbase and Kraken operate custodial staking services.
The concentration of staking in large pools is a live concern in Ethereum governance. If one pool exceeds roughly 33 percent of the validator set, it could disrupt finality. Discussions about caps, fee structures, and decentralization of pool operators are ongoing.
Validators on other chains
The pattern varies. Cosmos chains typically have small validator sets (often 100 to 200) elected by delegated stake. Solana has several thousand validators, each running substantial hardware. Avalanche uses a different sampling-based consensus. Some chains (BNB Chain, in its earlier design) had very small validator sets controlled largely by the project's foundation — which is fast but not meaningfully decentralized.
Every design trades decentralization, performance, and capital requirements differently. "Number of validators" is only a rough proxy for decentralization; what matters is how independent they are.
Why it matters
Validators are the economic skeleton of proof-of-stake networks. They are the set of economically aligned actors whose combined stake, combined software diversity, and combined geographic distribution determine whether the chain is secure against coordinated attack and whether it can recover from software bugs.
For Ethereum, the push is toward a larger and more diverse validator set: solo stakers, small pools, and geographically distributed infrastructure. Every time a major pool or cloud provider crosses a concerning threshold, the community debates the risk. Understanding what a validator does — and what happens when too many are run by the same operator — is central to evaluating the long-term credibility of any proof-of-stake network.
More explainers
What is Bitcoin?
The original cryptocurrency: a peer-to-peer cash system secured by proof-of-work and a capped supply of 21 million coins.
What is Ethereum?
A programmable blockchain that executes smart contracts and powers most of DeFi, NFTs, and the rollup ecosystem.
What is DeFi?
Decentralized finance rebuilds lending, trading, and stablecoins as open-source smart contracts — no bank, no paperwork, no intermediary.