feat(builder): publish stateless payload envelopes - #9982
Draft
krisoshea-eth wants to merge 11 commits into
Draft
Conversation
This was referenced Sep 2, 2026
…shea/envelope-publication
…into krisoshea/envelope-publication
9 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
The Builder needs a small safety boundary between exact envelope assembly and later reveal timing/runtime wiring. Once a local selection is verified, the envelope must be signed and submitted at most once without allowing a conflicting payload for the same Beacon block root.
Description
This draft adds an
EnvelopePublisherthat:BuilderSigner;consensus_and_equivocationvalidation;The selection lookup is injected, so this PR does not choose an SSE contract, payload-store implementation, cutoff, retry policy, metrics, or runtime wiring.
Dependencies
This draft is stacked on #9975 for
BidLedger. The review surface added here is two files:packages/builder/src/services/envelopePublisher.tspackages/builder/test/unit/services/envelopePublisher.test.tsValidation
BidLedgertests, including reveal reservation and publication stategit diff --checkThe Builder build and import check was validated before the ledger-only parent refresh.
Tracks LOD-67.
Review plan
Treat #9980, #9981, and #9982 as one logical selection and reveal path. Keep this draft isolated during development, but combine the services around their first runtime consumer if maintainers prefer fewer service-only PRs.