What Is OP Stack: Complete Optimism L2 Framework Guide (2026)

— By Tony Rabbit in Tutorials

What Is OP Stack: Complete Optimism L2 Framework Guide (2026)

What is OP Stack? Complete 2026 guide: Optimism L2 framework powering Base, World Chain, Unichain, Soneium; Superchain vision, fault proofs, op-node + op-batcher, OP token + RetroPGF.

If you have used Base, swapped on Unichain, claimed a Worldcoin airdrop, or paid for anything on Soneium, you have already interacted with the OP Stack without realizing it. The OP Stack is the open source software framework that powers a growing constellation of Layer 2 networks known as the Superchain, and in 2026 it has quietly become the most widely deployed rollup framework in all of crypto.

Built by the Optimism Collective, the OP Stack started as the codebase running OP Mainnet and has evolved into a modular, MIT-licensed toolkit that anyone can fork to launch their own production-grade Layer 2. The thesis is simple but radical: instead of every chain reinventing the rollup wheel in isolation, builders should share the same core infrastructure, the same security assumptions, and eventually the same sequencer, while still keeping sovereignty over their execution environment and tokenomics. This is the Superchain vision, and as of 2026 it includes Base, World Chain, Unichain, Soneium, Mode, Zora, Mantle, Lisk, Cyber, and more than a dozen other production chains.

This guide breaks down exactly what the OP Stack is, how its layered architecture works, what each component does (op-node, op-geth, op-batcher, op-proposer, op-challenger), where fault proofs stand in 2026, how the shared sequencer roadmap looks, and how the OP Stack stacks up against Arbitrum Orbit, ZK Stack, and Polygon CDK. By the end you will understand not just what powers Base, but where the Superchain is heading next.

OP Stack architecture diagram showing the Optimism layered rollup framework with execution settlement data availability and consensus layers
The OP Stack is the modular framework that powers the Superchain.

What Is OP Stack: The Open Source L2 Framework

The OP Stack is a standardized, modular, open source development stack maintained by the Optimism Collective. It is the codebase that runs OP Mainnet, the original Optimism Layer 2, but more importantly it is the toolkit that any team can fork to deploy their own optimistic rollup. Think of it as the Linux of Layer 2s. Anyone can take it, modify it, and ship a chain, but the chains that opt into the Superchain governance and shared security inherit network effects that solo rollups can never match.

Technically, the OP Stack is a collection of Go and Solidity components that together implement an optimistic rollup. Transactions are executed off chain on a Layer 2 sequencer, batched together, compressed, and posted to Ethereum Layer 1 as calldata or, since EIP-4844 went live, as blob data. Ethereum then acts as the settlement and data availability layer, while the OP Stack chain handles execution at much higher throughput and lower cost. If anyone disputes a state root, fault proofs allow Ethereum to enforce the correct outcome.

What makes the OP Stack different from a one-off rollup codebase is its explicit modularity. Each layer of the stack is designed to be swappable. You can run a chain with Ethereum as the data availability layer, or swap in Celestia, EigenDA, or Avail. You can run with the default EVM-equivalent execution environment, or fork op-geth to add custom precompiles. The Optimism Collective ships a reference implementation that handles all of these layers, but the boundaries between them are clean enough that builders can mix and match.

The Architecture Stack: Four Layers Explained

Most articles treat the OP Stack as a black box, but understanding it requires breaking it down into the four logical layers it occupies. Each layer answers a different question about how the rollup operates, and each is independently upgradeable.

LAYER 1Application Layer

Smart contracts, dapps, wallets. Where users actually interact. Uniswap, Aerodrome, World App, Sony's Soneium dapps all live here.

LAYER 2Execution Layer (op-geth)

EVM-equivalent execution environment. A minimally modified fork of Geth that processes transactions and builds blocks. This is where state transitions actually happen.

LAYER 3Settlement Layer (Ethereum L1)

Ethereum mainnet. Holds the canonical state roots, executes fault proofs in dispute games, and ultimately settles withdrawals to L1.

LAYER 4Data Availability (Ethereum blobs / alt-DA)

EIP-4844 blob space on Ethereum by default. Optionally Celestia, EigenDA, or Avail for cheaper alt-DA configurations (so-called "validiums" or "optimiums").

