The Optimism Superchain is one of three major L2 ecosystems compared in the Ethereum L2 guide. The Superchain is a network of L2 chains that share security, communication, and a common bridge through the OP Stack. As of April 2026, the Superchain has expanded from a single chain (OP Mainnet) to a dozen production chains including Base, World Chain, Zora, Mode, and Unichain. Combined Superchain TVL crossed $20.4 billion, per L2BEAT, making it the largest L2 ecosystem by aggregated value.
This guide explains how the OP Stack works, what the Superchain shares versus what each chain controls, and why teams choose to launch as part of the Superchain rather than as a standalone L2. The mental model: OP Stack is the rollup software, the Superchain is the federation of chains running it under a common governance and revenue-sharing agreement.
What Is the OP Stack?
The OP Stack is open-source software for running an Ethereum L2. It is maintained by OP Labs and the broader Optimism Collective. The stack handles transaction sequencing, state execution, batch posting to Ethereum L1, fault proofs, and the L1-to-L2 bridge. Any team can fork and deploy the stack to launch their own chain.
The architecture splits into four major components: op-node (consensus and rollup driver), op-geth (a fork of Ethereum's go-ethereum execution client), op-batcher (the service that posts batched transactions to L1 via EIP-4844 blobs), and op-proposer (the service that submits state roots to L1). Fault proofs activated on OP Mainnet in June 2024 and on Base in October 2024 via Cannon and op-challenger.
The stack is EVM-equivalent. Solidity contracts deploy without modification, and existing Ethereum tooling (Hardhat, Foundry, ethers.js, viem) works against any OP Stack chain through standard JSON-RPC. This is the largest single reason OP Stack chains have grown faster than ZK alternatives — porting cost is near zero.
What Is the Superchain?
The Superchain is a set of OP Stack chains that opt into a common governance contract, share security through the same fault-proof system, and route revenue through the Optimism Collective per the Law of Chains agreement. Joining the Superchain is a deliberate choice — a chain can run OP Stack without being part of the Superchain, but loses access to the shared upgrade authority and revenue pool.
As of April 2026, the Superchain includes:
OP Mainnet — the canonical chain, $5.6B TVL
Base — Coinbase's chain, $11.2B TVL, the largest by activity
World Chain — Tools for Humanity's chain optimized for World ID, $1.8B TVL
Mode — DeFi-focused with sequencer-fee-share for protocols, $420M TVL
Zora — creator economy, NFTs and onchain media, $190M TVL
Unichain — Uniswap Labs' chain optimized for swaps, $880M TVL
Worldcoin (separate from World Chain), Lyra, Lisk, Soneium, Redstone, and several enterprise chains
The Optimism Collective treasury captured roughly $14M in net sequencer revenue across these chains in Q1 2026, distributed via retroactive public goods funding (RPGF) to projects deemed to have created value for the ecosystem.
How Shared Security Works
Every Superchain chain settles to Ethereum L1 with the same fault-proof code. A challenger can dispute any state root by running the OP Stack's Cannon implementation, which executes a single MIPS instruction at a time inside an Ethereum transaction. If the disputed step proves invalid, the challenger wins the bond and the rollup state reverts.
The Superchain's security council holds upgrade authority across all member chains. Composed of representatives from OP Labs, Coinbase, and external members, the council can pause any chain's bridge contracts in an emergency. This is the centralization trade-off: chains gain shared security and faster upgrades, but accept that the council has multisig authority.
The "shared" part of shared security is currently bounded. As of April 2026, fault proofs run independently per chain — a successful fraud proof on Base does not automatically resolve to OP Mainnet. The roadmap calls for interop and shared sequencing in 2026, which would let chains share a single sequencer fee pool and atomically resolve cross-chain transactions. Native interop testnet is live at devnet.optimism.io.
Native Interop and Cross-Chain Messaging
Interop is the unique technical capability the Superchain offers that standalone L2s do not. Once shipped to mainnet, a transaction on Base will be able to atomically include a state change on OP Mainnet — both succeed or both fail. The mechanism uses a shared sequencer that orders cross-chain transactions before posting them to L1.
The technical design uses cross-chain message passing through the L1 bridge plus a sequencer that holds transactions until all destination chains can include them in the same epoch. Espresso Systems and OP Labs have collaborated on the sequencer specification. Interop on testnet supports basic message passing; atomic composability across full DeFi flows ships with the Pectra-aligned upgrade later in 2026.
What this means for builders: a swap on Unichain that pays out on Base, or a treasury operation that moves USDC between OP Mainnet and World Chain, becomes a single transaction with single-block finality. The current cross-chain experience requires routing through Across, Hyperlane, or LayerZero with separate confirmations on each chain.
Notable Superchain Members in Detail
Base is the largest Superchain chain by TVL and activity. Operated by Coinbase since August 2023, Base reached $11.2B TVL by April 2026 with strong consumer-app distribution via Coinbase's wallet. Base's sequencer revenue funds a meaningful share of the Optimism Collective treasury.
World Chain, operated by Tools for Humanity, is the only major chain optimized for verified humans. World ID-verified users get prioritized blockspace and free gas up to a daily quota, funded by sequencer revenue. The chain's TVL is concentrated in the WLD token treasury and a small ecosystem of payment apps.
Unichain, launched by Uniswap Labs in late 2024, focuses on swap UX. The chain optimizes block production to favor low-MEV ordering through a built-in aggregator for swap routing. As of April 2026, Unichain hosts $880M TVL, dominated by Uniswap v4 deployments.
Mode shares 80% of sequencer revenue back to protocols and developers via its Sequencer Fee Share program — a unique inversion of the standard model. Protocol contributions correlate with sequencer payouts. Mode's TVL of $420M concentrates in DeFi protocols that benefit from this model.
Zora targets onchain media and creator economies. The chain hosts NFT marketplaces, Coin-style social tokens, and Farcaster-integrated mini-apps. TVL is $190M but the chain processes high transaction volumes from low-value mints.
Sequencer Fee Sharing
Every Superchain chain commits 2.5% of net sequencer revenue (or 15% of profit, whichever is greater) to the Optimism Collective per the Law of Chains. This pool funds the next round of public goods development through RPGF rounds.
For a chain like Base, with sequencer revenue running $4–8M monthly, the contribution to the collective is roughly $100–200K per month. Smaller chains pay proportionally less. The model funds shared development of the OP Stack itself — fault-proof improvements, sequencer decentralization, interop — without forcing each chain to maintain a separate engineering team.
The OP Stack Block Lifecycle
A transaction on an OP Stack chain follows five distinct states before reaching final settlement on Ethereum L1. Understanding the lifecycle helps explain why finality times and bridge delays look the way they do.
Mempool. A user submits a transaction to op-geth via JSON-RPC. The sequencer receives it and begins assembling a block. Most chains take 100–250ms before the transaction enters a proposed block.
Soft confirmation. The sequencer publishes the new block to its peer-to-peer network. Wallets and dapps see a "soft confirmation" within 2 seconds (Base) or 250ms (Arbitrum-style chains). At this point the transaction is final from the sequencer's perspective but has not yet been posted to L1.
Batch posted to L1. The op-batcher service compresses recent blocks and posts them as EIP-4844 blob data to Ethereum mainnet. This typically happens every 60–120 seconds. Once the L1 transaction is included, the rollup state is provably available — anyone can reconstruct the L2 state from L1 calldata.
State root proposed. The op-proposer submits a Merkle root of the L2 state to the OptimismPortal contract on L1. This starts the 7-day fraud-proof challenge window.
Finalized. After 7 days, if no successful fraud proof has been submitted, the state root finalizes and L2-to-L1 withdrawals against it become claimable. This is why canonical bridge withdrawals take a week. Third-party bridges like Across, Hop, and CCTP front the funds and skip the wait.
How to Launch a Superchain Chain
The OP Stack is open source. Launching a chain involves:
Deploying the L1 contracts (OptimismPortal, L1CrossDomainMessenger, L1StandardBridge) to Ethereum mainnet
Initializing the L2 genesis state with the OP Stack's contracts
Running op-node, op-geth, op-batcher, and op-proposer infrastructure
Optionally joining the Superchain governance contract to opt into shared security
Most teams use Conduit or AltLayer as a rollup-as-a-service provider, which runs the infrastructure and handles upgrades. Conduit operates over half of the active Superchain chains. End-to-end launch cost runs $5–25K/month for infrastructure plus L1 gas for state-root posts and batch submissions.
Differences From Other L2 Stacks
The OP Stack is one of three production-grade L2 software stacks. Its peers are Arbitrum Orbit (the Arbitrum stack for L3s) and ZK Stack from Matter Labs. Comparison points:
Feature | OP Stack | Arbitrum Orbit | ZK Stack |
Proof model | Optimistic (fault proof) | Optimistic (fraud proof) | ZK validity proof |
L1 settlement | Ethereum | Arbitrum One (L3) or Ethereum (L2) | Ethereum |
Withdrawal time | 7 days canonical | 7 days canonical | 1–24 hours |
Shared security | Yes (Superchain) | No (per-chain) | Hyperchain (in dev) |
License | MIT | Business Source | MIT |
Largest production chain | Base ($11.2B) | Arbitrum One ($13.8B) | zkSync Era ($4.1B) |
OP Stack's open-source license has been a meaningful differentiator. Arbitrum Orbit's Business Source License restricts commercial deployment for some use cases. ZK Stack is MIT-licensed but requires running a much heavier prover infrastructure.
Eco's Role Across the Superchain
Eco is a stablecoin execution network with native support for OP Mainnet, Base, World Chain, and other Superchain members. Eco Routes (CLI + API) handles cross-chain stablecoin transfers across the entire Superchain plus Arbitrum, the ZK rollups, and non-EVM chains. Until native interop ships, Eco fills the gap — a single API call moves USDC from World Chain to Base, with the network selecting the cheapest combination of CCTP, Hyperlane, or canonical bridges. Production teams running operations across multiple Superchain members typically integrate Eco rather than wiring up per-chain bridges.
FAQ
Is the Superchain a single blockchain?
No. Each Superchain member is a separate L2 with its own state, sequencer, and TVL. The Superchain is a federation that shares fault-proof code, governance authority, and revenue with the Optimism Collective. Cross-chain operations between members today still require explicit bridging.
Can any chain join the Superchain?
Any OP Stack chain can apply. Joining requires opting into the Law of Chains governance contract, agreeing to revenue sharing with the Optimism Collective (2.5% of net sequencer revenue or 15% of profit), and accepting upgrade authority from the Superchain Security Council.
What is the difference between Optimism and OP Mainnet?
Optimism is the umbrella project — the OP Stack software, the OP token, and the Optimism Collective. OP Mainnet is the specific L2 chain that was the first production deployment of OP Stack and remains the canonical reference chain. Other Superchain members (Base, World Chain, etc.) run the same software but are separate chains.
Does Base pay Optimism for using OP Stack?
Yes. Per the Law of Chains, Base contributes 2.5% of its net sequencer revenue (or 15% of profit) to the Optimism Collective. In Q1 2026, this contribution from Base alone was roughly $1.4M, distributed via RPGF to public goods projects.
When will Superchain interop go live?
Native interop is live on devnet as of April 2026. Mainnet deployment is targeted for the Pectra-aligned upgrade window later in 2026. Until then, cross-chain operations between Superchain members route through third-party bridges or stablecoin orchestration networks.
Is the OP Stack the same code as Base runs?
Yes, with chain-specific configuration. Base, OP Mainnet, World Chain, and other members all run op-node and op-geth from the same upstream repository. Each chain configures its own genesis state, sequencer operator, and L1 contract addresses.
How does the Superchain compare to Polygon CDK?
Polygon CDK chains, alongside the major ZK rollups, use ZK validity proofs and settle to Ethereum via the Polygon AggLayer. Superchain uses optimistic fault proofs and settles directly to Ethereum L1. The Superchain has more production chains and TVL today; Polygon CDK has faster L1 finality. Both are open-source rollup-development kits competing for the next wave of L2 launches.

