How Optimistic Rollups Work

Optimistic rollups assume transactions are valid by default and let challengers dispute them afterward. Here's the actual mechanism — sequencers, fraud proofs, the 7-day finality window, and where decentralization still falls short.
Lewis Jackson
CEO and Founder

The word "optimistic" in optimistic rollup sounds like a marketing choice. It's not. It describes a specific assumption the protocol makes: transactions are probably valid, so accept them first and let challengers dispute them afterward.

That single design decision cascades into everything else about how these systems work — why withdrawals take seven days, why fraud proofs exist, and why sequencer decentralization is still an open problem years into deployment. Arbitrum, Optimism, and Base are all built on this model. Between them, they handle the majority of Ethereum transaction volume. Understanding the mechanism means understanding a significant fraction of what's actually happening on Ethereum today.

The Core Mechanism

Start with what a rollup is doing at the most basic level: it's taking transactions off Ethereum's main chain, executing them elsewhere, and posting a compressed record back to Ethereum for verification.

The "optimistic" part is how verification works. Instead of proving each batch of transactions is valid before accepting it, an optimistic rollup accepts the batch by default. A fraud proof window then opens — typically seven days — during which any observer can challenge the state if they believe it's wrong.

Here's the full cycle:

  1. User submits a transaction to the rollup's sequencer — a node that orders and processes transactions off-chain.
  2. The sequencer executes the transaction as part of a batch, computing the new state.
  3. The sequencer posts the raw transaction data to Ethereum L1 — either as calldata (pre-March 2024) or as blobs via EIP-4844 (post-March 2024). The raw data goes to Ethereum, not just the result.
  4. The sequencer commits a new state root to the rollup contract on L1. The state root is a cryptographic fingerprint of the updated chain state.
  5. A seven-day challenge window opens. During this window, any verifier node can re-execute the same transaction batch, compare results, and submit a fraud proof if the sequencer's state root is wrong.
  6. If a valid fraud proof is submitted, the fraudulent state is reverted and the sequencer is slashed.
  7. If no valid fraud proof is submitted by the end of the window, the state is finalized.

The reason Ethereum needs to store the raw transaction data is so that verifiers can actually reconstruct the state independently. If only the state root were posted, there'd be no way to check it. Ethereum L1 functions as the data availability layer — the ground truth that makes fraud proofs possible.

How Fraud Proofs Actually Work

Arbitrum and Optimism have taken different approaches here, and the distinction matters.

Arbitrum uses interactive fraud proofs (also called multi-round fault proofs). When a verifier disputes a state, the system runs a bisection protocol: it progressively narrows the dispute down to a single instruction, then executes just that instruction on Ethereum L1 to determine who's right. L1 only needs to verify one step, keeping costs manageable.

Optimism's OP Stack introduced Cannon fault proofs, which reached mainnet on OP Mainnet in June 2024. Cannon also uses an interactive multi-step approach, running a MIPS instruction emulator on-chain to settle disputes. Before Cannon, OP Mainnet didn't have live fault proofs — the security council could simply override incorrect states.

Both systems now have permissionless fault proofs live, though security councils retain override capabilities as a safety valve during this transition period.

The Seven-Day Problem

The fraud proof window creates a real UX problem: native withdrawals from L2 to Ethereum L1 take seven days. The protocol can't safely shorten this without reducing the time available for verifiers to catch fraud.

In practice, most users don't wait. Fast bridge protocols — Across, Stargate, Hop, and others — front the capital on L1 immediately, charging a small fee, and then recover their funds after the seven-day finality. Bridge liquidity providers are taking on finality risk for a fee. It's a market solution to a protocol constraint.

The constraint is genuine. Any "optimistic" rollup that shortened the challenge window to a few hours would need to ensure verifiers could always monitor, detect fraud, and submit a proof within that window — which creates different assumptions about liveness and infrastructure.

Where Constraints Live

Seven-day finality: A hard constraint. Can't be meaningfully shortened without changing the security model.

Sequencer centralization: All three major optimistic rollups (Arbitrum, Optimism, Base) currently operate with a single sequencer run by the core team. This is the most significant centralization vector. A single sequencer can censor transactions — though both Arbitrum and Optimism have force-inclusion mechanisms that let users bypass the sequencer by posting directly to L1. Decentralized sequencing is on roadmaps but hasn't shipped on mainnet.

Security council trust: Both Arbitrum's Security Council (a 9-of-12 multi-sig) and Optimism's Security Council retain the ability to upgrade smart contracts and override fraud proofs in some configurations. L2Beat tracks this through a "Stage" framework: Stage 0 (centralized), Stage 1 (fraud proofs live with security council backup), Stage 2 (fully permissionless). Most major optimistic rollups are at Stage 1 as of early 2026.

Data availability costs: Post-EIP-4844, rollups post data as blobs rather than calldata. Blobs are cheaper and expire after roughly 18 days, but blob space is still finite. High L2 activity can still push up data posting costs.

What's Changing

The main active developments are around decentralization maturity.

