Skip to content

Layer 2 Solutions Explained

Everything you need to know about Layer 2 scaling: how rollups work, what makes them secure, how to bridge your assets, and why L2s are where crypto is heading. A practical guide for 2026.

This tool provides educational information only. It is not financial, tax, or legal advice. Always consult qualified professionals for decisions about your specific situation. Results are based on general patterns and may not reflect your circumstances.

What Are Layer 2 Solutions?

If you have used Ethereum at any point in the last few years, you have probably experienced the frustration firsthand. You want to swap some tokens, and the gas fee quote comes back at $15, $40, sometimes over $100 during peak periods. You want to mint an NFT and the fee is more than the NFT itself. You want to send $20 to a friend and it costs $5 just to process the transaction. Ethereum works, but for a long time, it was painfully expensive for everyday use. This is the problem that Layer 2 solutions were built to solve.

Layer 2 (often abbreviated as L2) refers to a category of scaling solutions that sit on top of a Layer 1 blockchain like Ethereum. The Layer 1 is the base chain — the foundation that handles security, consensus, and final settlement. The Layer 2 handles the actual transaction execution. It processes your swaps, transfers, and smart contract interactions off the main chain, then periodically posts compressed proof of those transactions back to the Layer 1. The result is the same security guarantees as Ethereum, but at a fraction of the cost.

If this feels abstract, think of it like a highway system. Ethereum mainnet is a single highway with limited lanes. When traffic is light, everyone moves smoothly. But during rush hour, the highway gets congested, travel slows to a crawl, and tolls spike because everyone is competing for limited road space. Layer 2 networks are like express lanes and parallel roads built alongside the main highway. They handle the bulk of everyday traffic, reducing congestion on the main road. Periodically, they merge data back onto the main highway to keep everything synchronized and secure.

The key insight is that not every transaction needs the full weight of Ethereum’s security during execution. What matters is that the final state — who owns what, which balances changed — is ultimately verifiable on Ethereum. Layer 2s exploit this by doing the heavy computational work off-chain while using Ethereum as the ultimate source of truth. This is a fundamentally different approach than just building a “faster blockchain” from scratch, because the L2 does not need to bootstrap its own security model. It inherits Ethereum’s.

The scalability problem is sometimes described as the “blockchain trilemma,” a concept popularized by Ethereum co-founder Vitalik Buterin. The trilemma states that a blockchain can optimize for only two of three properties: decentralization, security, and scalability. Ethereum chose decentralization and security, which left scalability as its weakness. Layer 2s are the answer — they add scalability on top without compromising the base layer’s decentralization or security. If you want a deeper understanding of how blockchains work at a fundamental level, our blockchain guide covers the core concepts.

Why does Ethereum specifically need Layer 2s more than other chains? Because Ethereum deliberately limits its throughput to keep the network decentralized. Anyone with a modest computer can run an Ethereum node, which means thousands of independent participants verify every transaction. This is what makes Ethereum secure and censorship-resistant. But it also means the network processes only about 15-30 transactions per second on the base layer. Compare that to Visa, which handles thousands of transactions per second, and you see the gap. Layer 2s close that gap while preserving what makes Ethereum valuable in the first place. For more context on Ethereum’s architecture, see our how Ethereum works guide.

How Layer 2s Work

Understanding how Layer 2s work requires grasping three core concepts: off-chain execution, data posting, and security inheritance. These three elements are what separate a true Layer 2 from a sidechain or an independent blockchain. Once you understand these mechanics, the differences between various L2 technologies become much clearer.

Off-Chain Execution

When you perform a transaction on a Layer 2, it does not get processed by every Ethereum validator. Instead, a specialized operator called a sequencer collects your transaction along with hundreds or thousands of others, orders them, and executes them in sequence. The sequencer runs the computation — determining the resulting state changes (who gained tokens, who lost tokens, which smart contract storage values changed) — on its own infrastructure. This is dramatically faster and cheaper than having the entire Ethereum network repeat the same computation.

