...
BTC$87,250.002.34%
ETH$4,120.001.18%
SOL$178.004.72%
BNB$645.000.95%
XRP$2.656.41%
ADA$0.82000.62%
AVAX$42.503.14%
DOGE$0.18002.07%
LINK$32.501.89%
DOT$8.900.44%
UNI$14.202.56%
MATIC$0.58000.71%
BTC$87,250.002.34%
ETH$4,120.001.18%
SOL$178.004.72%
BNB$645.000.95%
XRP$2.656.41%
ADA$0.82000.62%
AVAX$42.503.14%
DOGE$0.18002.07%
LINK$32.501.89%
DOT$8.900.44%
UNI$14.202.56%
MATIC$0.58000.71%
EthereumAdvancedUpdated March 2026

Based Rollups & Preconfirmations: The Complete 2026 Guide

Every Layer 2 today relies on a centralized sequencer — a single server that decides which transactions get included and in what order. It's crypto's dirty secret. Based rollups fix this by routing transaction ordering through Ethereum's own validators instead. Combine that with preconfirmations — off-chain commitments from validators that give you ~100ms guarantees before the block is even built — and you get something genuinely new: decentralized sequencing with near-instant finality and full L1 security.

Updated March 2026 · 14 min read

⚡ Based Rollups: Key Facts (March 2026)

Concept Origin
2021 (Vitalik)
Term Coined
Justin Drake, 2023
Preconf Latency
~100ms
Ethereum Block Time
12 seconds
Leading Implementation
Taiko
Key Infrastructure EIP
EIP-7917

1. The Sequencer Problem No One Talks About

When you send a transaction on Arbitrum, Optimism, Base, or virtually any other Layer 2 today, it doesn't go straight to Ethereum. It goes to a sequencer — a centralized server controlled by the rollup's operator. That sequencer decides the order of your transaction relative to everyone else's, bundles them up, and only then posts a batch to Ethereum.

Technically, this sequencer inherits Ethereum's security for finality (you can always force transactions through the L1 if the sequencer ignores you). But in practice, it creates real risks most users never consider:

⚠️ The Four Risks of Centralized Sequencers

Censorship: A sequencer can choose to delay or exclude your transaction — especially relevant if you're trading against a well-connected market maker.
Single point of failure: If the sequencer goes down, the L2 goes down. Several major rollups have experienced multi-hour outages from sequencer failures.
MEV extraction: Because the sequencer controls ordering, it can front-run, back-run, or sandwich user trades — capturing MEV that would otherwise flow to users or validators.
Regulatory risk: A sequencer is a legal entity. It can be compelled to comply with sanctions lists, block addresses, or hand over data.

The broader Ethereum community has been aware of this problem since the earliest rollup days. The question was always: what do you replace the sequencer with? Running a decentralized sequencer set costs money, introduces latency, and creates governance headaches. Based rollups offer a different answer: don't replace it with a new thing — use the thing that's already there and already proven at scale.

2. What Are Based Rollups?

A based rollup — also called an L1-sequenced rollup — is a Layer 2 where transaction ordering is delegated entirely to Ethereum's own block proposers. There is no separate sequencer. Instead, the next Ethereum L1 validator can, in collaboration with L1 searchers and builders, permissionlessly include the next rollup block as part of the next L1 block.

📖 Quick Definition

A rollup is said to be "based" when its sequencing is driven by the base Layer 1. The term was formalized by Ethereum Foundation researcher Justin Drake in a 2023 research post, though the concept traces back to Vitalik Buterin's 2021 "Total Anarchy" proposal. If the next L1 proposer can include your rollup transaction without anyone's permission, the rollup is based.

The key insight is that Ethereum already solves decentralized transaction ordering — it does it for the L1 every 12 seconds. Validators compete to propose blocks, MEV is captured through a competitive market (PBS), and the whole system is secured by hundreds of billions of dollars in staked `ETH`. Why build an entirely new parallel system when you can piggyback on the existing one?

When you use a based rollup, your transaction goes into the same mempool environment as L1 transactions. Ethereum's block builders — the same entities building blocks for Ethereum mainnet today — can include your L2 transaction as part of the next L1 block. The rollup's execution layer processes it, but the sequencing decision was made by Ethereum's existing infrastructure.

3. How Based Sequencing Works

Under the hood, Ethereum already uses a separation between the validator who proposes a block (the proposer) and the entity who builds the block content (the builder). This is called Proposer-Builder Separation, or PBS. Builders compete in a competitive auction for the right to fill a block with the most profitable set of transactions; the proposer simply picks the highest-paying builder.

Based rollups plug directly into this existing PBS market. Builders who are already constructing L1 blocks can additionally include L2 rollup transactions in their block bids. When the proposer selects that block, both L1 and L2 transactions are finalized together in a single atomic operation. The result is that based rollup transactions achieve the same censorship resistance and decentralization as ordinary Ethereum transactions — because they literally go through the same process.

💡 Based Sequencing Step-by-Step

