Skip to main content

What Is Optimism? The Ethereum L2 and OP Mainnet Explained

Optimism (OP Mainnet) is an Ethereum L2 using optimistic rollups. Sub-cent gas fees, USDC native support via CCTP, and the Superchain powering Base, Mode, and more.

Written by Eco

The Optimism blockchain is an Ethereum Layer 2 network that uses optimistic rollup technology to execute transactions faster and cheaper than Ethereum mainnet while anchoring final settlement to Ethereum's security. OP Mainnet batches transactions offchain, compresses them, and posts the data to Ethereum roughly every few minutes. Gas fees typically run below $0.01 per transaction. As of late April 2026, OP Mainnet holds $356 million in total value locked, per L2Beat, and anchors the Superchain, a shared framework that also powers Base, Mode, Zora, and over two dozen other L2 networks.

What Is OP Mainnet?

OP Mainnet is the production Optimism blockchain, live since January 2021. It uses optimistic rollup architecture: a sequencer executes transactions, posts compressed batches to Ethereum, and a 7-day challenge window allows fault proofs before state finalizes. EVM equivalence means any Ethereum contract deploys without changes. Gas fees run below $0.01 per transaction.

The chain's name shifted from "Optimism" to "OP Mainnet" in late 2023 as the Optimism Foundation codified the distinction between the network and the broader OP Stack framework. Both names remain in common use; "Optimism" often refers to the chain, while the Foundation reserves "OP Mainnet" for the specific production deployment.

EVM equivalence is a core design choice. OP Mainnet targets opcode-level compatibility with Ethereum, not just ABI compatibility. Hardhat, Foundry, ethers.js, and viem work without configuration changes. Uniswap, Aave, Synthetix, Velodrome, and hundreds of other protocols have deployed directly from their Ethereum contracts with no modifications. That compatibility made OP Mainnet one of the fastest L2s to build a DeFi ecosystem after launch.

Coinbase used the same OP Stack codebase to build Base, which launched in 2023. Base now holds $4.3 billion in TVL per DeFiLlama (April 2026) and has surpassed OP Mainnet as the largest single OP Stack chain by locked value. The two chains share infrastructure standards, proving the OP Stack's production viability beyond the Optimism Foundation's own deployment.

How Does the Optimism Blockchain Work?

Optimism works by running a sequencer that batches transactions, compresses them, and posts the data to Ethereum as EIP-4844 blobs. The sequencer assumes each batch is valid and submits a state root. Any node can challenge an incorrect root within 7 days by submitting a fault proof. If unchallenged, the root finalizes and Ethereum withdrawals unlock.

The full transaction lifecycle has four stages:

  • Submission and pre-confirmation. A user sends a transaction to the sequencer's RPC. The sequencer provides a near-instant soft confirmation within 2 seconds, before anything touches Ethereum.

  • Batch compression and blob posting. Every few minutes, the sequencer compresses accumulated transactions using Brotli encoding and posts them to Ethereum as EIP-4844 blobs. Blobs cost far less than calldata: the March 2024 Dencun upgrade reduced OP Mainnet's L1 data fees by roughly 10x by introducing blob storage that expires after ~18 days rather than living in Ethereum's permanent state.

  • State root submission. Alongside each batch, the sequencer posts a state root to the L2OutputOracle contract on Ethereum. This root summarizes the complete OP Mainnet state after executing the batch.

  • 7-day challenge window. The fault proof period follows. Any observer running a full OP Mainnet node can verify the state root against the transaction data and submit a challenge to the DisputeGameFactory contract if the root is wrong. Valid challenges revert the state root; the sequencer faces penalties. Unchallenged roots finalize after 7 days, unlocking withdrawals to Ethereum mainnet.

Fault proofs became permissionless on OP Mainnet on June 10, 2024, according to the Optimism fault proof documentation. Before that, only a permissioned set of actors could submit challenges. The permissionless upgrade was a major step toward decentralization; L2Beat tracks the current decentralization stage rating at its OP Mainnet project page. For a broader explanation of the optimistic vs ZK proof tradeoff, see what is a rollup: optimistic vs ZK rollups, and for a deeper look at how fault proofs resolve disputes, see what are fault proofs in blockchain.