Think of the sequencer like a local bank branch. When you deposit a check, the branch processes it locally rather than sending it directly to the Federal Reserve for every individual transaction. But at the end of the day, the branch reconciles everything with the central system. Similarly, the L2 sequencer processes transactions quickly and cheaply, then periodically reconciles with Ethereum.

The sequencer produces blocks on the L2 at a much faster cadence than Ethereum. On Arbitrum, blocks are produced roughly every 250 milliseconds. On Optimism and Base, every 2 seconds. On Ethereum mainnet, a new block appears every 12 seconds. This faster block time is possible precisely because the sequencer does not need to coordinate with thousands of independent validators — it runs the show alone, at least during the execution phase.

Posting Data to Layer 1

After executing a batch of transactions, the L2 must post data back to Ethereum. This is the critical step that distinguishes a true rollup from a sidechain. The data posted to Ethereum allows anyone to independently verify the L2’s state transitions and, in a worst-case scenario, reconstruct the entire L2 state from scratch using only Ethereum data. This is called data availability.

Before March 2024, rollups posted transaction data as regular Ethereum calldata, which was expensive. The introduction of EIP-4844 created a new, cheaper data type called “blobs” specifically designed for rollup data. Blobs are temporary (they expire after about 18 days) and exist in a separate fee market from regular Ethereum transactions. This innovation reduced L2 posting costs by 10-100x practically overnight. Our gas fees guide explains the mechanics of blob pricing in detail.

The data posted to Ethereum varies by rollup type. Optimistic rollups post compressed transaction data — enough for anyone to re-execute the transactions and verify the results. ZK rollups post the resulting state differences along with a mathematical proof (a validity proof) that the state transition is correct. Both approaches ensure that Ethereum always has enough information to verify the L2’s honesty.

Inheriting Security

This is the crucial property that makes L2s fundamentally different from alternative Layer 1 blockchains. Because all transaction data (or proofs) are posted to Ethereum, the security of the L2 is anchored to Ethereum’s own security. Even if every L2 operator disappears tomorrow, a user could take the data from Ethereum and prove ownership of their assets. The L2 does not need its own set of validators to secure funds — Ethereum’s validators do that job.

This security inheritance is not perfect, however. Most L2s today have training wheels — the ability for a multisig council to upgrade contracts, override the sequencer, or pause the system. These escape hatches exist because the technology is still maturing, but they represent a trust assumption. Organizations like L2Beat track the maturity of each rollup’s security model. A fully mature rollup (which none have fully achieved yet as of early 2026) would have no ability for any central party to censor transactions, steal funds, or upgrade contracts without governance approval.

Data Availability and the Role of Blobs

Data availability is arguably the most important concept in L2 design. If transaction data is available, anyone can challenge invalid state transitions or reconstruct the state. If data is not available, users must trust the sequencer to be honest. Some newer L2s (sometimes called “L2s with off-chain DA”) post their data to alternative data availability layers like Celestia or EigenDA instead of Ethereum. This is cheaper but changes the trust model — the L2’s security is now partially dependent on a separate network rather than Ethereum alone.

Understanding data availability is key to evaluating the actual security of any L2 you use. A rollup posting data to Ethereum is secured by Ethereum. A rollup posting data to Celestia is secured by both Ethereum (for settlement) and Celestia (for data availability). This does not make it bad — just different, and worth understanding before you deposit significant value.

Types of Layer 2 Solutions

Not all Layer 2 solutions work the same way. The term “Layer 2” gets applied broadly, sometimes too broadly, to various scaling approaches. Understanding the differences is important because each type comes with distinct security guarantees, withdrawal times, and trade-offs. Here is a breakdown of the four main categories you will encounter.

Optimistic Rollups

Optimistic rollups are the most widely adopted L2 technology today. They get their name from their core assumption: transactions are “optimistically” assumed to be valid unless someone proves otherwise. When a batch of transactions is posted to Ethereum, there is a challenge window (typically 7 days) during which anyone can submit a fraud proof if they believe the batch contains invalid state transitions. If a fraud proof succeeds, the invalid batch is reverted and the dishonest operator loses their staked deposit.

