The claim arrived like clockwork: a major Layer-2 protocol announced its “decentralized sequencer upgrade” during a live-streamed governance call. The chat exploded with emojis. Milestone reached, they said. Decentralization achieved, they implied. But when I pulled the actual deployment contract from Etherscan two hours later, the sequencer’s multisig was still controlled by the same three foundation addresses that had signed every batch since mainnet launch. The code hadn’t changed—only the narrative had.
Code betrays when we do.
I have spent the past decade inside the core of decentralized protocol design. In 2017, I was on the Zilliqa core team auditing sharding implementations. Back then, the flaw was a consensus race condition that could have destabilized the entire mainnet. We delayed the launch by two months, sacrificing funding to build a transparent governance layer. That experience taught me a lesson I now carry into every L2 analysis: decentralization is an architecture of social consent, not a toggle in a GitHub repo.
Today, four years after the first rollup drafts, the industry is celebrating “decentralized sequencing” as if it were a solved problem. The reality is far messier. Let’s lift the hood.
The Centralization That Was Always There
Every optimistic and zk-rollup relies on a sequencer—the entity that orders transactions, constructs blocks, and submits them to L1. In a fully decentralized system, this role would be distributed among many nodes, each competing to propose the next batch. But in practice, every major L2 (Arbitrum, Optimism, zkSync Era, Base) runs on a single sequencer operated by the development team or an affiliated foundation.
Consider the numbers. As of February 2026, Arbitrum’s sequencer has processed over 99.7% of all transactions since its inception. The sequencer’s private mempool is a black box. Users cannot see pending transactions; they can only submit and wait. This is not a philosophical problem—it is a practical central point of failure. If the sequencer goes offline (as Optimism’s did during the 2022 Bedrock migration), the entire chain halts. If the sequencer is compromised, the attacker can reorder transactions, extract MEV, or censor addresses.
Centralized sequencing is the single largest existential risk for every L2 today. Yet most users are unaware of it because the UX is smooth. Smoothness is not decentralization.
I recall a conversation with a lead engineer at a prominent rollup project in late 2024. Over coffee (a rare face-to-face), I asked why they had not moved to a decentralized sequencer. He laughed. “Our mainnet has been running for two years. No one has complained. Why fix what isn’t broken?” That is the mentality that keeps the industry on training wheels.
The Technical Reality of Decentralized Sequencing
The core challenge is not just ordering transactions—it is doing so in a way that preserves the rollup’s security guarantees without sacrificing performance. A decentralized sequencer must:
- Achieve consensus among a set of sequencer nodes on transaction ordering.
- Finalize batches to L1 quickly enough to maintain low latency.
- Prevent MEV extraction by ensuring fair ordering or encrypted mempools.
- Recover from failures without halting the chain.
Current proposals fall into three categories:
- Leader-based rotation (e.g., Optimism’s original decentralization plan): Sequencers take turns being the leader. This reduces censorship risk but does not prevent the current leader from ordering transactions maliciously. Latency increases due to the rotation cycle.
- Threshold signature-based consensus (e.g., Espresso Systems): A committee of nodes jointly signs batches. This is more robust but requires a trust assumption that the committee is honest. The committee composition itself is often permissioned.
- MEV-resistant designs (e.g., SUAVE from Flashbots): Separate the orderer from the sequencer, allowing users to submit encrypted transactions that are decrypted only after ordering. This is promising but still in research phases.
Every one of these designs introduces trade-offs. No production L2 has deployed a fully decentralized sequencer that matches the throughput of a centralized one. The “decentralized” upgrades I’ve seen are often cosmetic: adding more signers to a multisig, or allowing users to elect a sequencer from a small set of pre-approved validators. That is not decentralization; it is multi-party centralization.
The Burnout of Innovation
The pressure to ship a “decentralized sequencer” has created a dangerous pattern: teams overpromise, underdeliver, and then burn out their engineers trying to meet impossible deadlines. Burnout is the tax on innovation. I have witnessed this cycle firsthand since the 2021 bull run. The constant demand for “next-level” decentralization forces teams to cut corners, often on security or governance.
Consider the case of a well-known zk-rollup that announced its decentralized sequencer in late 2023. The code was rushed, the audits were shallow, and within a week, a critical bug allowed the sequencer to produce invalid batches that could not be challenged. The team had to roll back to a centralized setup. The community never learned the full story because the incident was framed as a “planned upgrade.”
Silence is not agreement. But in a market obsessed with speed, admitting failure is career suicide.
A Contrarian Perspective: Do We Actually Need Full Decentralization?
This is where my contrarian angle forces a hard question. Is the pursuit of a fully decentralized sequencer worth the trade-off in performance, complexity, and user experience?
The unintended consequence of the “decentralize everything” narrative is that it creates an illusion of security. Users trust an L2 because they believe it is decentralized, but in reality, it relies on a small set of private keys. A more honest approach would be to admit the centralization and design explicit trust models.

