Layer 2 & Scaling FAQ
Base blockchains like Ethereum are secure but slow and can get expensive, so a whole layer of scaling solutions grew on top. These answers explain how Layer 2s and bridges work and what you trade for cheaper fees. Each answer stands on its own.
43 questions · Last updated: July 17, 2026.
What is a Layer 1 blockchain?
A Layer 1 is a base blockchain that settles its own transactions and provides its own security, such as Ethereum, Bitcoin, or Solana. Everything else, including Layer 2 networks, ultimately depends on a Layer 1 for final settlement and security.
What is a Layer 2?
A Layer 2 is a separate network built on top of a Layer 1 that processes transactions off the main chain and then settles them back to it, cutting fees and boosting speed. It inherits much of the base chain's security while easing congestion.
Why do blockchains need scaling?
Blockchains like Ethereum have limited capacity, so when demand rises, transactions slow and fees spike as users compete for block space. Scaling solutions increase throughput so the network can serve more users cheaply without sacrificing its core security.
What is a rollup?
A rollup is a Layer 2 that bundles many transactions together, executes them off-chain, and posts compressed data or proofs back to the Layer 1. This spreads the base-layer cost across many users, making each transaction far cheaper while relying on the main chain for security.
What is an optimistic rollup?
An optimistic rollup assumes transactions are valid by default and allows a challenge window during which anyone can submit fraud proof to dispute them. It is simpler to build and EVM-compatible, but withdrawals back to Layer 1 can take days due to that challenge period.
What is a ZK rollup?
A ZK rollup uses zero-knowledge cryptographic proofs to verify off-chain transactions are valid before settling them on Layer 1. This allows faster finality and strong security guarantees, though the technology is more complex to build than optimistic rollups.
What is the difference between optimistic and ZK rollups?
Optimistic rollups assume validity and rely on a challenge period to catch fraud, while ZK rollups prove validity upfront with cryptography. ZK rollups can settle faster with stronger guarantees, whereas optimistic rollups have historically been simpler and easier to make EVM-compatible.
What are examples of Layer 2 networks?
Well-known Ethereum Layer 2s include Arbitrum and Optimism, both optimistic rollups, Base, and ZK rollups like zkSync and Starknet. Each offers much lower fees than Ethereum's base layer while settling back to it for security.
What is a sidechain?
A sidechain is an independent blockchain that runs alongside a main chain and connects via a bridge, with its own consensus and security. Unlike a rollup, it doesn't inherit the main chain's security, so it trades some safety for speed and low cost.
What is the difference between a sidechain and a rollup?
A rollup posts its data or proofs to a Layer 1 and inherits that chain's security, while a sidechain has its own separate security and only bridges to the main chain. This makes rollups generally safer, though sidechains can offer higher performance.
What is a bridge?
A bridge is a service that moves assets between blockchains, locking or burning tokens on one chain and issuing equivalents on another. Bridges enable cross-chain activity but have been among the most exploited parts of crypto, so their security is a serious concern.
Why are bridges risky?
Bridges are risky because they hold large pools of locked assets and rely on complex code and trust assumptions, making them prime targets. Several bridge hacks have each drained hundreds of millions, so moving funds across chains carries real, well-documented risk.
How do Layer 2s lower fees?
Layer 2s lower fees by handling many transactions off the main chain and settling them in batches, so each user pays only a fraction of the base-layer cost. Compressing data and sharing the settlement expense across many users is what makes fees so much cheaper.
Is my money safe on a Layer 2?
Rollup-based Layer 2s inherit much of Ethereum's security, making them relatively safe, but they add risks from their own code, sequencers, and bridges. Newer or less decentralized Layer 2s carry more risk, so the answer depends on the specific network.
What is a sequencer?
A sequencer is the component of a Layer 2 that orders transactions and produces batches to submit to Layer 1. Many current Layer 2s use a single, centralized sequencer, which is efficient but a point of centralization that projects aim to decentralize over time.
What is finality on a Layer 2?
Finality is when a transaction becomes irreversible. On ZK rollups it can be quick once a proof is verified, while optimistic rollups have a delay before withdrawals fully finalize on Layer 1 due to their challenge period, even if the transaction feels instant on the L2.
What is Ethereum's rollup-centric roadmap?
Ethereum's roadmap focuses on scaling primarily through rollups rather than expanding the base layer's own throughput. The Layer 1 concentrates on security and on making data cheap for rollups, while rollups handle the bulk of user transactions.
What is data availability?
Data availability is the guarantee that the data behind a rollup's transactions is published so anyone can verify or reconstruct the state. It is crucial for security, because if that data were withheld, users couldn't prove their balances or exit safely.
What is a validium?
A validium is a scaling solution that uses validity proofs like a ZK rollup but keeps transaction data off-chain rather than on Layer 1. This makes it cheaper and faster but reintroduces a data-availability trust assumption that pure rollups avoid.
What is an app-specific rollup?
An app-specific rollup, or app-chain, is a Layer 2 dedicated to a single application rather than general use. It gives that app tailored performance and control, at the cost of fragmenting liquidity and users across more separate networks.
What is the blockchain trilemma?
The blockchain trilemma is the idea that decentralization, security, and scalability are hard to maximize all at once, so improving one often weakens another. Scaling solutions try to ease this trade-off, for example scaling via Layer 2s while keeping a secure, decentralized base.
How do I move funds to a Layer 2?
You move funds to a Layer 2 through an official bridge that locks your assets on Layer 1 and credits equivalents on the Layer 2. Using the network's official bridge and verifying the URL matters, since fake bridge sites are a common scam.
Are Layer 2 tokens the same as the base coin?
Not necessarily. Some Layer 2s use the base coin like ETH for fees, while others have their own tokens for governance or fees. So a Layer 2 may or may not have a separate token, and its purpose varies by network.
What is throughput?
Throughput is how many transactions a network can process in a given time, often measured in transactions per second. Scaling aims to raise throughput so more users can transact affordably, and Layer 2s greatly increase it beyond what the base chain alone handles.
What is a canonical bridge?
A canonical bridge is the official, native bridge of a Layer 2, generally considered the safest way to move assets to and from it. Third-party bridges may be faster or cheaper but add extra trust and risk, so the canonical route is often preferred for security.
What is an optimistic challenge period?
An optimistic challenge period is the window, often around a week, during which anyone can dispute an invalid transaction on an optimistic rollup by submitting fraud proof. It underpins the rollup's security but delays full withdrawals back to Layer 1.
What is Arbitrum?
Arbitrum is a leading Ethereum optimistic rollup offering low fees and fast, EVM-compatible transactions while settling to Ethereum. It hosts a large DeFi and app ecosystem and is one of the most widely used scaling networks.
What is Optimism?
Optimism is an Ethereum optimistic rollup focused on low-cost, scalable transactions and on a shared ecosystem of chains called the Superchain. Like other rollups, it settles to Ethereum and aims to keep its security while cutting fees.
What is Base?
Base is an Ethereum Layer 2 optimistic rollup incubated by Coinbase, offering cheap, fast transactions and easy onboarding. It settles to Ethereum and has attracted many apps and users seeking low fees within the Ethereum ecosystem.
What is a ZK proof?
A ZK, or zero-knowledge, proof lets one party prove a statement is true without revealing the underlying data. In ZK rollups it proves a batch of transactions is valid, so the Layer 1 can accept them with strong security and without re-executing them all.
Do Layer 2s make Ethereum less decentralized?
Layer 2s currently add some centralization, such as single sequencers, but they settle to Ethereum's decentralized base layer for security. The trade-off is meant to be temporary, with projects working to decentralize sequencers and other components over time.
What is cross-rollup interoperability?
Cross-rollup interoperability is the ability to move assets and messages between different Layer 2s, ideally quickly and safely. Because each rollup is somewhat isolated, achieving smooth interoperability is an active challenge, often handled today through bridges with their own risks.
What is gas abstraction on Layer 2s?
Gas abstraction lets users pay fees in tokens other than the network's native coin, or have fees sponsored by an app. It improves user experience on Layer 2s, making onboarding smoother for newcomers who may not hold the native gas token.
Why are there so many Layer 2s?
There are many Layer 2s because scaling is in high demand and different teams pursue different designs, trade-offs, and ecosystems. The variety brings innovation but also fragments users and liquidity, which is a downside the space is still working to address.
What is settlement in scaling?
Settlement is the process by which a Layer 2's transactions are finalized on the Layer 1, giving them the base chain's security. It is the anchor that makes rollups trustworthy, since the main chain ultimately records and secures the outcome.
What is a fraud proof?
A fraud proof is evidence submitted during an optimistic rollup's challenge period showing that a posted transaction was invalid, triggering a correction. The system's security rests on someone being able and willing to submit these proofs when needed.
What is a validity proof?
A validity proof, used by ZK rollups, cryptographically demonstrates that a batch of transactions is correct before it settles on Layer 1. Unlike fraud proofs, it proves correctness upfront, so no challenge period is needed to catch bad transactions.
Are Layer 2 fees always cheap?
Layer 2 fees are usually far cheaper than the base layer but can still rise with demand and with the cost of posting data to Layer 1. Upgrades that make base-layer data cheaper have pushed Layer 2 fees lower, though they aren't fixed or free.
What is a rollup sequencer outage?
A sequencer outage is when a Layer 2's transaction-ordering component goes down, temporarily halting new transactions. Well-designed rollups let users still exit to Layer 1 directly during an outage, but it highlights the risk of relying on a single sequencer.
Can I lose funds using a Layer 2?
Yes. You can lose funds through bridge exploits, bugs in a Layer 2's code, scams via fake bridge sites, or by using immature networks. Rollups reduce risk by inheriting base-layer security, but no scaling solution is risk-free. This is general information, not advice.
What is modular blockchain design?
Modular design splits a blockchain's jobs — execution, settlement, consensus, and data availability — across specialized layers instead of one chain doing everything. It aims to scale more flexibly, with rollups handling execution while other layers provide security and data.
How does scaling affect user experience?
Effective scaling makes transactions fast and cheap enough for everyday use, which is essential for wider adoption. But fragmentation across many Layer 2s and bridges can complicate the experience, so improving interoperability is key to making scaling feel seamless.
Should I use a Layer 2 as a beginner?
Layer 2s can save a lot on fees and are widely used, but beginners should stick to well-established networks and official bridges, verify URLs, and start with small amounts. Understanding how bridging and withdrawals work first helps avoid costly mistakes.