Arbitrum is working on BoLD (Bounded Liquidity Delay), a protocol design that allows anyone to participate in fraud proof validation without being griefed by an attacker submitting repeated invalid claims. This addresses a problem where adversarial challenge spam could delay finality under current designs.

The OP Stack Superchain model is worth watching separately. Base, OP Mainnet, Zora, and a growing list of chains share the same OP Stack codebase. The vision is native interoperability across these chains without bridges — whether this works at scale is an open question, but it's the architecture that makes shared sequencing designs possible.

ZK proof cost reduction is the longer-term pressure. As proving costs fall, ZK rollups remove the seven-day window entirely by proving validity upfront. Whether optimistic rollups remain dominant depends partly on how fast ZK proving becomes cheap enough that the challenge window becomes a real competitive disadvantage.

Confirmation Signals

  • Arbitrum and OP Stack rollups reaching Stage 2 on L2Beat's framework without security incidents
  • BoLD and decentralized sequencing shipping on mainnet
  • Blob space scaling without persistent congestion as L2 volume grows
  • Fraud proof systems operating over extended periods without requiring security council intervention

Invalidation

  • A successful exploit of the fraud proof system itself — not a fraudulent state, but a bug in the fraud proof contracts that allows invalid states to finalize
  • Sequencer censorship persisting beyond force-inclusion timeout windows
  • ZK proving costs collapsing to near-zero within a timeframe that makes the seven-day window untenable for the use cases optimistic rollups currently serve

Timing Perspective

Now: The mechanism is operational and handling real volume. Arbitrum and Base consistently exceed Ethereum L1 in daily transaction count. The seven-day withdrawal delay is the practical constraint to understand.

Next (2025–2027): Sequencer decentralization and Stage 2 maturity are the active development fronts. BoLD and OP Stack shared sequencing designs are the technical bets worth monitoring.

Later: Whether optimistic rollups hold their dominance against ZK rollups as proving costs fall is a structural question without a clear answer. The two approaches have different trust assumptions, different finality characteristics, and increasingly different use case fits.

Boundary Statement

This covers the mechanism. It doesn't evaluate whether any specific optimistic rollup is safe to use, how to assess bridge security, or whether current trust assumptions are appropriate for a given application. Those judgments depend on context and risk tolerance.

Security councils exist because the fraud proof systems were considered insufficiently battle-tested to operate without human override capacity. That's a reasonable engineering decision. It also means these systems are not fully trustless yet — worth understanding before drawing conclusions about what these networks do and don't guarantee.

The static explanation lives here. The tracked signals — Stage ratings, sequencer decentralization milestones, blob utilization — live elsewhere.

Related Posts

See All
Crypto Research
New XRP-Focused Research Defining the “Velocity Threshold” for Global Settlement and Liquidity
A lot of people looking at my recent research have asked the same question: “Surely Ripple already understands all of this. So what does that mean for XRP?” That question is completely valid — and it turns out it’s the right question to ask. This research breaks down why XRP is unlikely to be the internal settlement asset of CBDC shared ledgers or unified bank platforms, and why that doesn’t mean XRP is irrelevant. Instead, it explains where XRP realistically fits in the system banks are actually building: at the seams, where different rulebooks, platforms, and networks still need to connect. Using liquidity math, system design, and real-world settlement mechanics, this piece explains: why most value settles inside venues, not through bridges why XRP’s role is narrower but more precise than most narratives suggest how velocity (refresh interval) determines whether XRP creates scarcity or just throughput and why Ripple’s strategy makes more sense once you stop assuming XRP must be “the core of everything” This isn’t a bullish or bearish take — it’s a structural one. If you want to understand XRP beyond hype and price targets, this is the question you need to grapple with.
Read Now
Crypto Research
The Jackson Liquidity Framework - Announcement
Lewis Jackson Ventures announces the release of the Jackson Liquidity Framework — the first quantitative, regulator-aligned model for liquidity sizing in AMM-based settlement systems, CBDC corridors, and tokenised financial infrastructures. Developed using advanced stochastic simulations and grounded in Basel III and PFMI principles, the framework provides a missing methodology for determining how much liquidity prefunded AMM pools actually require under real-world flow conditions.
Read Now
Crypto Research
Banks, Stablecoins, and Tokenized Assets
In Episode 011 of The Macro, crypto analyst Lewis Jackson unpacks a pivotal week in global finance — one marked by record growth in tokenized assets, expanding stablecoin adoption across emerging markets, and major institutions deepening their blockchain commitments. This research brief summarises Jackson’s key findings, from tokenized deposits to institutional RWA chains and AI-driven compliance, and explains how these developments signal a maturing, multi-rail settlement architecture spanning Ethereum, XRPL, stablecoin networks, and new interoperability layers.Taken together, this episode marks a structural shift toward programmable finance, instant settlement, and tokenized real-world assets at global scale.
Read Now

Related Posts

See All
No items found.
Lewsletter

Weekly notes on what I’m seeing

A personal letter I send straight to your inbox —reflections on crypto, wealth, time and life.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.