The beauty of this approach is simplicity. The L2 only needs to do extra work (the fraud proof game) when something actually goes wrong, which in practice is almost never. The downside is the 7-day challenge window for native bridge withdrawals. When you withdraw from Arbitrum or Optimism back to Ethereum through the official bridge, you wait 7 days. Third-party liquidity bridges can give you instant access by fronting the funds, but they charge a fee and introduce additional smart contract risk.

Examples: Arbitrum One, Optimism, Base (built on the OP Stack), Blast, Mantle.

ZK Rollups (Zero-Knowledge Rollups)

ZK rollups take a fundamentally different approach. Instead of assuming transactions are valid and waiting for challenges, they generate a cryptographic proof — called a validity proof or zero-knowledge proof — that mathematically demonstrates the batch is correct. This proof is posted to Ethereum, where a smart contract verifies it. If the proof checks out (which takes a fraction of a second to verify), the batch is accepted as final.

The advantage is faster finality. There is no 7-day challenge window because the mathematical proof replaces the need for economic dispute resolution. Withdrawals can be processed in hours rather than days. The disadvantage has historically been complexity and cost — generating ZK proofs is computationally intensive, and achieving full EVM compatibility with ZK circuits is an enormous engineering challenge. By 2026, however, ZK technology has matured dramatically, and networks like zkSync Era and Starknet handle a wide range of smart contract interactions.

Examples: zkSync Era, Starknet, Polygon zkEVM, Scroll, Linea, Taiko.

Sidechains

Sidechains are EVM-compatible blockchains that run in parallel to Ethereum with their own consensus mechanism and validator set. They are connected to Ethereum through a bridge but do not inherit Ethereum’s security. If a sidechain’s validators collude, they could theoretically steal bridge funds — something that is not possible on a properly functioning rollup. This makes sidechains fundamentally different from true L2s, even though they offer similar user experiences (low fees, fast transactions, EVM compatibility).

Polygon PoS is the most well-known sidechain, though Polygon has been transitioning toward a ZK-based architecture. BSC (BNB Smart Chain) is sometimes categorized as a sidechain to Ethereum, though it operates as an independent Layer 1. Sidechains are useful and battle-tested, but understand that your trust model is different from a rollup.

State Channels

State channels are one of the earliest Layer 2 concepts. Two parties open a channel on-chain, conduct many transactions off-chain between themselves, and then close the channel by settling the final state on-chain. Bitcoin’s Lightning Network is the most famous state channel implementation. State channels are extremely fast and cheap for specific use cases (like repeated payments between two parties) but are limited in scope — they do not support general-purpose smart contracts and require both parties to be online.

FeatureOptimistic RollupsZK RollupsSidechainsState Channels
Security SourceEthereum (via fraud proofs)Ethereum (via validity proofs)Own validator setEthereum (on-chain settlement)
Withdrawal Time~7 days (native bridge)HoursMinutesInstant (channel close)
EVM CompatibleYes (fully)Mostly (improving)Yes (fully)No (limited scope)
Smart ContractsGeneral purposeGeneral purposeGeneral purposeVery limited
MaturityHigh (battle-tested)Medium (rapidly maturing)HighHigh (niche use)
ExamplesArbitrum, Optimism, BasezkSync, Starknet, ScrollPolygon PoSLightning Network

For most users, the practical choice comes down to optimistic rollups vs. ZK rollups. Both provide genuine Ethereum security. The deciding factor is usually ecosystem maturity and which applications are available on each network, not the underlying proof mechanism.

Major Layer 2 Networks

The L2 landscape has evolved rapidly. As of early 2026, several networks have established themselves as major players with billions in total value locked, active DeFi ecosystems, and growing user bases. Here is a practical overview of the networks you are most likely to encounter and use.

Arbitrum One