1User submits a transaction to the based rollup's mempool.
2L1 block builders see the transaction alongside regular L1 transactions.
3Builders include the rollup transaction in their block bid, optimizing for MEV.
4The L1 proposer selects the highest-bid block and proposes it to Ethereum.
5The block is finalized on Ethereum, settling both L1 and L2 transactions simultaneously.
6The rollup's execution layer processes the state update from the finalized block.

This design has a powerful side effect: synchronous composability. Because L1 and L2 transactions are included in the same block, a smart contract on Ethereum mainnet can atomically interact with a contract on the based rollup in a single transaction. This was impossible with traditional rollups that had their own separate sequencer timing. Think of it like combining two separate call stacks that used to require a multi-block round trip into a single atomic operation.

4. What Are Preconfirmations?

There's an obvious problem with based rollups: Ethereum's block time is 12 seconds. If your transaction is sequenced by an L1 validator, you're stuck waiting up to 12 seconds just to know if it got included. Rollups with their own sequencers can give you a soft confirmation in under a second. That's a brutal UX gap.

Preconfirmations (commonly shortened to "preconfs") solve this. A preconf is an off-chain commitment from an Ethereum validator to a user, promising that a specific transaction will be included in their next block. The validator sends you a cryptographic commitment — essentially a signed IOU — within ~100 milliseconds of receiving your transaction. You now have a reliable guarantee without waiting for block finalization.

🍽️ The Restaurant Reservation Analogy

Think of a preconf like a restaurant reservation. When you book a table, the restaurant hasn't seated you yet — you're not there. But you've received a trustworthy commitment that a spot will be ready for you at the specified time. You don't have to show up and wait in line hoping there's space. Preconfs give your transaction the same guarantee: you get a signed commitment from the next block proposer that your transaction will be included, long before the block is actually built.

Preconfs come in three flavors, depending on how strong a guarantee you want:

