What is epoch?
A fixed block of time or blocks that a proof-of-stake network uses as its accounting unit, at whose boundaries it rotates validator duties, applies rewards, and finalizes earlier blocks.
Not yet verifiedHow we verify
3 min read
In this entry
A fixed block of time or blocks that a proof-of-stake network uses as its accounting unit, at whose boundaries it rotates validator duties, applies rewards, and finalizes earlier blocks.
Talking in epochs rather than blocks is how these chains describe finality, validator entry and exit queues, and reward accrual. If a staking dashboard says rewards arrive each epoch, the chain's specification defines how long that is. Activation and exit queues are also measured in epochs, which is why joining or leaving a validator set is not instant.
The confusion is that the word has no universal length. An epoch on one chain is minutes and on another is days, so a sentence like "unstaking takes three epochs" means nothing until you know which chain is speaking.
How it works
A chain divides time into slots, each of which is an opportunity for one chosen validator to propose a block. A fixed number of slots makes an epoch, and the epoch boundary is where the bookkeeping happens.
On Ethereum, an epoch is 32 slots of 12 seconds, which is 6.4 minutes (source: the Ethereum consensus specifications). At each boundary the protocol shuffles which validators are assigned to which committees, tallies the attestations they produced, updates balances, and processes the entry and exit queues. Justification and finalization also work in epochs: a checkpoint becomes final once two consecutive epochs have supported it, which is where the familiar figure of roughly thirteen minutes for Ethereum finality comes from.
Other chains use the same idea with their own constants. Solana's documentation defines an epoch in slots as well, and its staking activation and deactivation take effect at epoch boundaries rather than immediately, which is why a stake delegation there does not start earning at once.
Two practical consequences follow everywhere. Rewards are computed per epoch rather than continuously, so a dashboard that looks frozen between boundaries is working correctly. And anything queue-based, including unbonding periods and the exit queue, is denominated in epochs.
Example
Illustrative arithmetic on Ethereum's constants. Thirty-two slots at twelve seconds each is 384 seconds, or 6.4 minutes. Finality after two epochs is 12.8 minutes. If a chain's unbonding period were quoted as 225 epochs, that is 225 multiplied by 6.4 minutes, which is 1,440 minutes, or one day. Always do this conversion before comparing one chain's waiting period against another's.
Why it matters when you buy
If you stake through an exchange or directly, the epoch length sets how quickly your position starts earning and how long you wait to get out, and neither can be shortened by paying more. Check what a venue actually offers and how it handles the wait at the exchange pages, and read the network's own characteristics at the chain pages.
Related terms
slot — the unit epochs are built from, validator — whose duties rotate at boundaries, finality — measured in epochs, exit queue — rate-limited per epoch, unbonding period — usually quoted in epochs, proof of stake — the design that needs them.
Questions
How long is an epoch?
It depends entirely on the chain. Ethereum's is 6.4 minutes, made of 32 twelve-second slots, per its consensus specifications. Other networks define theirs differently, so read the specific chain's documentation.
Why do staking rewards appear in steps rather than continuously?
Because balances are updated at epoch boundaries. Between boundaries there is nothing new to record, so a dashboard showing an unchanged figure is reflecting the protocol rather than a fault.
Does the epoch affect how fast my deposit credits at an exchange?
Indirectly. Exchanges set deposit crediting from confirmations and finality, and on a proof-of-stake chain finality is defined in epochs. The exchange's own published requirement is what governs.