LAYER 5Consensus / Sequencing (op-node)

Currently a single sequencer per chain. Roadmap targets a shared sequencer across the Superchain for atomic cross-chain composability.

This layered model is what makes the OP Stack a "modular" framework rather than a monolithic rollup. Each layer is replaceable. World Chain, for example, uses the standard execution and settlement layers but adds custom precompiles for World ID verification. Mantle famously uses EigenDA instead of Ethereum blobs for cheaper data availability. The application layer is, of course, completely up to whoever deploys the chain.

Core Components: op-node, op-geth, op-batcher, op-proposer, op-challenger

Under the hood, every OP Stack chain runs the same five core Go services. Together they implement the full lifecycle of a transaction, from user submission, to L2 execution, to L1 settlement, to dispute resolution if needed. Understanding what each one does is the difference between a hand-wavy understanding of rollups and actually knowing what is happening.

CONSENSUS CLIENT
op-node

Derives the L2 chain from L1 data. Tells op-geth what blocks to build by reading deposits and batches from Ethereum. Equivalent to a consensus client in proof of stake Ethereum.

EXECUTION CLIENT
op-geth

A minimally modified fork of go-ethereum. Executes EVM transactions and maintains state. Communicates with op-node via the standard Ethereum Engine API.

BATCH SUBMITTER
op-batcher

Takes the L2 transactions produced by the sequencer, compresses them, and posts them to Ethereum L1 as EIP-4844 blobs. This is what makes the L2 inherit L1 data availability.

STATE PROPOSER
op-proposer

Periodically posts the L2 state root to a contract on Ethereum L1. This is the official "this is what L2 state looks like" claim that fault proofs can challenge.

DISPUTE GAME
op-challenger

Watches state proposals on L1 and challenges invalid ones via the fault proof dispute game. If op-proposer ever lies, op-challenger proves it.

L1 CONTRACTS
OptimismPortal & co.

A set of Solidity contracts on Ethereum: bridge, state oracle, dispute game factory, and system config. These give the L2 its trust-minimized anchor on L1.

The flow looks like this. A user submits a transaction to the L2 sequencer. op-node orders it into a block and asks op-geth to execute it. The transaction is now included on L2. Every few minutes, op-batcher compresses thousands of these L2 transactions and dumps them onto Ethereum as a blob. op-proposer separately posts the resulting state root on L1. If a malicious sequencer ever proposed a wrong state root, op-challenger would open a dispute game, and Ethereum L1 would adjudicate by re-executing the disputed instruction.

For developers, the elegance here is that op-geth is a near-identical fork of mainline Geth. The same patterns, the same JSON-RPC endpoints, the same debugging tools. If you can run an Ethereum node, you can run an OP Stack node.

Fault Proofs Status in 2026: Live for OP Mainnet and Base

For years the biggest open question hanging over optimistic rollups was: do fault proofs actually work in production? Until 2024, OP Stack chains had what was politely called "Stage 0" trust assumptions, meaning withdrawals relied on a centralized multisig that could in theory rug users. That has now changed. As of 2026, fault proofs are live in production on OP Mainnet, Base, and several other Superchain members, and the broader rollout is well underway.

The fault proof system that the OP Stack uses is called the Cannon dispute game. It works by reducing any disputed L2 state transition down to a single MIPS instruction, which Ethereum L1 can then execute deterministically to determine who is right. This bisection game can take up to seven days, which is why standard withdrawals from OP Stack chains have a seven-day challenge period. If you want out faster, you can use a third-party fast bridge, but the trust-minimized path takes a week.

Permissionless fault proofs were activated on OP Mainnet in mid-2024 and on Base in March 2025, moving both chains officially to L2Beat's "Stage 1" classification. Multiple proposers and multiple challengers now operate in parallel, with anyone able to spin up an op-challenger instance. The goal for 2026-2027 is to remove the security council escape hatch entirely and reach full "Stage 2" decentralization, where the contracts on L1 cannot be upgraded except via on-chain governance with a long delay.

This matters because it removes one of the longest-standing critiques of optimistic rollups, namely that they were "training wheels" rollups masquerading as L2s. With permissionless proofs live, OP Stack chains finally inherit Ethereum security in a meaningfully trust-minimized way. The seven-day withdrawal delay is the cost of that security model, and it is the same cost you pay on any optimistic rollup, including Arbitrum.