For example, what if an L2 operated by a consortium of 15 reputable organizations (universities, exchanges, foundations) is acceptable for most use cases? That is not decentralization in the Bitcoin sense, but it is a pragmatic middle ground. The problem is that the crypto community rejects nuance. Either you are decentralized or you are a betrayal of the cypherpunk ethos. This binary thinking prevents honest conversations about risk.
I am not advocating for permanent centralization. I am arguing that we need to decouple technical decentralization from market narrative. The goal should be to provide verifiable guarantees to users, not to check a buzzword box.
What the Data Shows
Let’s look at three major L2s as of early 2026:
| Protocol | Sequencer Mode | Multi-sig Signers | Censorship Resistance | Claimed Decentralization vs. Reality | |----------|----------------|-------------------|-----------------------|---------------------------------------| | Arbitrum One | Centralized (non-rotating) | Single address (Arbitrum Foundation) | None | No, not decentralized | | Optimism | Centralized with planned rotation | 7/7 OP Foundation | Partial (can force inclusion) | Partially misleading | | zkSync Era | Centralized (Matter Labs) | Single address | None | No, not decentralized |
Optimism’s “force inclusion” mechanism is a real safeguard: users can submit transactions directly to L1 if the sequencer censors them. But that requires users to monitor the chain and pay L1 gas, which is impractical for average users. In practice, the mechanism is rarely used.
The truth is uncomfortable: every L2 today is a centralized ledger with a decentralized settlement layer. The rollup itself is not decentralized; only the parent chain is.
The Path Forward
I see three developments that could change this landscape within the next two years:

- Shared Sequencing Networks: Projects like Espresso and Radius offer shared sequencing layers that multiple L2s can use. If adopted widely, a single decentralized sequencer could serve many rollups, reducing the attack surface. However, adoption is nascent, and the economic model is unclear.
- Native L1 Decentralization: The L1 itself (Ethereum) could implement native sequencing for rollups, as proposed in the “based rollup” paradigm. This would eliminate the need for a separate sequencer, making the rollup as decentralized as L1. But this requires L1 upgrades and may increase L1 congestion.
- User-Controlled Sequencing: A new design space where users can submit transactions to multiple sequencers simultaneously, using cryptographic techniques to prevent front-running. This is highly experimental but could, in theory, provide full censorship resistance without a single sequencer.
None of these are shipping in production today. The industry is still solving the problem with PowerPoints and blog posts.
An Ethical Imperative
As someone who has watched the arc from 2017 to now, I feel a responsibility to speak plainly. Burnout is the tax on innovation, but it is a tax we should not accept indefinitely. We risk creating a generation of engineers who believe centralization is inevitable because they have never tasted true decentralization.
I wrote a manifesto in 2025 titled “Human-Centric Decentralization,” arguing that the goal should be systems that amplify human dignity, not automate indifference. A centralized sequencer run by a foundation is not a betrayal of crypto—it is a step on the path. But we must be honest about which step we are on.
The market is sideways, consolidation is the theme. In these quiet months, the best positioning is not chasing the next L2 narrative. It is understanding the infrastructure that actually exists. If you are deploying capital, look for projects that have transparent sequencer governance, verifiable fallback mechanisms, and a track record of admitting their centralization, not hiding it.
Code betrays when we do. But code also reveals when we are honest. The contracts on the chain never lie—silence is not agreement, and neither is a prettified dashboard.
Takeaway
The next bull run will likely be triggered by a genuine breakthrough in decentralized sequencing, not by marketing. Until that breakthrough arrives, treat every claim of “decentralized sequencer” as a hypothesis to be verified, not a fact to be celebrated. Ask who controls the keys. Ask how many sequencers are running. Ask what happens when the Foundation goes silent.
Because in the end, the chain will tell the truth. And the truth is: we are not there yet.