Arbitrum, developed by Offchain Labs, is the largest Ethereum L2 by total value locked. It uses an optimistic rollup architecture with its own fraud proof system called BOLD (Bounded Liquidity Delay). Arbitrum was one of the first L2s to achieve meaningful adoption and has the deepest DeFi liquidity among all rollups. Major protocols like Aave, Uniswap, GMX, and Pendle are all active on Arbitrum. The network has a governance token (ARB) and is governed by the Arbitrum DAO. Transaction fees typically range from $0.01 to $0.10 for simple operations. Arbitrum also spawned Arbitrum Nova, a separate chain optimized for gaming and social applications with even lower fees.

Optimism

Optimism is the second major optimistic rollup and the creator of the OP Stack — an open-source framework that lets anyone deploy their own L2. This is significant because the OP Stack powers an entire ecosystem of L2s called the “Superchain,” including Base, Zora, and Mode. Optimism has a governance token (OP) and pioneered the concept of retroactive public goods funding, where a portion of sequencer revenue funds projects that benefit the Ethereum ecosystem. The network has strong DeFi presence including Velodrome, Synthetix, and Aave.

Base

Base is Coinbase’s L2 network, built on the OP Stack. It launched in August 2023 and rapidly became one of the most-used L2s. Base benefits from Coinbase’s massive user base — it is trivially easy to move funds from a Coinbase account directly to Base without using a separate bridge interface. Base does not have its own token and has stated it does not plan to launch one. Fees on Base are among the lowest of any major L2, often under $0.01. The network has become a hub for social applications, memecoins, and onchain consumer apps alongside standard DeFi protocols.

zkSync Era

zkSync Era, built by Matter Labs, is one of the leading ZK rollups. It uses a type of zero-knowledge proof called SNARK (Succinct Non-interactive Argument of Knowledge) and has achieved broad EVM compatibility, meaning most Ethereum smart contracts can be deployed on zkSync with minimal changes. The network launched its ZK token in 2024 via a large airdrop. zkSync has a growing DeFi ecosystem and is notable for its native account abstraction support, which allows for improved wallet UX including gas payment in ERC-20 tokens and social recovery.

Starknet

Starknet, developed by StarkWare, takes a different approach from most ZK rollups. Instead of using the EVM, it uses its own virtual machine (the Starknet VM) and a custom programming language called Cairo. This means developers cannot simply port Ethereum contracts over — they must rewrite or adapt them. The trade-off is that Cairo is purpose-built for zero-knowledge proofs, enabling potentially better performance and proving efficiency. Starknet has a token (STRK) and a growing ecosystem, though its unique architecture means smaller protocol selection compared to EVM-compatible L2s.

Polygon zkEVM

Polygon, originally known for its PoS sidechain, has been transitioning to a ZK-based architecture. Polygon zkEVM is a ZK rollup designed for bytecode-level EVM equivalence — meaning existing Ethereum contracts should work without any modifications. This is a harder engineering challenge than type-2 or type-3 EVM equivalence but provides maximum compatibility. Polygon is also developing an aggregation layer (AggLayer) that aims to unify liquidity across its various chains and external L2s.

NetworkTypeTokenTypical Fee (swap)Key Strength
Arbitrum OneOptimistic RollupARB$0.02 - $0.10Deepest DeFi liquidity
OptimismOptimistic RollupOP$0.02 - $0.10OP Stack / Superchain
BaseOptimistic Rollup (OP Stack)None<$0.01 - $0.05Coinbase integration
zkSync EraZK RollupZK$0.01 - $0.08Native account abstraction
StarknetZK RollupSTRK$0.01 - $0.05Cairo VM performance
Polygon zkEVMZK RollupPOL$0.01 - $0.05Bytecode-level EVM equivalence

Fee estimates above are typical ranges as of early 2026 and fluctuate with network activity and Ethereum blob costs. Always check current fees before transacting. For real-time estimates, use our gas fee estimator.

How to Use Layer 2s

Using a Layer 2 network is simpler than it sounds. If you have used Ethereum before, you already know 90% of what you need. The same wallets work, the same interfaces work, and the same tokens exist. The main new concept is bridging — moving your assets from Ethereum (or another chain) to the L2 network before you can use them there. If you need to set up a wallet first, our crypto wallets guide walks through the options.

Step 1: Add the L2 Network to Your Wallet