The 7-day window is the most user-visible limitation of the optimistic model. Native bridge withdrawals from OP Mainnet back to Ethereum take a full week. Third-party liquidity providers like Across Protocol solve this by fronting funds to users immediately, absorbing the wait period in exchange for a small fee. For stablecoin transfers specifically, cross-chain intent protocols handle route selection and settlement behind the scenes without exposing users to the delay at all.

What Is the OP Stack and Superchain?

The OP Stack is an open-source, modular L2 framework covering execution, data availability, derivation, and settlement. Any team can fork it to deploy their own rollup and join the Superchain, a network of OP Stack chains sharing bridge contracts, security standards, and revenue agreements. Base, Mode, Zora, Fraxtal, and Unichain are Superchain members as of Q1 2026.

The OP Stack documentation describes the framework as a set of composable modules: the execution engine (currently the same EVM execution client used by Ethereum), the derivation pipeline (which reconstructs L2 state from L1 data), the settlement layer (Ethereum), and the governance layer (the Optimism Collective). Each module has a defined interface, allowing teams to swap components. For example, Worldcoin's World Chain uses custom fee settings for its identity-verified users, while Unichain uses OP Stack infrastructure with modifications aimed at DeFi liquidity concentration.

Superchain members contribute a share of sequencer revenue to the Optimism Protocol Fund. The fund flows into the Optimism Collective treasury, which distributes grants through Retroactive Public Goods Funding (RPGF). Base joined this model at launch and committed a percentage of its sequencer fees, which are substantial given Base's $4.3 billion in TVL and high daily transaction volume. This revenue-sharing structure is how the Optimism Foundation funds ongoing OP Stack development without relying solely on OP Mainnet's own sequencer income.

The long-term Superchain roadmap includes native interoperability: atomic cross-chain messages between OP Stack chains without bridge contracts. The Optimism Interop Layer is the protocol under development for this, targeting atomic cross-chain calls between Superchain members in a single transaction. For a full breakdown of OP Stack components and how they compare to other L2 frameworks, see what is an OP Stack.

How Does Optimism Compare to Arbitrum?

Optimism and Arbitrum are both optimistic rollups with 7-day withdrawal windows, but differ in proof systems and ecosystem strategy. Arbitrum One uses multi-round interactive fraud proofs (BOLD); OP Mainnet uses single-round fault proofs (Cannon). Arbitrum One holds $1.7B in TVL per DeFiLlama (April 2026) versus OP Mainnet's $356M, though the Superchain collectively outweighs Arbitrum.

The table below compares OP Mainnet, Arbitrum One, Base, and zkSync Era across seven dimensions. TVL figures are from DeFiLlama as of April 29, 2026; gas estimates are representative ranges based on typical DeFi operations. For current TVL and stage ratings, verify at L2Beat.

Dimension

OP Mainnet

Arbitrum One

Base

zkSync Era

Proof system

Optimistic (Cannon, single-round fault proofs)

Optimistic (BOLD, multi-round interactive fraud proofs)

Optimistic (Cannon via OP Stack)

ZK (SNARK validity proofs)

Withdrawal delay

7 days (native bridge)

7 days (native bridge)

7 days (native bridge)

~24 hours (proof generation)

EVM compatibility

EVM-equivalent

EVM-equivalent (Nitro)

EVM-equivalent (OP Stack)

EVM-compatible (some opcode gaps)

TVL (Apr 2026)

$356M (DeFiLlama)

$1.7B (DeFiLlama)

$4.3B (DeFiLlama)

See L2Beat for current figures

Ecosystem framework

OP Stack / Superchain

Arbitrum Orbit

OP Stack / Superchain

ZK Stack (Matter Labs)

Native USDC (CCTP)

Yes (Circle CCTP)

Yes (Circle CCTP)

Yes (Circle CCTP)

Yes (Circle CCTP)

Gas cost (typical swap)

$0.01–$0.05

$0.05–$0.30

$0.01–$0.05

$0.01–$0.10

The deeper technical distinction between the two proof systems comes down to how a dispute is resolved. Arbitrum's BOLD runs a bisection game: challenger and defender narrow their disagreement to a single execution step, which Ethereum then adjudicates. This minimizes L1 gas consumption during disputes. OP Mainnet's Cannon system resolves each dispute in a single round, which is simpler to audit and reason about but can be more gas-intensive in contested edge cases.

