Works best when
- Censorship resistance is critical and must not depend on builder honesty.
- Block builders concentrate power and may selectively censor transactions.
- Same-slot inclusion guarantees are required (no one-slot delay).
Avoid when
- Mempool visibility of transaction details is unacceptable (combine with encrypted mempools instead).
I2I vs I2U — context differences
Institution to institution
I2IBetween institutions, inclusion guarantees protect bilateral settlement against builder-level censorship, but trade details remain publicly visible in the mempool. Acceptable where counterparties already publish identities and amounts; inadequate where institutional trades must stay confidential from competitors. Pair with encrypted-mempool patterns to cover trade details between institutional counterparties.
Institution to end user
I2UThe user is asymmetric to block builders and cannot negotiate inclusion directly. The 1-of-16 committee honesty assumption provides protocol-level protection against OFAC-style censorship or MEV-motivated exclusion. Public transaction details still expose end-user activity to front-running and surveillance; encrypted submission is a priority for user-facing deployments.
Post-quantum exposure
Risk · medium- Vector
- BLS signatures used for committee IL signatures and attestations are broken by a CRQC. HNDL risk is low since IL contents are public.
- Mitigation
- Migrate consensus signatures to a post-quantum scheme (hash-based or lattice-based) as part of the broader Ethereum consensus PQ transition.
Components
- IL committee of 16 validators selected per slot to construct inclusion lists for the following slot.
- Inclusion list is a signed, bounded set of transactions (8 KiB max per member) that the next block must include.
- P2P gossip network propagates signed inclusion lists across the validator set.
- Fork-choice enforcement is the consensus-layer rule: attesters refuse to attest to blocks that fail to satisfy observed ILs.
- Equivocation detection identifies committee members publishing conflicting ILs and discards their contributions.
Protocol
- sequencer A committee of 16 validators is selected for slot N to build inclusion lists for slot N+1.
- sequencer Between t=0s and t=8s of slot N, committee members monitor the public mempool and assemble inclusion lists of transactions they want force-included.
- sequencer At t=8s, committee members broadcast signed inclusion lists over the P2P network after processing slot N's block.
- sequencer At t=9s, validators freeze their view of inclusion lists; later ILs are rejected, and equivocators are flagged.
- sequencer At t=11s, the builder for slot N+1 collects observed inclusion lists and constructs an execution payload that includes their transactions anywhere in the block.
- sequencer At t=0s of slot N+1, the proposer broadcasts the block containing the IL transactions.
- sequencer At t=4s, attesters verify that every non-equivocated IL transaction is included or provably invalid; otherwise they withhold attestations.
- contract Fork-choice rejects any block that fails IL satisfaction, so a non-compliant block cannot become canonical.
Guarantees & threat model
Guarantees:
- Censorship resistance under builder centralization via a 1-of-16 committee honesty assumption.
- Same-slot inclusion: constraints for slot N+1 include transactions visible in slot N (no one-slot delay).
- Builder flexibility: the builder chooses placement of IL transactions within the block, reducing incentives for side channels.
- Fork-choice enforced: non-compliant blocks receive no attestations and cannot finalize.
Threat model:
- At least one honest and well-connected IL committee member per slot; the P2P network reliably delivers their list before the view-freeze deadline.
- Non-malicious builder with sufficient bandwidth between view freeze (t=9s) and block broadcast; builders disconnected from the committee can miss IL transactions.
- No privacy protection. Transaction details remain publicly visible throughout the process.
- Out of scope: builders that censor the entire mempool before any committee member sees a transaction; encrypted mempools are required to defend against that.
Trade-offs
- Additional bandwidth: up to 16 × 8 KiB inclusion-list gossip per slot, plus potential O(n^2) validity checks if naively implemented.
- Liveness risk: insufficient time between view freeze and block broadcast can cause builders to miss ILs, especially for poorly-connected builders.
- Equivocation handling: the P2P rule allows forwarding up to two inclusion lists per committee member, so bandwidth can double in the worst case.
- No explicit incentives: the pattern relies on altruistic behavior; there are no direct rewards for IL committee members.
- Complexity: requires coordinated changes across consensus-layer fork-choice rules, execution-layer validation, and the P2P network.
Example
A bank submits a €5M stablecoin transfer to the public mempool at t=0s of slot N. Transaction details are fully visible to all observers. An IL committee member includes it in their inclusion list and broadcasts at t=8s. At t=9s the view freezes. The slot N+1 builder collects the IL at t=11s and includes the transfer in the block. Attesters verify inclusion at t=4s. Even if the builder would have preferred to censor the payment (for OFAC compliance, MEV extraction, or competitive intelligence), fork-choice enforcement makes censorship non-viable. Privacy impact is zero: the €5M amount, counterparty, and timing remain publicly visible throughout.
See also
- EIP-7547: forward inclusion lists for a one-slot-delay alternative
- Private Payments Approach