Most Ethereum L2s are EVM-compatible, which means they work with existing wallets like MetaMask, Rabby, and Coinbase Wallet. You need to add the L2 as a custom network in your wallet settings. Each L2 has a unique chain ID and RPC URL. The easiest way to add a network is through Chainlist.org — search for the L2 you want, click “Add to MetaMask,” and approve the network addition. Most L2 official websites also have a one-click “Add Network” button. For help setting up your wallet securely, see our wallet setup tool.

Step 2: Bridge Your Assets

Bridging moves your tokens from one chain to another. Every L2 has an official (canonical) bridge that moves assets between Ethereum mainnet and the L2. These official bridges are the most secure option because they rely on the same smart contracts that secure the rollup itself. However, they can be slow — optimistic rollup bridges take 7 days for withdrawals back to Ethereum.

Third-party bridge aggregators like Across, Stargate, Hop, and Socket offer faster bridging (often under 5 minutes) and can route between L2s directly without going through Ethereum mainnet. The trade-off is additional smart contract risk — you are trusting the bridge protocol’s smart contracts in addition to the rollup’s contracts. For smaller amounts and everyday use, third-party bridges are practical and widely used. For large amounts, consider the canonical bridge for maximum security.

Step 3: Verify and Transact

Once your assets arrive on the L2 (which can take anywhere from 1 minute to 20 minutes depending on the bridge and source chain), you can use them just like on Ethereum. Switch your wallet to the L2 network, and you will see your bridged balances. DeFi interfaces like Uniswap, Aave, and most modern dApps automatically detect which network you are on and adjust accordingly. You can swap tokens, provide liquidity, lend, borrow, and interact with smart contracts exactly as you would on Ethereum — just at a fraction of the cost.

The Exchange Shortcut

Many centralized exchanges now support direct deposits and withdrawals to L2 networks. If you have funds on Coinbase, you can withdraw directly to Base, Arbitrum, or Optimism without using a bridge at all. Kraken and Binance also support L2 withdrawals for major tokens. This is often the cheapest and easiest way to get started on an L2, especially for beginners, because you skip the bridging step entirely and the exchange handles the backend routing. Withdrawal fees from exchanges to L2s are typically very low — often under $1.

A Note on Security

When bridging assets, always double-check that you are using the official bridge URL and not a phishing site. Bookmark the official bridge pages for any L2 you use regularly. Verify the bridge contract addresses against official documentation. Never approve unlimited token spending for bridge contracts. And never bridge more than you can afford to lose until you are comfortable with the process. For comprehensive security practices, our safe storage guide covers the fundamentals, and our security checklist tool helps you audit your setup.

Fees on Layer 2

Understanding how L2 fees work is important for choosing the right network and timing your transactions. L2 fees have two components, and understanding both helps explain why fees vary between networks and over time.

The Two Components of L2 Fees

Every L2 transaction fee has two parts. The execution fee covers the cost of processing your transaction on the L2 itself — the sequencer’s computational work. This is typically very small because the sequencer is a single high-performance machine, not a distributed network of thousands of nodes. The data posting fee (also called the L1 fee or security fee) covers the cost of posting your transaction data back to Ethereum for security. This is usually the larger of the two components and fluctuates based on Ethereum blob demand.

EIP-4844 and Blob Fees

EIP-4844, implemented in March 2024, was a game-changer for L2 economics. Before blobs, rollups paid regular Ethereum gas prices to post data — which meant L2 fees spiked whenever Ethereum was congested. With blobs, L2 data exists in a separate fee market. Blob fees have their own supply-demand dynamics, independent of regular Ethereum gas. This has made L2 fees both cheaper and more predictable. A future upgrade called PeerDAS will increase blob throughput further, driving costs even lower.

Why Fees Vary Between L2s

Different L2s have different fee structures based on their architecture. ZK rollups spend more on proof generation but post less data per transaction. Optimistic rollups post more data but skip the proof generation cost. L2s using alternative data availability layers (like Celestia) have even lower data costs. The sequencer’s margin also varies — some L2s charge a small markup to fund development, while others operate closer to cost. Transaction volume matters too: more transactions in a batch means the L1 posting cost is split more ways, reducing the per-transaction cost.