Arbitrum's TVL advantage on its own chain reflects deeper DeFi liquidity: Uniswap V3, GMX, Aave, Radiant, and Pendle all have large pools on Arbitrum One with years of liquidity accumulation. OP Mainnet competes with a platform strategy rather than direct liquidity depth: the OP Stack is now deployed by more teams than any other L2 framework, and Optimism captures value through sequencer revenue sharing across the entire Superchain. For a full breakdown of Arbitrum's architecture, see what is Arbitrum.

How Does USDC Work on Optimism?

USDC on OP Mainnet exists in two forms: native USDC, issued by Circle and transferable via CCTP without the 7-day bridge window, and bridged USDC.e, a wrapped token backed by USDC locked in the Optimism bridge on Ethereum. Native USDC is the canonical form and carries no bridge counterparty risk. USDC.e predates the Circle-native deployment.

Circle launched CCTP on OP Mainnet in 2023, making it one of the earliest L2 networks with native USDC issuance. When a user moves USDC from Ethereum to OP Mainnet via CCTP, the protocol burns USDC on the source chain, Circle's Iris attestation service signs the burn event, and fresh USDC is minted on OP Mainnet. The result is a Circle-issued token, not an IOU against locked collateral. For the full CCTP technical specification and supported chain list, see the Circle CCTP documentation.

CCTP V2, released by Circle in 2025, added a fast-finality mode that completes cross-chain USDC transfers in under 20 seconds on supported chains. OP Mainnet supports CCTP V2. For payment applications that need stablecoin finality measured in seconds rather than minutes, CCTP V2 on OP Mainnet removes the primary latency obstacle. Current USDC supply on OP Mainnet fluctuates with DeFi activity; for current figures, see the Circle transparency report.

The split between native USDC and USDC.e matters for DeFi integrations. Liquidity pools built before the native deployment hold USDC.e; more recent pools use native USDC. Developers adding OP Mainnet USDC support should confirm which contract address their protocol is using. Mixing the two can create slippage in pools that price only one version, since the two tokens are not always treated as interchangeable by every DEX router.

OP Token and Governance

OP is the governance token of the Optimism Collective, which runs a bicameral structure: the Token House (OP holders vote on protocol upgrades and spending) and the Citizens' House (badgeholders vote on retroactive grants). RetroPGF has distributed over 60 million OP tokens across five rounds since 2022, funding open-source infrastructure across the Superchain.

The Token House votes onchain on proposals affecting protocol parameters, OP token allocations, and governance rule changes. Voting weight scales with token holdings, with delegate voting available for holders who want representation without direct participation. The Citizens' House is distinct: membership is granted by badge, not by token balance, and is intended to represent long-term ecosystem contributors rather than pure capital holders.

RPGF is Optimism's mechanism for funding public goods after the fact. The design premise is that it is easier to reward work that has already proven valuable than to predict which projects will succeed before they launch. Projects apply retroactively; the Citizens' House votes on how much OP each deserves. RPGF Round 3, completed in early 2024, distributed 30 million OP tokens across 501 projects per the Optimism governance documentation. Round 4 followed in late 2024. The 2025 evolution moved toward rolling evaluation cycles rather than annual fixed rounds.

OP token supply, vesting schedules, and treasury allocations are published in the Optimism governance allocations documentation. The token does not carry direct cashflow rights against sequencer revenue. Governance voting rights and RPGF eligibility are the primary utilities, alongside the signaling weight that comes from being a named ecosystem stakeholder.

Stablecoin Payments on Optimism

OP Mainnet combines sub-cent gas fees, native USDC via CCTP, and EVM equivalence, making it practical for stablecoin payment applications. A USDC transfer costs under $0.01 versus $1-5 on Ethereum mainnet. That cost structure makes micropayments and high-frequency settlement viable at scale. The March 2024 Dencun upgrade cut L1 data fees roughly 10x, further lowering the floor.

