Remove blinded execution payload envelope - #11091
Open
gfukushima wants to merge 11 commits into
Open
Conversation
…nvelope from PostExecutionPayloadEnvelope, and add `Eth-Blob-Data-Included` header to distiguish between ExecutionPayloadEnvelopeContents and ExecutionPayloadEnvelope when parsing request body Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Reviewed by Cursor Bugbot for commit 045ebea. Configure here.
Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
| final SignedBlindedExecutionPayloadEnvelope signedBlindedExecutionPayload, | ||
| final Optional<BroadcastValidationLevel> broadcastValidationLevel) { | ||
| return SafeFuture.<SignedExecutionPayloadEnvelope>of( | ||
| return SafeFuture.<List<DataColumnSidecar>>of( |
Member
There was a problem hiding this comment.
Should we abort the entire publish if we can't reconstruct blobs for it? Looks like previously we would still accept the valid signed envelope, and now we won't.
Contributor
Author
There was a problem hiding this comment.
looking into this, I think you're right, not having or being able to reconstruct should be reason enough to stop the publishing of the execution payload.
…atch with the signed execution payload envelope Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
…sidecars Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
# Conflicts:
# data/beaconrestapi/src/integration-test/resources/tech/pegasys/teku/beaconrestapi/beacon/paths/_eth_v4_validator_blocks_{slot}.json
Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
…d reject a payload mismatch Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
…velope' into remove-BlindedExecutionPayloadEnvelope
lucassaldanha
approved these changes
Aug 18, 2026
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.

PR Description
Remove the blinded version of execution payload envelope following the change in the beacon api ethereum/beacon-APIs#624
We now use
Eth-Blob-Data-Includedto distinguish the request body of publishExecutionPayloadEnvelopeFixed Issue(s)
Fixes #11044
Documentation
doc-change-requiredlabel to this PR if updates are required.Changelog
Note
Medium Risk
Changes the validator–beacon publish contract and Gloas gossip timing (payload blocked until sidecars are buildable), which can affect multi-node block production and blob availability.
Overview
Aligns Gloas execution payload publication with the updated beacon-APIs model: blinded envelopes and unblind-from-cache are removed, and
publishExecutionPayloadEnvelopeis split byEth-Blob-Data-Includedinstead ofEth-Execution-Payload-Blinded.Stateless (
true): body isSignedExecutionPayloadEnvelopeContents(envelope plus blobs/KZG proofs). Stateful (false): body isSignedExecutionPayloadEnvelope; the node builds data column sidecars from cachedgetPayloaddata, withDataColumnSidecarCreationExceptionwhen cache is missing or the payload root does not match (messages are returned to clients as rejections).ExecutionPayloadPublisherGloasnow runs broadcast validation in parallel with sidecar creation but gossip only after both succeed; if sidecars cannot be built but the block has no blob commitments, it still publishes the envelope with empty sidecars. Remote validator clients send the signed envelope directly withEth-Blob-Data-Included: false(no auto-blind). OpenAPI drops blinded envelope schemas;produceBlockV4treatsinclude_payloadas a required query parameter.Reviewed by Cursor Bugbot for commit ccb4949. Bugbot is set up for automated code reviews on this repo. Configure here.