EXPLAINER
Ethereum layer 2 rollups explained, and what you give up to use one
Rollups cut costs by an order of magnitude. The trade is bridge risk, sequencer trust and withdrawal delays — worth it sometimes, not always.
Quick answer
Rollups batch transactions off-chain and settle proofs on Ethereum, dividing cost across the batch. You accept bridge risk, a usually centralised sequencer, and withdrawal delays on optimistic designs.
Rollups are the main answer to Ethereum fees, and the honest version includes what you give up.
The mechanism
Transactions execute off the main chain, are batched, and a summary plus a proof is posted to Ethereum. Ethereum provides the data availability and final settlement; the rollup provides the throughput. The posting cost is shared across everyone in the batch, which is where the savings come from.
Optimistic versus zero-knowledge
Optimistic rollups assume batches are valid and allow a challenge window, typically about a week, during which a fraud proof can be submitted. That window is why withdrawals back to Ethereum take days unless you use a liquidity provider, who charges for the privilege.
Zero-knowledge rollups post a validity proof with each batch, so correctness is established immediately and withdrawals are faster. The proving is computationally heavier and general-purpose implementations took longer to mature.
What you are actually trusting
Three things beyond Ethereum itself. The bridge contract holding assets, which has historically been the most attacked component in the entire ecosystem. The sequencer, which orders transactions and is centralised on most rollups today — it can usually censor or reorder, though not steal. And the upgrade keys, since many rollups can be modified by a multisig.
When it is worth it
For frequent, small transactions the savings dominate and the risks are proportionate. For a single large transfer you are adding bridge risk to save a fee that is small relative to the amount. Match the tool to the transaction — the same logic as in our gas fees guide.
Related reading
- Ethereum gas fees explained, and the three ways to pay less — What gas actually measures, why fees spike, and the practical options — timing, layer twos and batching —
- Ethereum staking explained: yields, lockups and the risks nobody advertises — Staking pays a yield for helping secure the network. The yield is the easy part; the lockup, slashing
- Why crypto prices fall overnight, and how to tell a reason from a coincidence — Most overnight moves have a liquidity explanation rather than a news one. How to work out what actually
Key takeaways
- Cost savings are real and roughly an order of magnitude.
- Most sequencers are currently centralised.
- Optimistic rollups impose a challenge-period withdrawal delay.
Frequently asked questions
Are rollups as safe as Ethereum?
Not identically. They inherit Ethereum settlement but add bridge, sequencer and upgrade-key risk on top.
Why do withdrawals take a week?
On optimistic rollups the challenge window must elapse before a withdrawal finalises. That delay is the fraud-proof mechanism working as designed.