How optimistic rollups work
The “optimistic” in the name refers to the default assumption: batches are valid unless someone proves otherwise. The mechanism:
- Sequencer posts a batch of transactions + resulting state root to L1.
- A 7-day challenge window opens.
- During the window, anyone can submit a fraud proof re-executing a specific disputed transaction and showing the sequencer’s result was wrong.
- If no valid fraud proof is submitted, the state root is accepted as final.
- If a fraud proof succeeds, the disputed batch is rolled back.
Withdrawals from L2 to L1 inherit the challenge window — you can deposit into an L2 in minutes, but withdrawing back to L1 takes ~7 days. Most users bridge out via third-party liquidity bridges (Across, Stargate, Hop) that front the withdrawal for a small fee.
Major optimistic rollups
- Arbitrum — the largest optimistic rollup by TVL; uses its own fork of Geth (“Nitro”) and has permissionless fraud proving live as of 2024.
- Optimism — founded the modular “OP Stack” that other rollups (Base, Blast, Zora, Mantle) fork from.
- Base — Coinbase-built, OP Stack-based, fastest-growing L2 by user activity in 2024-2025.
- Blast — OP Stack fork that auto-yields on deposited ETH and stables. Faster user growth, more centralized trust model.
All four are EVM-equivalent at the bytecode level — most Solidity contracts deploy unchanged from Ethereum.
Why optimistic dominates today
- Earlier to production — Arbitrum and Optimism mainnet launched in 2021; ZK rollups lagged by 1-2 years.
- EVM equivalence — optimistic rollups achieved full EVM equivalence sooner, meaning existing Ethereum contracts deploy without modification.
- Simpler architecture — no proof generation overhead; sequencer just runs the transactions and posts the result.
- Lower per-transaction cost — the L1 verification is cheap; proof generation is N/A.
Risks and considerations
- Fraud-proof maturity — many optimistic rollups operated for years with “trusted proposer” setups where only a whitelisted address could challenge. Permissionless fraud proving is newer (Arbitrum: March 2024) and not yet battle-tested.
- 7-day withdrawal window — real inconvenience for users; real liquidity opportunity for bridge operators who front withdrawals.
- Sequencer MEV — centralized sequencer can extract MEV. Some rollups are implementing MEV-sharing (Optimism’s sequencer revenue goes to the ecosystem); others are not.
- Security council override — most optimistic rollups have a multisig or council that can pause the chain or roll back state in emergency. A compromise of that council is a catastrophic tail risk.
For users, optimistic rollups today offer: cheap fees, mature tooling, strong DeFi presence. The 7-day withdrawal window and centralized sequencer are the main remaining friction. L2Beat’s Stage rating (0/1/2) is the best quick read on how decentralized a specific rollup actually is.