The Superchain Vision: Why Shared Infrastructure Wins

The Superchain is the Optimism Collective's bet that the future of L2s is not 100 isolated rollups but a federation of chains that share security, infrastructure, and governance while keeping their own execution sovereignty. A Superchain member commits to standard contracts, contributes to a shared sequencer in the future, and pays a portion of sequencer revenue back to the Optimism Collective. In return, it gets shared bridges, shared security audits, shared developer tools, and eventually atomic cross-chain composability.

This is fundamentally different from how Arbitrum's L3 strategy works or how Polygon's CDK ecosystem operates. Where Arbitrum Orbit chains and Polygon CDK chains are each independent islands, Superchain members are explicit partners in a shared network. The branding, the standards, and the governance are coordinated through the Optimism Collective, which uses the OP token for protocol-level decisions.

Superchain ecosystem map showing Base Coinbase Unichain Uniswap World Chain Soneium Sony and other OP Stack L2 chains in 2026
The Superchain in 2026 spans 18+ production L2s including Base, Unichain, and World Chain.

The killer feature on the Superchain roadmap is atomic cross-chain composability. Today, moving assets between Base and OP Mainnet still requires a bridge, even though they technically share the same security model. The Superchain target is interop messages that finalize within a single block across all Superchain members, making a user's transaction on Unichain able to atomically trigger an action on Base without a traditional bridge. This is what the shared sequencer roadmap unlocks.

Chains Built with OP Stack: The Full 2026 Roster

The Superchain has grown dramatically since 2023. Below is the 2026 list of production OP Stack chains that are formally part of the Superchain or in the process of joining. Many more chains have forked the OP Stack without joining the Superchain proper, but these are the ones that matter for ecosystem cohesion.

Base
Coinbase. Largest by TVL. Flagship Superchain member.
OP Mainnet
The original. Home of the OP token.
Unichain
Uniswap Labs' DeFi-optimized L2.
World Chain
Worldcoin / Tools for Humanity. Identity-first L2.
Soneium
Sony Block Solutions Labs. Entertainment IP focused.
Mode
DeFi and AI focused, sequencer fee sharing model.
Zora
NFT and creator economy L2.
Mantle
BitDAO-backed, uses EigenDA for data availability.
Lisk
Emerging market focused L2, RWA aligned.
Cyber
SocialFi L2 by the CyberConnect team.
Redstone
Onchain gaming L2 by Lattice.
Polynomial
Derivatives-focused L2 built around perps.
Lyra
Options protocol's own settlement L2.
Ham
Farcaster-native social L2 in the OP Stack family.
Orderly
Cross-chain orderbook L2 infrastructure.
Funki
SuperVerse-backed gaming and entertainment L2.
Donatuz
Creator monetization L2 with social hooks.
Kinto
Account-abstraction-native KYC compliant L2.

Beyond these, there are also entire ecosystems of L3s and appchains being built on top of Base specifically. The total number of chains running OP Stack code in production in 2026 is well over 30 once you include non-Superchain forks and testnets. The framework has become the dominant choice for new L2 launches not because of marketing but because the developer ergonomics and tooling maturity are simply ahead of the alternatives.

Base Deep Dive: Coinbase's Flagship Superchain Member

Base launched in August 2023 as Coinbase's official Layer 2, built on the OP Stack from day one. By 2026 it has become by far the largest Superchain chain by TVL, daily active addresses, and transaction volume. At various points Base has briefly flipped Arbitrum to become the single largest Ethereum L2 by activity. Coinbase commits a percentage of Base sequencer revenue back to the Optimism Collective under the Superchain governance agreement, making Base both the biggest revenue contributor and the biggest validator of the Superchain economic model.

What makes Base especially interesting is the deliberate decision by Coinbase not to launch a Base token. Gas is paid in ETH, governance is handled through the broader Optimism Collective, and Coinbase's monetization comes from sequencer fees and the integration of Base into its broader exchange product. This stands in stark contrast to almost every other L2, which typically launches a native gas or governance token for fundraising and incentives.