Three payment use cases have grown on OP Mainnet and the broader Superchain:

  • Cross-chain stablecoin routing. Protocols that move USDC between Optimism and other chains use CCTP or third-party liquidity networks. Eco supports OP Mainnet as a source and destination chain within its intent-based routing network, letting applications request stablecoin transfers that settle atomically without bridge limbo. Eco is one of 15 supported chains in Eco's routing network, alongside Base, Arbitrum, Ethereum, Solana, and others.

  • Treasury automation. DAOs and protocols with stablecoin positions across multiple chains use automated rebalancing strategies. OP Mainnet's low fees make it a common intermediate chain for cross-chain treasury operations. For a comparison of platforms that handle this, see best stablecoin automation platforms 2026.

  • Onchain payroll and streaming. Sablier and Superfluid, both deployed on OP Mainnet, enable continuous USDC streams for contributor compensation. Sub-cent gas fees make per-second streaming economically practical at small payment amounts, where Ethereum mainnet fees would consume a meaningful fraction of each payment.

The EIP-4844 upgrade in March 2024 was the single largest gas reduction event in OP Mainnet's history. Before Dencun, batch data posted to Ethereum as permanent calldata, with fees priced accordingly. After Dencun, it posts as blobs that expire after ~18 days, costing far less per byte. The result was a roughly 10x reduction in the L1 data component of OP Mainnet fees. Payment flows that were borderline viable at calldata prices became clearly viable at blob prices. Networks choosing between Superchain members for payment infrastructure often weigh OP Mainnet's DeFi liquidity depth against Base's higher overall transaction volume. For rollup-by-rollup data on how each network handles native USDC, the Circle CCTP chain list is the most current reference.

FAQ

What is the difference between Optimism and OP Mainnet?

Optimism refers to the broader project: the Optimism Foundation, the OP Stack open-source framework, and the Optimism Collective governance organization. OP Mainnet is the specific production blockchain they operate. The distinction matters because Base, Mode, Zora, and others all run on the OP Stack but are not OP Mainnet. OP Mainnet is one chain; Optimism is the platform and organization behind it.

Why does withdrawing from Optimism to Ethereum take 7 days?

The 7-day delay is the fault proof challenge window. After the sequencer posts a state root to Ethereum, any observer has 7 days to submit a fault proof if the root contains an error. Ethereum cannot release bridged assets until this window expires and the root finalizes. Third-party intent bridges bypass this by fronting liquidity immediately; CCTP-based USDC transfers sidestep it entirely. See what are fault proofs for how the dispute mechanism works.

What are current Optimism gas fees?

OP Mainnet gas fees dropped roughly 10x after the EIP-4844 Dencun upgrade in March 2024. Standard USDC transfers typically cost under $0.01. DeFi swaps and complex contract interactions run $0.01-$0.05 depending on calldata size. Fees have two components: an L2 execution fee and an L1 blob data fee. Both fluctuate with network demand. For real-time estimates, see L2Fees.info or Optimism's own fee documentation at docs.optimism.io.

Is Optimism USDC the same as USDC.e?

No. Native USDC on OP Mainnet is issued directly by Circle via CCTP and redeemable 1:1 at Circle. USDC.e is a wrapped token backed by USDC locked in the Optimism bridge contract on Ethereum. It is not issued by Circle and carries bridge contract risk. Native USDC is the recommended form for new integrations. Both typically trade at parity, but developers should verify which contract address their protocol is using before deployment.

What chains are part of the Superchain?

As of Q1 2026, more than 30 chains run on the OP Stack and participate in the Superchain, including Base (Coinbase), Mode, Zora, Fraxtal, World Chain (Worldcoin), Unichain (Uniswap), Soneium (Sony), Ink, and BOB. Each operates independently with its own sequencer and fee structure but shares the OP Stack codebase, Optimism Collective governance agreements, and eventual Superchain interoperability. The full registry is maintained at the Optimism Superchain networks documentation.

Related reading

Sources and methodology. TVL figures sourced from DeFiLlama on April 29, 2026. OP Mainnet technical specifications verified against docs.optimism.io. L2 comparison data cross-referenced with L2Beat. CCTP specifications from Circle CCTP documentation. RetroPGF distribution figures from Optimism Foundation governance disclosures. Gas estimates are representative ranges based on observed network conditions; actual fees vary by transaction type and blob market demand. Verify TVL and stage ratings at L2Beat and DeFiLlama before making deployment or integration decisions.

Did this answer your question?