Skip to main content
DigitalFinances

Glossary · Crypto basics

Layer 1 vs Layer 2

A Layer 1 (L1) is a base blockchain — Bitcoin, Ethereum, Solana. A Layer 2 (L2) is a network built on top of an L1 to scale it cheaper and faster, settling back to L1 for security.

Last updated April 30, 2026

How it works

A Layer 1 is the base blockchain that holds the source of truth. It's secured by its own consensus (proof-of-work, proof-of-stake) and validators. Anything that happens at L1 is final once confirmed.

A Layer 2 is a separate network that processes transactions outside the L1, then periodically posts a compressed summary back to L1 for settlement. Users get the L1's security guarantees because the L2's state is anchored on-chain, but transactions execute much cheaper and faster on the L2 itself.

Most popular L2s today are rollups — they batch hundreds of L2 transactions into a single L1 transaction, amortizing the L1 gas cost across all of them. The main flavors:

  • Optimistic rollups (Arbitrum, Optimism, Base) — assume transactions are valid; allow a 7-day window where anyone can submit fraud proofs to challenge bad batches.
  • ZK rollups (zkSync, StarkNet, Linea, Polygon zkEVM) — generate a cryptographic proof for each batch that verifies validity without needing a challenge period.

Example

You want to swap $50 of USDC for ETH:

  • On Ethereum L1: ~$5–15 in gas, ~12 second confirmation
  • On Arbitrum (L2): ~$0.05–0.20 in gas, ~1 second confirmation

Same Uniswap interface, same liquidity (in many cases), same eventual L1 security — but two orders of magnitude cheaper. That's why most retail DeFi activity has moved to L2s since 2023.

Bridging assets between L1 and L2 takes ~10 minutes for deposits, ~7 days for the standard withdrawal path on optimistic rollups (or seconds via third-party bridges that take a fee). Newer ZK rollups offer faster trust-minimized withdrawals.

Why it matters

The L1/L2 distinction shapes practical decisions:

  • Where to hold liquidity. A small user transacting weekly is better off on L2; a long-term holder doing one trade a year can stay on L1.
  • Bridge security. Most multi-chain hacks ($600M+ each at Ronin and Wormhole) hit bridges, not L1s or rollups. Use canonical (project-official) bridges where possible.
  • Cross-L2 routing. Each L2 has its own state; assets don't automatically flow between Arbitrum and Optimism. Tools like LiFi and Across handle the cross-L2 transfers.
  • Liquidity fragmentation. A token on Ethereum L1, Arbitrum, Optimism, Base, and Polygon is technically the "same token" but each has its own liquidity pool. Slippage and prices can differ across L2s.

Solana takes the opposite approach — fast and cheap at L1 by design, no rollups needed. Whether L2 stacks or monolithic L1s win long-term is an open argument.

Related terms