Base is also where the consumer onchain narrative has gained the most traction. Friend.tech, the Farcaster ecosystem, Aerodrome, and a long tail of meme tokens have all flourished on Base, driven largely by Coinbase's onboarding pipeline. For developers, deploying to Base is virtually identical to deploying to Ethereum mainnet. The OP Stack guarantees that EVM-equivalence is preserved. For a full breakdown, see our complete Base guide.

World Chain: Worldcoin's Identity-First L2

World Chain, launched by Tools for Humanity (the company behind Worldcoin), is the OP Stack chain explicitly designed around verified human identity. Every user of World Chain has an associated World ID, derived from the iris-scanning Orb device. The chain uses this primitive to offer differentiated services to verified humans, including priority block space, gas discounts, and Sybil-resistant airdrops.

From a technical standpoint, World Chain is a relatively faithful OP Stack deployment with a handful of custom precompiles for verifying World ID proofs efficiently on-chain. Almost everything else is standard OP Stack. This is exactly the kind of differentiated execution-layer customization the framework was designed to enable: keep the boring infrastructure standardized, swap in custom logic where it matters for the use case.

For Worldcoin, the choice of OP Stack made sense because it bought them shared security with Ethereum, integration with the Superchain bridge graph, and a battle-tested codebase, all while letting them stay focused on the identity verification primitives that are their actual value proposition. That trade-off is the core pitch for the OP Stack as a framework.

Unichain: Uniswap Labs Goes Vertical

Unichain, announced in October 2024 by Uniswap Labs and launched in early 2025, is one of the most significant OP Stack deployments because of what it represents. Uniswap is the largest DEX in DeFi, and by launching its own L2 it has become the canonical example of a major application protocol choosing to capture more value by owning its own settlement layer rather than paying rent to an existing one.

Unichain is OP Stack at its base but adds some interesting modifications. It targets one-second block times, includes a verifiable block-builder that enables more sophisticated MEV protection, and is being positioned as a hub for cross-chain liquidity. Uniswap V4 hooks are tightly integrated, and the chain explicitly markets itself as DeFi-native rather than general purpose.

For Uniswap, the calculus is straightforward. By running its own chain on the OP Stack, it captures sequencer fees from the activity it generates and avoids the situation where most of the value created by Uniswap trading on other L2s flows to those L2s' operators rather than to Uniswap itself. Expect more major DeFi protocols to follow this playbook through 2026 and 2027.

Soneium: Sony Brings IP and Entertainment On-Chain

Soneium, launched by Sony Block Solutions Labs (a joint venture between Sony Group and Startale Labs), went live in early 2025 on the OP Stack. Sony's bet is that the OP Stack gives them the production-grade infrastructure they need to launch consumer-facing entertainment products, music, anime, gaming, that they can't ship on a slow and expensive Ethereum mainnet.

Soneium is significant because it is the largest example so far of a Fortune 500 corporation choosing to build its blockchain strategy on top of an open source rollup framework rather than building a proprietary chain or partnering with a permissioned consortium chain. For the OP Stack, Soneium is a flagship validation that the framework is mature enough to be trusted by major non-crypto-native enterprises with brand and regulatory risk on the line.

The Shared Sequencer Roadmap: From Many Sequencers to One

Today, every OP Stack chain runs its own sequencer. Base has the Coinbase sequencer, OP Mainnet has the OP Labs sequencer, World Chain has the Tools for Humanity sequencer, and so on. These sequencers are centralized single points of failure, and they also prevent atomic cross-chain composability across the Superchain.

The shared sequencer roadmap aims to solve both problems at once. Instead of every Superchain member running its own sequencer in isolation, all members would opt into a shared decentralized sequencer set. Any sequencer in the set could order blocks for any participating chain, with cryptographic guarantees that the orderings are valid. This unlocks two huge wins: decentralization of the role currently held by a single operator, and atomic composability across all Superchain chains in a single block.

As of mid-2026, the shared sequencer is in active development and being tested on devnets. The architecture borrows ideas from Espresso, Astria, and Optimism's own internal designs. Sequencer auctions, proposer-builder separation, and inclusion lists are all part of the design space. The expected production rollout sits in the 2026-2027 window, with early Superchain interop messages already live in a more limited form through the SuperchainERC20 standard.