Inclusion (DA)
The validator commits to including your transaction's data in their block. Weakest guarantee — your transaction is in but execution outcome isn't guaranteed.
Ordering (Sequencing)
The validator commits to including your transaction at a specific position in the block. You know your trade won't be front-run by anything else.
Execution (Settlement)
The strongest form — the validator commits to a specific execution outcome (e.g., you'll receive at least X tokens from this swap). This is what most DeFi users actually care about.

Preconfs are enforced through a slashing mechanism. If a validator issues a preconf and then reneges — either by excluding your transaction or by delivering a different execution result — they can be slashed (lose a portion of their staked `ETH`). This economic penalty is what gives preconfs their teeth. A validator making a preconf is putting real money on the line.

Validators who want to issue preconfs opt in to this service. They register their intent to act as preconf providers, and users can choose to route transactions to them (paying a small premium for the speed guarantee). Validators who'd rather not take on slashing risk can stay in their standard role as block proposers.

5. Based Rollups + Preconfs: The Full Picture

Individually, based rollups and preconfirmations each solve different problems. Together they form a coherent solution to Ethereum's scaling challenge:

Based Rollups Solve
Centralized sequencer risk
Censorship vulnerability
MEV extraction by operators
Single point of failure
Fragmented L1/L2 composability
Preconfs Solve
Slow 12-second confirmation time
Uncertain execution outcomes
Poor UX vs centralized systems
Front-running risk on DEXes
Latency-sensitive application limits

The combination delivers something no previous L2 design could claim: a rollup with the decentralization and security of Ethereum itself, combined with user-facing speed that approaches centralized competitors. You're not choosing between fast-and-centralized vs slow-and-decentralized. You're getting both.

EIP-7917, which introduces deterministic proposer lookahead, is one of the key infrastructure changes landing in the Ethereum protocol to support this model. It lets validators (and users) know ahead of time which validator will propose the next block — a prerequisite for meaningful preconfs, since you need to know who to request the commitment from.

6. Transaction Flow Visualizer

Select a scenario below to see how a transaction flows through each architecture.

Centralized sequencer orders transactions before posting to L1.
~500ms (soft), 7+ days (hard)
1
User submits tx
Sent to rollup mempool
2
Centralized Sequencer
Orders & batches transactions
3
Soft Confirmation
~500ms — trusting the operator
4
Batch posted to L1
Calldata or blob to Ethereum
5
L1 Finalization
Hard finality after fraud proof window
Press ▶ Simulate to animate the transaction flow

7. Based vs Traditional Rollups: Side-by-Side

FeatureTraditional RollupBased RollupBased + Preconfs
SequencerCentralized operatorEthereum validatorsEthereum validators
Censorship resistance❌ Vulnerable✅ Full L1 level✅ Full L1 level
Liveness⚠️ Operator dependent✅ Ethereum-level✅ Ethereum-level
Soft confirmation~500ms (sequencer)12 seconds (L1 block)~100ms (preconf)
L1/L2 composability⚠️ Async only✅ Synchronous✅ Synchronous
MEV distributionCaptured by operatorCompetitive L1 marketCompetitive L1 market
New validator setSometimes required❌ None needed❌ None needed
Regulatory exposureHigh (entity controls)Low (decentralized)Low (decentralized)

8. Who Is Building Based Rollups?

Based rollups are moving from whitepaper to production as of 2026, with several teams in different stages of deployment:

TaikoLive on Mainnet

The most mature based rollup implementation, live on Ethereum mainnet. Taiko uses a based sequencing model where Ethereum validators propose Taiko blocks as part of their L1 block proposals. It also has a custom preconf design under active development.

Ethereum Foundation ResearchActive Research

Justin Drake and others at EF continue publishing research on based preconfs, MEV redistribution, and protocol-level support. EIP-7917 (deterministic proposer lookahead) is a direct output of this work.

Bolt ProtocolIn Development

Bolt is building preconfirmation infrastructure specifically designed for based rollups. It enables validators to opt in to issuing execution preconfs backed by on-chain commitments and slashing conditions.

Primev / mev-commitIn Development

mev-commit is a commitment protocol that lets block builders make execution commitments to users. It's a critical piece of infrastructure for both preconfs and based rollup composability.

9. Risks & Trade-offs

Based rollups are a genuine architectural improvement, but they come with real trade-offs you should understand before dismissing traditional rollups entirely.

📊
Throughput ceiling

By tying sequencing to Ethereum's L1 block time and blockspace, a based rollup's throughput is constrained by L1. Traditional rollups with their own sequencer can process thousands of TPS independently of L1 congestion. Blob scaling via EIP-4844 and Pectra helps, but it's an inherent constraint.

⚙️
Validator complexity

Issuing preconfs requires validators to run additional software, monitor L2 mempools, and take on slashing risk. This raises the technical and capital requirements for validators who opt in, potentially reducing the pool of willing preconf providers.

🔄
MEV dynamics shift

Centralized sequencers captured MEV — that was bad, but predictable. In a based rollup, MEV flows back into the competitive L1 PBS market. This is better for decentralization, but MEV in the L1 market can still impact users and may interact with preconfs in complex ways.

🔬
Still early

Most based rollup infrastructure — including Bolt, mev-commit, and EIP-7917 — is in active development or recently deployed as of March 2026. Battle-tested production systems with billions of dollars at stake don't exist yet at the scale of Arbitrum or Optimism.

10. What This Means for You as a User

If you're a DeFi user on Ethereum today, here's the practical translation:

✅ What you gain on a based rollup + preconfs

Transactions can't be censored by a single operator — your trade gets included or it doesn't, based on market dynamics, not anyone's whitelist.
Near-instant execution preconfs (~100ms) eliminate the uncertainty of 'did my transaction go through?'
L1-to-L2 atomic composability means new DeFi primitives become possible — flash loans spanning L1 and L2, atomic arbitrage across layers, and more.
MEV revenue is redistributed through the competitive L1 market rather than captured entirely by a rollup operator.
No new trust assumption — you're trusting Ethereum's validator set, which you already trust to finalize your transactions.

The practical timeline: you're unlikely to notice a difference in your day-to-day Ethereum usage immediately. Taiko is live but still growing its ecosystem. As based rollup infrastructure matures over 2026 and into 2027, expect the major rollup teams to at minimum decentralize their sequencers using based or based-adjacent designs, even if they don't go full based immediately.

The long arc here favors based rollups. Centralized sequencers are a liability — reputationally, legally, and technically. The question isn't whether the industry moves away from them; it's how fast.

⚠️ This guide is for informational purposes only. It is not financial advice. The protocols and technologies discussed are actively evolving. Always do your own research before making investment or usage decisions.

Related Guides

Frequently Asked Questions

What is a based rollup?

A based rollup is a Layer 2 where transaction ordering is handled by Ethereum's own L1 validators — not by a separate, centralized sequencer. The L1 proposer can include rollup transactions in their block, giving the rollup the same decentralization and censorship resistance as Ethereum mainnet.

What is the difference between a based rollup and a regular rollup?

A regular rollup uses a centralized sequencer to order transactions before posting them to Ethereum. A based rollup removes this sequencer entirely, routing transaction ordering through Ethereum's PBS (proposer-builder separation) system. This eliminates the single point of failure and censorship risk.

What are preconfirmations on Ethereum?

Preconfirmations (preconfs) are off-chain commitments from Ethereum validators to users, guaranteeing that a specific transaction will be included in their next block. They enable ~100ms transaction confirmations, backed by validator slashing if the commitment is broken.

Why do based rollups need preconfirmations?

Based rollups inherit Ethereum's 12-second block time, which is slow for user-facing apps. Preconfirmations bridge this gap by letting validators commit to including your transaction in ~100ms, before the block is finalized. You get decentralized sequencing AND fast confirmations.

Are based rollups live on Ethereum today?

As of March 2026, Taiko is the most advanced live based rollup on Ethereum mainnet. Infrastructure for based preconfs (like EIP-7917 and Bolt Protocol) is in active development. The ecosystem is growing but not yet at the scale of Arbitrum or Optimism.

Who invented based rollups?

The core concept was described by Vitalik Buterin in 2021 as 'Total Anarchy.' Ethereum Foundation researcher Justin Drake formalized the 'based rollup' term and design in a 2023 research post, catalyzing the current wave of development.