DeFi Intel

Shared Sequencing: Decentralizing MEV for Rollups in 2026

Quick answerShared sequencing for Ethereum rollups replaces single sequencers with decentralized committees that order transactions collectively, reducing MEV extraction risks and centralization. Protocols like Espresso, Astria, and Radius use consensus mechanisms, threshold encryption, or shared ordering APIs to enable fair ordering, censorship resistance, and trust-minimized cross-rollup composability.

Shared sequencing Ethereum is the architectural shift from single-sequencer rollups to decentralized ordering layers that mitigate MEV centralization risks and remove single points of failure. By distributing the right to order transactions among a permissionless or semi-permissioned committee, rollups can achieve both scalability and credible neutrality. Over the past two years, projects like Espresso Systems, Astria, and Radius have pioneered designs that reduce extractable value for any single participant while preserving low latency—the critical requirement for user experience.

This guide dissects the core mechanisms of shared sequencing, comparing consensus-based, threshold-encrypted, and shared-API approaches. We examine how each design handles MEV, its trust assumptions, and the trade-offs that protocol designers must balance. Whether you are a rollup builder evaluating sequencing options or a DeFi protocol assessing cross-rollup composability, understanding these trade-offs is essential for navigating the 2026 Ethereum scalability landscape.

Key takeaways
  • Shared sequencing decentralizes transaction ordering across a committee, reducing MEV risk and single points of failure.
  • Three main architectures exist: consensus-based (Espresso), threshold-encrypted (Radius), and shared API (Astria) – each with distinct trust and latency profiles.
  • Fair ordering, inclusion lists, and separation of proposer/executor are key mechanisms to mitigate MEV.
  • Trust assumptions shift from trusting one sequencer to trusting an honest majority of the committee (by stake or reputation).
  • Cross-rollup composability becomes trustless at the ordering layer, reducing liquidity fragmentation but still requiring execution-level compatibility.
  • Integration with Ethereum via restaking (EigenLayer AVS) may bootstrap security without a new token.

The MEV Centralization Problem in Single-Sequencer Rollups

In a single-sequencer rollup, one entity (e.g., Arbitrum Sequencer or OP Mainnet Sequencer) controls transaction ordering entirely. This sequencer can reorder, censor, or front-run transactions, capturing MEV that would otherwise be distributed among users. While some rollups implement economic slashing for misbehavior (e.g., decentralized validators in Arbitrum’s future roadmap), the sequencer remains a central point of trust for liveness and fairness. A single centralized sequencer that captures ordering rents represents a lucrative single point of control – a honeypot. Shared sequencing disperses that power to a committee, making collusion necessary to extract MEV and dramatically raising the cost of attack.

What Is Shared Sequencing? The Core Mechanism

Shared sequencing collects transactions from one or multiple rollups, runs them through a decentralized ordering protocol, and produces a canonical sequence committed to the rollup’s bridge contract on Ethereum. The sequencing committee does not execute the transactions—it only orders them. Execution remains on the rollup (either via a single executor or decentralized proving). By decoupling ordering from execution, shared sequencing introduces a sequencing layer that can be (a) permissionless (any node can join) or (b) semi-permissioned (governed by a fixed set of operators). Key properties include: independence from any single sequencer, transparent ordering, and the ability to enforce inclusion lists or fair ordering constraints.

“Shared sequencing does not eliminate MEV entirely—it democratizes access to ordering opportunities and makes extraction observable and challengeable.”

Protocols in this space include: Espresso (uses a consensus-based ordering committee with byzantine fault tolerance), Radius (employs threshold-encrypted mempool to prevent front-running), and Astria (offers a CometBFT-based shared ordering service that rollups can integrate via a single endpoint).

Architectural Comparison: Consensus, Threshold Encryption, and Shared API

Three dominant architectures have emerged:

These approaches represent different points on the spectrum of trust minimization versus performance, with threshold encryption offering the highest resistance to MEV but lower throughput, and consensus-based providing a middle ground with well-understood trade-offs.

How Shared Sequencing Mitigates MEV: Fair Ordering, Inclusion Lists, and Separation of Roles

MEV mitigation in shared sequencing rests on three pillars:

For example, in Espresso’s design, the ordering committee produces a sequence that is later executed by rollup-specific executors. If the executor attempts to reorder or censor, the bridge contract can detect that the execution does not match the globally agreed ordering and reject it. Similarly, Radius’s threshold encryption ensures that even the ordering committee cannot see transaction payloads until after ordering, preventing any MEV from being extracted based on transaction order.

Trust Assumptions: From Single Sequencer to Decentralized Committee

Trust PropertySingle SequencerConsensus-Based Shared Sequencer (e.g., Espresso)Threshold-Encrypted Shared Sequencer (e.g., Radius)
Party controlling orderingOne entityN≥2f+1 committee (honest majority)N≥2f+1 committee (honest majority for DKG)
Collusion required to reorder1 (sequencer alone)f+1 (malicious committee majority)f+1 (malicious committee majority after decryption)
Visibility of tx contents before orderingImmediately visible to sequencerVisible to committee during orderingHidden (encrypted) until after ordering
Liveness guaranteeSequencer uptimefault-tolerant: ≤f failures toleratedfault-tolerant: honest majority during DKG
Economic securityNone (or bond slashing)*Staked bond from committee; protocol-native token valueStaked bond; threshold cryptography prevents MEV extraction