OP Token and RetroPGF: The Economic Layer of the Collective

The OP token is the governance token of the Optimism Collective. It does not pay gas (that is ETH on all OP Stack chains), but it does control the upgrade keys, the protocol treasury, and the allocation of retroactive public goods funding. The Collective is bicameral in design: a Token House (OP holders) and a Citizens' House (a separate body that focuses on funding decisions and RetroPGF). This separation is intentional, an attempt to keep speculative token concentration from dominating the slow work of funding ecosystem goods.

OP Stack governance and RetroPGF retroactive public goods funding system explaining the Optimism Collective token house and citizens house
RetroPGF has distributed over $200M in retroactive grants to OP Stack ecosystem builders.

Retroactive Public Goods Funding, or RetroPGF, is one of the more philosophically interesting experiments in crypto. The idea is simple: rather than asking funders to predict which projects will be impactful (always a coin flip), let the projects ship and prove their impact, then reward them retroactively. Each RetroPGF round distributes tens of millions of OP to projects nominated and voted on by the Citizens' House. By 2026, multiple rounds have distributed in excess of $200 million worth of OP to OP Stack builders, public goods projects, developer infrastructure, and educational efforts.

Sequencer revenue from Superchain members also feeds back into this system. When Base earns sequencer fees, a contracted portion flows to the Collective treasury, which then funds RetroPGF rounds. This creates a virtuous cycle where the more activity happens on Superchain chains, the more funding gets recycled into the OP Stack ecosystem itself. It is a fundamentally different funding model from VC-funded chains, which extract value to investors, or from foundation-funded chains, which depend on a finite treasury.

OP Stack vs Arbitrum Orbit vs ZK Stack vs Polygon CDK

The OP Stack is not the only rollup-as-a-service framework on the market. In 2026 there are four mainstream choices, each with a different security model, ecosystem strategy, and economic alignment. Here is how they compare honestly.

Framework Proof Type Backer Shared Network Notable Chains
OP StackOptimistic (Cannon)Optimism CollectiveSuperchainBase, Unichain, World Chain, Soneium
Arbitrum OrbitOptimistic (BoLD)Offchain LabsNo shared sequencerXAI, ApeChain, Sanko
ZK StackValidity (ZK)Matter Labs (zkSync)Elastic ChainzkSync Era, Cronos zkEVM, GRVT
Polygon CDKValidity (ZK)Polygon LabsAggLayerAstar zkEVM, X1 (OKX)

OP Stack wins on ecosystem momentum, maturity of the framework, and the explicit Superchain coordination story. It is the most production-tested framework with the most live chains using it in 2026. The trade-off is the seven-day withdrawal window, which is intrinsic to optimistic rollups.

Arbitrum Orbit is mature and battle-tested but has historically positioned itself as a one-stop solution rather than a federation. Orbit chains do not share a sequencer or a unified bridge graph with each other or with Arbitrum One. The BoLD permissionless proof system is competitive technically with Cannon.

ZK Stack from Matter Labs offers near-instant finality on L1 because of ZK validity proofs rather than fault proofs. The Elastic Chain vision is roughly parallel to the Superchain. The downside is that prover costs are still significant and the EVM-compatibility (not equivalence) of zkSync Era can cause subtle dapp compatibility issues.

Polygon CDK bets on validity proofs aggregated through the AggLayer, which is designed to give all CDK chains a shared liquidity layer with near-instant cross-chain messaging. The technology is impressive but the adoption curve has been slower than Polygon initially projected.

The honest summary: if you want the largest ecosystem and the strongest coordination story today, the OP Stack is the default choice. If you want near-instant L1 finality and can afford ZK prover costs, ZK Stack or CDK are stronger. Arbitrum Orbit sits in between, technically excellent but missing the shared network narrative.

How to Build on OP Stack: A Developer's Perspective

For a Solidity developer, deploying to any OP Stack chain feels identical to deploying to Ethereum mainnet. The chain is EVM-equivalent, the JSON-RPC endpoints are standard, and Foundry, Hardhat, viem, and ethers all work without any modification. You change the RPC URL and the chain ID, and your contracts deploy. This was an intentional design goal: the OP Stack was supposed to maximize developer continuity with Ethereum.

