Slot

General Updated Jul 2026

What is a Slot?

In Ethereum’s Proof of Stake system, a slot is a fixed 12-second time interval. One validator is randomly selected as the proposer for each slot and can propose one block during that slot. If the proposer doesn’t produce a block (offline, technical issue), the slot is empty (a “skip”).

Slots are the basic time unit of Ethereum’s consensus layer. There are 32 slots in one epoch (32 × 12 = 384 seconds = 6.4 minutes).

How Slots Work

  1. Each slot lasts exactly 12 seconds
  2. One validator is randomly chosen as the block proposer for that slot
  3. A committee of validators (attesters) votes on the proposed block
  4. If the proposer is online and functioning, a block is produced
  5. If the proposer is offline, the slot is skipped (no block)

Slots and Blocks

Not every slot produces a block. A slot can be:

  • Filled: The proposer successfully produced a block → one new block on the chain
  • Skipped: The proposer was offline or didn’t produce in time → no block for this slot

On a healthy network, the vast majority of slots (>99%) are filled. High skip rates indicate network issues or mass validator downtime.

Slots, Epochs, and Finality

  • 1 slot = 12 seconds
  • 1 epoch = 32 slots = 6.4 minutes
  • Finality = 2 epochs = ~12.8 minutes

After 2 epochs without issues, blocks are considered finalized — they cannot be reverted without destroying 1/3 of all staked ETH.

Frequently Asked Questions

Q: Why 12 seconds per slot? A: 12 seconds gives validators enough time to propagate blocks and attestations globally. It’s a balance between speed (shorter = more throughput) and network reliability (longer = more time for message propagation). Other chains use different intervals (Solana: 400ms, Cosmos: 6s).

Q: What happens if my validator is selected as a proposer? A: If you’re staking solo, your validator client automatically produces and broadcasts the block. You earn the block reward plus transaction fees (and MEV tips). If your validator is offline when selected, you miss the reward and may receive a small penalty.

Q: How many validators are there? A: As of 2026, Ethereum has 1,000,000+ active validators. Each validator has an equal chance of being selected as a proposer, so on average each validator proposes a block once every few weeks.