Simple sequencing
Last updated
Last updated
Why this matters
Ethereum block production is overwhelmingly centralized. Over 80% of blocks are built by two builders (see below).
To address this centralization, Signet assigns block production rights in a round-robin style to block builders.
This round-robin model does away with proposer-builder auctions and therefore prevents the most wealthy block builders from dominating the market.
Every blockchain needs a way to order transactions — that's sequencing. Ethereum uses auctions to determine who gets to build blocks and sequence transactions. There are a few problems with this:
Auctions mainly benefit the Ethereum block proposer, even though they do no valuable work.
Auctions centralize block building by favoring a small number of hyper-specialized builders who can out-compete smaller players.
Over 80% of Ethereum's blocks are built by two block builders
Block building is a very high-sophistication activity, leading to a very competitive market. Marginal improvements in MEV extraction lead to significantly increased probability of winning a block auction. This means that the most aggressive builders tend to squeeze out smaller builders. These leads to aggregation of control in the hands of a small number of builders.
Even worse, rollup sequencing is centralized by default. The chain's order is set by a single entity, with little-to-no recourse. No rollup has credible plans to decentralize the sequencer.
Instead of auctions, Signet uses a central sequencer that assigns block production rights to block builders in a round-robin fashion. Each Ethereum block, a specific builder may create a Signet block. That builder is responsible for creating a Signet block and for submitting that block to Ethereum. The Signet sequencer co-signs the builder's block without seeing its contents.
Once the assigned builder has produced a block, the Signet sequencer co-signs the block header without seeing the block contents. This means the sequencer only sees the block's hash and the builder's identity, not the transactions. By signing blocks without knowing their contents, the Signet sequencer can't selectively censor transactions, ensuring fair and unbiased block inclusion while maintaining its role in managing builder participation.
Tradeoffs of this approach
This model represents a trade-off between theoretical and operational decentralization. While Ethereum's system is theoretically decentralized, in that there is no single authority or administrator, it is operationally centralized because a small number of block builders control sequencing. Signet's approach prioritizes operational decentralization by increasing the number of builders, by introducing a centralized sequencer to permission and manage that builder set.
We believe that active management is the best solution to emergent centralization.