feat: fetch raw signed execution payload envelopes - #80
Merged
Conversation
Adds RawExecutionPayloadEnvelope to the consensus API client and
FetchRawExecutionPayloadEnvelope to the Node interface, exposing
GET /eth/v1/beacon/execution_payload_envelopes/{block_id} (gloas onwards)
in JSON or SSZ depending on the requested content type.
Claude-Session: https://claude.ai/code/session_012CnMNMdPisWGmvKhKzj1ii
samcm
added a commit
to ethpandaops/tracoor
that referenced
this pull request
Jul 16, 2026
Gloas (ePBS) blocks only commit to the execution payload; the payload contents ship separately as a SignedExecutionPayloadEnvelope, making the envelope effectively the other half of the block. Archive it as a new object type, cloned end-to-end from the beacon block flow: agent fetch on block events (gated on the gloas fork epoch, with a short retry while the builder reveals the payload; a never-revealed payload is skipped), gzip'd raw SSZ in the store, indexer table and gRPC/API surface, download route, retention, and a web UI listing. Envelope fetching rides on ethpandaops/beacon#80, which exposes GET /eth/v1/beacon/execution_payload_envelopes/{block_id}. Claude-Session: https://claude.ai/code/session_012CnMNMdPisWGmvKhKzj1ii
samcm
marked this pull request as ready for review
July 16, 2026 05:28
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.
Adds RawExecutionPayloadEnvelope to the consensus API client and FetchRawExecutionPayloadEnvelope to the Node interface, exposing GET /eth/v1/beacon/execution_payload_envelopes/{block_id} (gloas onwards) in JSON or SSZ depending on the requested content type. Needed by tracoor to archive envelopes on glamsterdam devnets.
https://claude.ai/code/session_012CnMNMdPisWGmvKhKzj1ii