If you want to deploy your own OP Stack chain rather than just build on an existing one, the path looks like this. You spin up the five core services (op-node, op-geth, op-batcher, op-proposer, op-challenger), deploy the Solidity contracts to Ethereum L1, configure your genesis file, fund your batcher and proposer accounts, and start producing blocks. The Optimism Collective publishes detailed runbooks and infrastructure providers like Conduit, Caldera, Gelato Raas, and Alchemy offer fully managed deployments.

The economic question is the bigger decision. A chain pays Ethereum L1 for blob data availability, and that is a real ongoing cost denominated in ETH. For low-traffic chains, you might post a blob every minute or so and pay only a few cents per blob. For high-traffic chains like Base, batcher costs run into millions of dollars per month, but the sequencer fees comfortably cover it and then some. The break-even point for a rollup is roughly where you have enough activity to justify the fixed cost of L1 posting plus the team cost of running infrastructure.

If you want to learn more about data availability and modular blockchain design, or the underlying tradeoffs of the blockchain trilemma, those companion guides go deeper into the economics.

Risks: Sequencer Centralization, Shared Liquidity, Governance

The OP Stack is not without trade-offs. The biggest unresolved risk is sequencer centralization. Every Superchain chain today still runs a single sequencer operated by the chain's launching organization. If that sequencer goes down, the chain stops producing blocks until it recovers. If that sequencer censors transactions, users have to fall back to the L1 deposit path, which works but is slow and expensive. The shared sequencer roadmap is the medium-term answer, but it is not yet live.

Shared liquidity is another open problem. Although Superchain chains share the same security model and (eventually) the same sequencer, today they still have fragmented liquidity. ETH on Base is a different token at a technical level from ETH on Unichain. Cross-chain swaps and bridge frictions still exist and create UX problems for users who do not understand why their wallet shows three different ETH balances on three different chains. The SuperchainERC20 standard and the upcoming interop messages are designed to fix this, but again, it is roadmap, not production reality.

Governance is the third major risk vector. The Optimism Collective is a hybrid governance experiment, and it has not been stress-tested at the scale it now operates at. As Base, Unichain, and Soneium contribute more revenue to the Collective treasury, the question of how that money is allocated becomes politically more sensitive. Disputes between major Superchain members over upgrade timing, fee splits, and protocol direction are inevitable, and how those get resolved will shape whether the Superchain remains a coherent network or fragments into a looser federation.

Finally, the seven-day fault proof window is itself a UX risk. Most users do not actually wait seven days to withdraw; they use third-party fast bridges like Across, Hop, or Stargate. But those fast bridges have their own trust assumptions and historically have been targets for hacks. The trust-minimized seven-day path is safe but slow; the fast paths are quick but reintroduce bridge risk. ZK-based rollups do not have this trade-off, which is the strongest argument for the long-term migration to validity proofs.

The Future: Decentralized Sequencer and Cross-Chain UX

The OP Stack roadmap through 2026-2028 is focused on three things: finishing the fault proof rollout to all Superchain members, shipping the shared sequencer, and rolling out atomic Superchain interop messages. Together, these unlock the original Superchain pitch: a federation of chains that feels, to end users, like a single chain with vastly higher throughput than any single chain could provide alone.

Beyond that, there is active research on integrating ZK proofs into the OP Stack as an optional acceleration of the fault proof system. Rather than waiting seven days for the Cannon dispute game to complete, a ZK proof of L2 state correctness could be posted to L1 directly, reducing withdrawals from days to hours or minutes. This hybrid optimistic-plus-ZK design is sometimes called a "ZK enshrined fault proof" and is being explored by both the Optimism Collective and external teams like Risc Zero and Succinct.

The other major frontier is account abstraction and chain abstraction. The end goal is a user experience where you have a single account that works across the entire Superchain, you sign one transaction, and the routing across multiple chains happens invisibly. Several wallet providers, including Coinbase Wallet and the new generation of smart wallets, are already building toward this. The OP Stack's modular architecture and the Superchain's coordination layer make this feasible in a way that fragmented L2 ecosystems struggle to match.

For a broader view of where Optimism as a project is heading, see our companion guide on the Superchain vision in detail.

