๐Ÿ”ฎ Optimistic Rollups: Assume Valid, Challenge Later

Learn how Arbitrum and Optimism use fraud proofs for scaling

Compare the two dominant rollup approaches

๐Ÿ”ฎ Optimistic Rollups Deep Dive

Optimistic rollups assume all transactions are valid by defaultโ€”hence "optimistic." This trust-but-verify approach enables fast execution with a safety net: fraud proofs.

โš™๏ธ How It Works

1

Batch Transactions

Sequencer collects L2 transactions and bundles them into batches (typically every few minutes).

2

Post to L1

Batch data and new state root posted to Ethereum mainnet as calldata (cheap storage).

3

Challenge Period

7-day window where anyone can challenge invalid state transitions with fraud proofs.

4

Finalization

If no valid challenges appear within 7 days, state is considered final and withdrawals are enabled.

๐ŸŽฎ Interactive Fraud Proof Simulator

Watch how the fraud proof mechanism protects optimistic rollups from invalid transactions.

โœ…

1. Normal Operation

Sequencer posts transaction batch to L1

Batch #1234: 5,000 transactions posted to Ethereum mainnet. All transactions assumed valid by default.

๐Ÿ›ก๏ธ Security Model

โœ“ Advantages

  • โ€ขFast execution: Transactions confirm in seconds, not minutes
  • โ€ขEVM compatible: Easy to port existing Ethereum dApps
  • โ€ขLower costs: No expensive proof generation required
  • โ€ขSimpler: Less complex cryptography than ZK rollups

โš ๏ธ Trade-offs

  • โ€ข7-day withdrawals: Must wait for challenge period to end
  • โ€ขWatcher dependency: Relies on honest validators monitoring
  • โ€ขHigher data costs: Must post full transaction data to L1
  • โ€ขReactive security: Problems fixed after they occur

๐ŸŒ Real-World Implementations

Arbitrum

Largest optimistic rollup by TVL ($2B+)

โ€ข Multi-round fraud proofs
โ€ข AnyTrust for data availability
โ€ข Nitro tech stack

Optimism

Founded by Ethereum Foundation alumni

โ€ข OP Stack framework
โ€ข Single-round fraud proofs
โ€ข Strong EVM equivalence

Base

Coinbase's L2, built on OP Stack

โ€ข OP Stack powered
โ€ข CEX integration
โ€ข Growing ecosystem