OperationEthereum L1ArbitrumBasezkSync Era
ETH Transfer$1.00 - $5.00$0.01 - $0.03<$0.01$0.01 - $0.02
Token Swap (DEX)$5.00 - $30.00$0.02 - $0.10$0.01 - $0.05$0.01 - $0.08
NFT Mint$5.00 - $50.00$0.03 - $0.15$0.01 - $0.05$0.02 - $0.10
DeFi Deposit (Aave/Compound)$8.00 - $40.00$0.03 - $0.12$0.01 - $0.05$0.02 - $0.08
Token Approval$1.00 - $5.00<$0.01<$0.01<$0.01

These are typical ranges during normal network conditions as of early 2026. Ethereum L1 fees assume moderate gas prices (20-60 gwei). During extreme congestion, all numbers can increase significantly. L2 fees are post-EIP-4844 and assume normal blob market conditions. For a deeper dive into gas fee mechanics, see our complete gas fees guide.

Risks and Trade-offs

Layer 2s are a massive improvement for everyday users, but they are not without risks. Understanding these trade-offs helps you make informed decisions about which L2s to use and how much value to keep on them. No technology is perfect, and the honest assessment is more useful than blind enthusiasm.

Bridge Risks

Bridges are one of the most attacked surfaces in all of crypto. Cross-chain bridges have been responsible for billions of dollars in losses over the past few years, including the $600M Ronin bridge hack, the $325M Wormhole exploit, and the $100M Harmony Horizon bridge attack. These were mostly third-party bridges, not canonical rollup bridges, but the risk is real. Every time you bridge funds, you are trusting smart contract code. Use well-audited bridges, start with small test transactions, and never approve unlimited token spending on bridge contracts. For more on spotting security risks, see our common security mistakes guide.

Sequencer Centralization

Today, every major L2 runs a centralized sequencer operated by the rollup’s development team. This means a single entity decides transaction ordering, which creates censorship risk and MEV extraction opportunities. If the sequencer goes down, the L2 cannot process new transactions (though users can still force-withdraw through Ethereum in most cases). Sequencer decentralization is a stated goal for all major L2s, but progress has been gradual. Arbitrum, Optimism, and others have published roadmaps for decentralized sequencing, but none have fully implemented it as of early 2026.

Withdrawal Delays

Optimistic rollups impose a 7-day withdrawal period through the native bridge. This is not a bug — it is the security mechanism that allows fraud proofs to be submitted. But it means your capital is locked during that period. Third-party bridges offer faster withdrawals by fronting liquidity, but they charge fees and introduce additional risk. ZK rollups have shorter withdrawal times (typically hours), but still require proof generation and verification.

Smart Contract Upgrade Risk

Most L2s have upgradeable smart contracts controlled by multisig wallets or security councils. This means a small group of people can change the rules of the system. While this is useful for fixing bugs quickly, it also means you are trusting those individuals not to make malicious upgrades. The best L2s have timelocks on upgrades (giving users time to exit before changes take effect) and are progressively reducing the upgrade authority. Check L2Beat for each network’s current upgrade permissions.

Ecosystem Fragmentation

With dozens of L2s competing for users, liquidity is split across many networks. The same token might have deep liquidity on Arbitrum but thin liquidity on zkSync, leading to worse swap prices. Moving between L2s requires bridging, which costs time and money. This fragmentation is a real usability challenge that the ecosystem is working to solve through cross-chain messaging protocols and shared liquidity layers.

Layer 2 for DeFi and NFTs

Layer 2 networks have transformed from experimental scaling solutions into thriving ecosystems with their own native applications and culture. The combination of low fees, fast transactions, and Ethereum security has enabled new categories of onchain activity that were impractical on mainnet. If you are interested in getting started with decentralized finance, our DeFi for beginners guide provides the foundational concepts.

DeFi on Layer 2

