Key takeaways
- Layer 2 networks process transactions off Ethereum's base layer, then post compressed data or proofs back to it, cutting costs while still inheriting much of Ethereum's security.
- Optimistic rollups assume transactions are valid and rely on a challenge window to catch fraud, which is why withdrawals back to layer 1 can take time.
- Zero-knowledge rollups prove transaction validity with cryptographic proofs before posting to Ethereum, generally enabling faster withdrawals at the cost of greater engineering complexity.
- Arbitrum and Optimism are two widely used optimistic rollups that closely mirror Ethereum's execution environment, making it easier for developers to bring existing applications over.
- Using layer 2 networks introduces its own risks, including sequencer centralisation and bridge exploits, so it is worth researching any bridge or rollup independently before moving funds.
Ethereum’s base layer, often called mainnet or layer 1, was designed to prioritise security and decentralisation over raw transaction throughput. That tradeoff means that when demand for block space rises, transaction fees tend to rise with it, and confirmation times can stretch out during busy periods. Layer 2 networks were built to address exactly this problem: they move the bulk of everyday transaction processing off the main Ethereum chain while still relying on it for final security and settlement.
Why Ethereum Needs Layer 2 Networks
Every blockchain that aims to stay decentralised runs into a rough tradeoff sometimes called the scalability trilemma: it is difficult to maximise security, decentralisation, and transaction throughput all at the same time. Ethereum’s design leans toward security and decentralisation, which keeps the network resistant to control by any single party, but it also limits how many transactions the base layer can process directly.
As more wallets, applications, and on-chain markets built on Ethereum, that capped throughput started to show up as higher fees during congested periods. Rather than compromise the base layer’s security model to squeeze in more transactions, Ethereum’s development roadmap leans on what is often called a rollup-centric approach: push execution to a second layer, and let layer 1 focus on being a secure settlement and data layer that those second layers can anchor to.
How Rollups Work
A rollup is a separate network that executes transactions on its own, then periodically bundles, or rolls up, batches of those transactions and posts a compressed summary back to Ethereum. Because the heavy computation happens off the base layer, users on a rollup can transact more cheaply and quickly, while the underlying data and proofs are still recorded on Ethereum, where they inherit much of its security. For a fuller technical definition, see the layer 2 glossary entry.
The key design question for any rollup is how it proves that its off-chain transactions were processed correctly. That question splits rollups into two broad families: optimistic rollups and zero-knowledge rollups.
Optimistic Rollups
Optimistic rollups assume transactions are valid by default and only check them if someone challenges them. After a batch is submitted, there is a window of time during which anyone running a node can dispute a transaction they believe was processed incorrectly, triggering a fraud-proof process to verify it. This approach is relatively straightforward to implement and tends to work well with existing Ethereum tooling, but it means withdrawals back to layer 1 typically have to wait out that full challenge window before they are considered final, unless a user pays a third party to front the funds sooner.
Zero-Knowledge Rollups
Zero-knowledge rollups take a different approach. Instead of assuming transactions are valid and waiting for a challenge, they generate a cryptographic proof, known as a zk-rollup proof, that mathematically demonstrates a batch of transactions was executed correctly before it is ever posted to Ethereum. Because the proof itself is verified on-chain, there is no need for a lengthy challenge period, which generally allows for faster withdrawals. The historical tradeoff has been engineering complexity: generating these proofs efficiently, especially for general-purpose smart contracts rather than simple transfers, is a harder problem to solve than optimistic fraud proofs, though the technology has matured quickly.
Arbitrum and Optimism: Two Widely Used Examples
Among the most established layer 2 networks are Arbitrum and Optimism, both of which use optimistic rollup designs. Each operates its own sequencer that orders and processes transactions before batching data back to Ethereum, and each has its own token used for governance and, on some networks, fees. Their popularity comes largely from compatibility: because they closely mirror Ethereum’s own execution environment, developers can often deploy existing Ethereum applications with minimal changes, which has helped both networks build active ecosystems of decentralised exchanges, lending markets, and other applications.
Other rollups take the zero-knowledge route or hybrid approaches, and the landscape continues to evolve as proof systems mature. The point is not that one design is strictly better than the other; it is that builders and users now have real choices in how they balance cost, speed, and finality.
What You Give Up: The Tradeoffs
Layer 2 networks are not a free upgrade. Using them involves tradeoffs that are worth understanding before you rely on one:
- Withdrawal delays. Moving funds back to Ethereum from an optimistic rollup can take time because of the challenge window described above.
- Sequencer centralisation. Most rollups today rely on a single operator, or a small set of them, to order transactions. This is a form of centralisation that many networks have stated plans to reduce over time, but it has not been fully solved yet.
- Bridge risk. Moving assets between layer 1 and a layer 2 usually means using a bridge contract, and bridges have historically been a common target for exploits. Always research a bridge independently before moving significant funds through it.
- Fragmented liquidity. Assets and users are now spread across many rollups instead of one chain, which can complicate finding the deepest market or best price for a given trade.
How Layer 2s Fit Into Ethereum’s Bigger Picture
Layer 2 networks are not meant to replace Ethereum’s base layer; they are meant to extend it. Ethereum layer 1 continues to function as the settlement and data-availability layer that rollups anchor their security to, which is why a rollup transaction is generally considered more secure than a comparable transaction on an independent blockchain with a smaller, newer validator set. As rollup technology matures, much of the ordinary activity on Ethereum, from swaps to transfers to in-game interactions, is expected to continue shifting toward these second layers, while the base layer increasingly specialises in security and settlement.
The Bottom Line
Layer 2 networks exist because Ethereum’s base layer deliberately trades some throughput for security and decentralisation, and rollups are the main way the ecosystem has chosen to make up that difference. Optimistic rollups like Arbitrum and Optimism lean on fraud proofs and a challenge period; zero-knowledge rollups lean on cryptographic proofs verified up front. Neither removes the need for basic diligence, since bridges, sequencers, and individual applications all carry their own risks, but together they represent Ethereum’s main strategy for staying usable at scale without abandoning the properties that made it worth building on in the first place.
The story
Ethereum's base layer intentionally limits how many transactions it processes directly in order to preserve security and decentralisation, which pushes fees higher whenever demand for block space increases. Layer 2 rollups exist to absorb that demand elsewhere.
The context
For everyday users, layer 2 networks are often the difference between a transaction costing a small fraction of a cent and costing considerably more. For Ethereum as a network, rollups are the centrepiece of its long-term scaling strategy, letting the base layer stay focused on security while other layers handle throughput.
Worth watching over time: how quickly rollups decentralise their sequencers, how withdrawal times evolve, and how standards develop for moving assets between different layer 2 networks safely.
The Digital Take is reasoning and data from the Bitcoin Digital Editorial team — context, not a buy or sell call. Not financial advice.
Frequently asked questions
Is a layer 2 network a separate blockchain from Ethereum?
In a technical sense, yes. A rollup runs its own execution environment and processes transactions independently. But it is designed to depend on Ethereum for security, since it regularly posts transaction data or proofs back to the Ethereum base layer, which is what allows it to inherit much of Ethereum's security rather than needing an independent validator set built from scratch.
Why do transactions cost less on a layer 2?
A rollup batches many transactions together and only posts a compressed summary, or a proof, to Ethereum, spreading the cost of using the base layer across everyone in that batch. Executing the transactions themselves also happens on the rollup's own, less congested environment, which keeps per-transaction costs lower than doing everything directly on layer 1.
Which is better, optimistic or zero-knowledge rollups?
Neither is universally better; they make different engineering tradeoffs. Optimistic rollups are generally simpler to build and highly compatible with existing Ethereum applications, but withdrawals can take longer because of the fraud-proof challenge window. Zero-knowledge rollups can offer faster finality since proofs are verified up front, though building efficient proof systems for complex applications has historically been harder.
Do I need to trust the operator of a layer 2 network?
To some degree, yes, particularly around transaction ordering, since most rollups currently rely on a single sequencer or a small set of them. This is an active area of development, and many networks have publicly stated goals to decentralise sequencing over time. It is worth checking a given rollup's current setup rather than assuming it matches Ethereum's own decentralisation.
Is moving funds to a layer 2 risky?
Bridging funds between Ethereum and a layer 2 introduces a new piece of software, the bridge contract, into the process, and bridges have been a frequent target for exploits across the industry. This is not financial advice, but it is worth treating any bridge as something to research independently, checking how long it has operated and how its security has been reviewed, before moving significant funds through it.
The Bitcoin Digital Editorial team is the collective newsroom byline for Bitcoin Digital. A human editor is accountable for every article; we use AI assistance in our workflow and are transparent about it. We publish under one desk byline rather than fabricate named personas, and real named journalists will appear with genuine credentials when they join.