Frequently Asked Questions

What is the OP Stack in simple terms?

The OP Stack is an open source toolkit maintained by the Optimism Collective that anyone can use to launch their own Ethereum Layer 2. It is what powers OP Mainnet, Base, Unichain, World Chain, Soneium, and many other production L2s. Think of it as the standard codebase for building optimistic rollups.

What is the difference between Optimism and the OP Stack?

Optimism is the original L2 chain (now called OP Mainnet) and the broader Collective that maintains the OP Stack. The OP Stack is the open source software framework. Optimism runs on the OP Stack, but the OP Stack also powers many other chains, including Base, Unichain, and Soneium.

What is the Superchain?

The Superchain is a network of OP Stack chains that share security, infrastructure, governance through the Optimism Collective, and (eventually) a decentralized shared sequencer. Superchain members commit to standard contracts and contribute sequencer fees back to the Collective treasury in exchange for shared bridges and ecosystem coordination.

Are fault proofs live on OP Stack chains?

Yes. Permissionless fault proofs went live on OP Mainnet in mid-2024 and on Base in March 2025. Multiple Superchain members are now at "Stage 1" classification on L2Beat, meaning the trust-minimized withdrawal path is fully functional with a seven-day challenge window. The roadmap target is full Stage 2 decentralization in 2026-2027.

Do I need an OP token to use OP Stack chains?

No. Gas on all OP Stack chains is paid in ETH (or the chain's chosen native token for some forks). The OP token is purely a governance token for the Optimism Collective and is used for protocol-level decisions and the allocation of RetroPGF rounds. End users do not need OP to transact.

How is the OP Stack different from Arbitrum Orbit?

Both are optimistic rollup frameworks, but the OP Stack is explicitly designed around the Superchain coordination model, with shared bridges, shared governance, and a shared sequencer roadmap. Arbitrum Orbit chains are independent and do not share infrastructure with each other or with Arbitrum One. The OP Stack also has broader open source adoption across non-crypto-native enterprises like Sony and Coinbase. See our Arbitrum guide for the other side.

What is RetroPGF?

RetroPGF stands for Retroactive Public Goods Funding. It is the Optimism Collective's program for rewarding projects that have already delivered impact to the OP Stack ecosystem. By 2026, multiple rounds have distributed over $200 million in OP tokens to builders, infrastructure projects, public goods, and educational efforts. It is funded by a combination of Collective treasury allocations and ongoing sequencer revenue from Superchain members.

Can I launch my own OP Stack chain?

Yes. The OP Stack is MIT licensed and anyone can deploy their own chain. You can self-host the five core services and the L1 contracts, or use a rollup-as-a-service provider like Conduit, Caldera, or Gelato Raas to handle infrastructure. Whether you formally join the Superchain is a separate governance decision that requires committing to the Superchain standards and revenue-sharing terms.

Conclusion

The OP Stack has quietly become the de facto standard for launching production-grade Layer 2 networks in 2026. What started as the codebase running OP Mainnet has matured into a modular framework powering Base, Unichain, World Chain, Soneium, and more than a dozen other production chains. With permissionless fault proofs now live, a credible shared sequencer roadmap, and a coordinated governance and funding layer through the Optimism Collective, the OP Stack offers something no competing framework currently matches: a coherent federation of L2s that share security and (soon) UX while preserving execution sovereignty.

The risks are real. Sequencer centralization persists today, the seven-day fault proof window is a UX liability, and the Collective's hybrid governance has yet to be stress-tested at scale. But the trajectory is clear, and the network effects are compounding. Every major new L2 announcement in 2025-2026 has either chosen the OP Stack or seriously considered it. Sony, Coinbase, Uniswap, and Worldcoin do not pick their infrastructure casually, and they have all picked the same one.

If you want to understand where Ethereum scaling is going, you have to understand the OP Stack and the Superchain. They are not the only story, but they are the dominant story in 2026, and the architectural decisions being made today around shared sequencing, fault proof acceleration, and atomic cross-chain composability will define the user experience of Ethereum for the next decade. The infrastructure is no longer experimental; it is production. The question now is just how far the Superchain can stretch before its coordination model starts to fray, and so far the answer keeps being: further than anyone expected.

Related Guides