Most major DeFi protocols have deployed on multiple L2s. Uniswap, Aave, Curve, and Compound are available on Arbitrum, Optimism, Base, and several ZK rollups. But L2s have also spawned native DeFi protocols that were designed specifically for the L2 environment. GMX, a perpetual futures exchange on Arbitrum, became one of the most revenue-generating DeFi protocols by offering low-fee leveraged trading that would be prohibitively expensive on Ethereum mainnet. Velodrome on Optimism pioneered a ve(3,3) DEX model that became a template for liquidity direction across DeFi. Aerodrome, its Base fork, rapidly became the dominant DEX on that network.

Low fees have also made DeFi strategies viable for smaller portfolios. On Ethereum mainnet, gas costs made it uneconomical to compound yields, rebalance positions, or harvest rewards unless you had thousands of dollars in a position. On L2s, you can compound a $100 yield farming position daily for fractions of a cent. This democratization of DeFi access is one of the most underappreciated benefits of L2 adoption.

NFTs on Layer 2

NFT activity has increasingly shifted to L2s, driven by near-zero minting costs. Base has become a significant hub for NFT activity, with onchain art, social collectibles, and media NFTs thriving because creators and collectors do not face the $10-50 minting costs of Ethereum mainnet. Zora, both a protocol and an OP Stack L2, has focused specifically on making media creation onchain accessible and affordable. The lower cost of minting has enabled experimentation — artists can release collections, iterate on formats, and interact with collectors without worrying about gas costs eating into margins.

Gaming and Social Applications

Gaming and social apps require high transaction throughput and low fees — exactly what L2s provide. Arbitrum Nova was purpose-built for these use cases, offering ultra-low fees at the trade-off of posting data to a Data Availability Committee rather than Ethereum directly. Social applications like friend.tech and Farcaster frames have used Base as their home, processing millions of low-value transactions that would be impractical on mainnet.

The Future of Layer 2

The L2 landscape is evolving fast. Several trends are shaping where this technology goes next, and understanding them gives you a sense of what to expect over the coming years. Ethereum has fully committed to a “rollup-centric roadmap” — the plan is for the base layer to focus on security and data availability while L2s handle the actual transaction execution.

Based Rollups

Based rollups are a new design where Ethereum validators themselves act as the sequencer rather than having a centralized operator. This would solve the sequencer centralization problem by leveraging Ethereum’s existing decentralized validator set. The trade-off is that block times would match Ethereum’s (12 seconds) rather than the sub-second times possible with centralized sequencers. Based rollups are still largely in research and early implementation, but they represent a promising path toward fully decentralized L2s.

Layer 3s (L3s)

If L2s settle on Ethereum, L3s settle on L2s. These “layers on layers” allow application-specific chains to be built on top of existing L2s, achieving even lower costs and higher throughput for specific use cases. A gaming studio, for example, might deploy an L3 on Arbitrum that processes in-game transactions at near-zero cost while inheriting Arbitrum’s security, which itself inherits Ethereum’s security. Arbitrum Orbit and the OP Stack both support L3 deployments.

Cross-L2 Interoperability

The fragmentation problem — liquidity and users split across dozens of L2s — is the biggest UX challenge in the current landscape. Several solutions are emerging. Optimism’s Superchain vision would make all OP Stack chains interoperable, allowing seamless asset and message passing between Base, Optimism, Zora, and other OP chains. Polygon’s AggLayer aims to aggregate liquidity across Polygon-ecosystem chains. Standards like ERC-7683 (cross-chain intents) are creating common interfaces for any chain to communicate with any other. The end goal is a future where users do not need to think about which L2 they are on — the infrastructure handles routing automatically.

Ethereum’s Rollup-Centric Roadmap

Ethereum’s development roadmap has fully embraced L2s as the primary scaling path. Future Ethereum upgrades like PeerDAS (increasing blob throughput), full danksharding (massively expanding data availability), and Verkle trees (making nodes lighter to run) are all designed to make L2s cheaper and more efficient. The vision is an Ethereum where the base layer is an ultra-secure settlement and data availability layer, and all user-facing activity happens on L2s. This is not a pivot or a concession — it is the plan Ethereum has been building toward since 2020.

