L2 Gas Tracker
Updated 2026-09-20

What Is an Optimistic Rollup?

Short answer

An optimistic rollup is a Layer 2 that executes transactions on its own fast network, then posts compressed batches of the results to Ethereum, assuming they are valid unless someone submits a fraud proof during a challenge window — about 7 days. Base, Arbitrum, and Optimism all work this way. The design gives L2s Ethereum-level security with sub-cent fees; the trade-off is the delay (and 7-day official withdrawal) that the challenge window requires. ZK rollups use cryptographic proofs instead and avoid that wait.

The mechanism in four steps

Your transaction runs on the L2's own execution environment. The sequencer bundles many transactions and compresses the batch. That compressed batch is posted to Ethereum as data. For roughly a week, anyone can challenge the batch with a fraud proof; if none succeeds, the batch is considered final, and exits can be claimed on L1. That is the whole machine — execution off-chain, settlement and security on-chain.

The economics follow directly: the cost of writing one compressed batch to Ethereum gets split across hundreds of transactions, and since the EIP-4844 blob market opened a dedicated cheap data lane, that cost collapsed — the mechanism is in the blob pricing guide. This is why a swap that costs a few dollars on mainnet costs a few thousandths of a cent on Base.

Optimistic vs ZK rollups

Optimistic (Base, Arbitrum, OP)ZK (zkSync, Linea, Scroll, etc.)
ValidityAssumed unless fraud-provenProven with cryptographic validity proof
Official withdrawal~7-day challenge windowMinutes to hours (proof generation)
Maturity in 2026Most activity and TVL sits hereGrowing; proofs cheaper than early years

Both families settle on Ethereum and both carry sub-cent fees; the difference is mostly in the exit delay and proof machinery. The network-of-rollups vision built on top of the optimistic family is the Superchain answer.

Related questions