*Some rollups implement sequencer bonds with slashing for liveness failures, but reordering remains unconstrained.

Note that both consensus and threshold-encrypted approaches reduce trust to an honest majority of the committee (by stake or reputation). The key difference is that threshold encryption adds an extra layer of privacy, preventing even the committee from seeing tx contents until after ordering, which completely removes the ability to front-run or back-run based on transaction types. However, it also increases latency and system complexity due to the necessary decryption rounds.

Protocol Design Choices: Tokenomics, Permissioning, and Finality

Designers of shared sequencing layers must make several foundational choices:

For rollups considering integration, these choices directly affect latency, cost, and the ability to support atomic cross-rollup composability. For instance, a DeFi application requiring near-instant settlement may prefer a fast finality consensus-based shared sequencer, while a privacy-sensitive DEX may opt for threshold encryption even at higher latency.

Cross-Rollup Composability and Liquidity Fragmentation

One of the most touted benefits of shared sequencing is enabling atomic cross-rollup transactions. When all participating rollups share the same sequencing layer, the order of transactions across rollups is globally consistent. This allows, for example, a borrow on Rollup A and a deposit on Rollup B to be executed in the same block with exactly-once semantics, effectively creating a synchronized state machine across rollups. Cross-rollup claims and yield routing become trustless, significantly reducing liquidity fragmentation.

Concrete implementations: Espresso’s Rollup Continuum and Astria’s Shared Sequencer both support atomic inclusion proofs. However, true atomic composition requires that all rollups also share the same execution environment (e.g., all EVM), which is not required by the sequencing layer alone. In practice, composability across different execution layers (e.g., EVM and MoveVM) still needs bridging and proof verification. Shared sequencing reduces the ordering trust barrier but does not solve cross-proving entirely. Some projects are exploring multi-VM sequencing, but production solutions remain early.

Rollups that join a shared sequencing network can also benefit from liquidity aggregation: a user can send assets through the sequencing layer to any other rollup atomically, eliminating the need for multiple bridge hops. This is a major reason why RaaS providers (e.g., Caldera, Conduit) have started integrating shared sequencing into their stack.

Challenges: Latency, Oracle Synchronization, and Forced Inclusion

Despite progress, shared sequencing introduces new challenges:

For example, a user in Radius’s threshold-encrypted system must wait until the decryption phase for their transaction to be visible; if the committee refuses to decrypt, the user cannot prove censorship. Radius mitigates this with on-chain dispute games similar to optimistic rollups, but at the cost of delay.

The 2026 Landscape: Upcoming Improvements and Research Directions

By 2026, shared sequencing is expected to reach production stability across multiple rollup ecosystems. Key research directions include:

Infrastructure providers like Caldera and Conduit are already offering shared sequencing as a service, enabling rollups to launch with decentralized ordering from day one. The next frontier is achieving sub-second finality through advanced consensus protocols (e.g., Jolteon, Narwhal) without compromising security.

Conclusion: Preparing for Decentralized Sequencing

Shared sequencing is not a panacea for all rollup centralization concerns, but it is the most concrete step toward aligning rollup architecture with Ethereum’s credibly neutral ethos. By distributing ordering power and making MEV observable, it reduces the risk of censorship and extractive behavior that plague single-sequencer systems. The design space—spanning consensus threshold encryption, inclusion lists, and tokenomics—is rich with trade-offs that protocol designers must carefully evaluate based on their rollup’s latency and privacy requirements.

For developers, the time to integrate shared sequencing is now. Start by evaluating which architecture suits your rollup’s trust profile: Espresso for low-latency, high-throughput; Radius for strong MEV protection; Astria for simple integration. For researchers, open problems around cross-execution composability and economic security remain rewarding. As Ethereum evolves to support a rollup-centric roadmap, shared sequencing will become the standard layer for order fairness and decentralization.

Common mistakes to avoid

Frequently asked questions

How does shared sequencing reduce MEV compared to a single sequencer?

Shared sequencing distributes ordering rights among a decentralized committee, making it much harder for any single entity to reorder transactions for profit. With threshold encryption, transaction contents are hidden until after ordering, preventing front-running entirely.

What is the difference between Espresso and Radius?

Espresso uses a consensus-based ordering committee (HotStuff) with transactions visible to the committee; it mitigates MEV through fair ordering and inclusion lists. Radius uses an encrypted mempool where transactions are encrypted until after ordering, offering stronger MEV protection but with higher latency.

Can shared sequencers be censored?

Yes, if a majority of the sequencing committee colludes, they can censor transactions. To counter this, protocols implement forced inclusion mechanisms (e.g., timeout-based submissions to the rollup bridge) and inclusion lists that guarantee selected transactions are included.

Do shared sequencers increase gas costs for users?

Potentially yes, because decentralized ordering involves more network communication and token staking. However, increased competition among sequencing nodes and MEV redistribution can offset costs. Fee differences relative to centralized sequencers are expected to be modest, with further optimizations anticipated.

Is shared sequencing compatible with both optimistic and ZK-rollups?

Yes, shared sequencing is compatible with any rollup type, as it only handles ordering. Execution and proving remain rollup-specific. Both optimistic (e.g., Arbitrum) and ZK-rollups (e.g., Scroll) have expressed interest in integrating with shared sequencing layers.

Track the entities behind the concepts

DeFi Intel maps 11,000+ protocols, tokens and companies to a typed knowledge graph — with live data, incidents and regulation.

Entities mentioned