For newcomers to crypto, the L2 landscape can feel overwhelming. The good news is that you do not need to understand every technical detail to benefit. Pick a well-established L2 with the applications you need, bridge some funds over, and start transacting at a fraction of mainnet costs. As the ecosystem matures, the technical complexity will increasingly fade into the background. If you are just getting started, our cryptocurrency for beginners guide is the best place to start, and our trading basics guide covers the practical mechanics of buying, selling, and moving crypto.

Frequently Asked Questions

What is the difference between a Layer 1 and a Layer 2?+
A Layer 1 is the base blockchain itself — Ethereum, Bitcoin, Solana, etc. It handles its own consensus, security, and data storage. A Layer 2 is a separate network built on top of a Layer 1 that processes transactions off-chain and then posts proof or data back to the Layer 1. Layer 2s inherit the security of the underlying Layer 1 while offering faster and cheaper transactions.
Are my funds safe on a Layer 2?+
On true rollups like Arbitrum, Optimism, Base, and zkSync, your funds inherit Ethereum security because transaction data is posted to Ethereum. If the L2 goes offline, you can still withdraw your funds using the data stored on Ethereum mainnet. However, most L2s currently rely on centralized sequencers and upgradeable contracts, which introduce some trust assumptions. Sidechains like Polygon PoS have their own validator set and do not inherit Ethereum security directly.
How long does it take to withdraw from a Layer 2 to Ethereum?+
It depends on the type of rollup. Optimistic rollups like Arbitrum and Optimism have a 7-day challenge period for native bridge withdrawals. This exists so that anyone can challenge fraudulent state transitions. ZK rollups like zkSync and Starknet can process withdrawals in hours because they submit mathematical proofs that Ethereum verifies immediately. Third-party bridges can provide faster withdrawals on both types, but they introduce additional smart contract risk.
Do I need ETH to pay fees on Layer 2 networks?+
Most Ethereum Layer 2s use ETH for gas fees, but at drastically lower amounts — often fractions of a cent. You need to bridge some ETH to the L2 before you can transact. Some L2s and account abstraction wallets are introducing gas payment in stablecoins like USDC, but ETH remains the default gas token on the majority of Ethereum rollups.
What is the cheapest Layer 2 to use right now?+
As of early 2026, Base and Arbitrum consistently offer some of the lowest fees among major L2s, with simple transfers often costing less than $0.01 and token swaps under $0.05. ZK rollups like zkSync Era and Starknet have also become very competitive after optimizations. Fees change based on network activity and Ethereum blob costs, so check current rates before transacting.
Can I move tokens directly between two Layer 2 networks?+
Not natively through the canonical bridges — each L2 bridge connects to Ethereum mainnet, not to other L2s. However, third-party cross-chain bridges like Across, Stargate, and Synapse allow direct L2-to-L2 transfers. These are faster and cheaper than bridging through Ethereum mainnet, but they introduce additional smart contract risk. Cross-L2 interoperability is an active area of development.
What happens if a Layer 2 sequencer goes down?+
If the centralized sequencer stops operating, most rollups have a fallback mechanism called forced inclusion that lets users submit transactions directly to Ethereum. However, this is typically slower, more expensive, and sometimes requires technical knowledge. In practice, major sequencer outages have been rare and short-lived. Decentralizing sequencers is a key goal for most L2 teams.
Should I use an Optimistic Rollup or a ZK Rollup?+
For most users, the practical difference is minimal. Optimistic rollups like Arbitrum and Base currently have larger ecosystems with more DeFi protocols and liquidity. ZK rollups offer faster finality and shorter withdrawal times. Choose based on which network has the applications and liquidity you need rather than the underlying technology. Both types offer massive fee savings compared to Ethereum mainnet.
Are Layer 2 tokens a good investment?+
This is an educational resource and we do not provide investment advice. Some L2s have governance tokens (ARB for Arbitrum, OP for Optimism, STRK for Starknet) while others like Base do not have tokens. Whether any token is a good investment depends on your personal financial situation, risk tolerance, and research. Never invest more than you can afford to lose.