Add execution_payload_gossip event topic support - #16893
Merged
nalepae merged 1 commit intoJun 4, 2026
Merged
Conversation
nalepae
approved these changes
Jun 4, 2026
nalepae
enabled auto-merge
June 4, 2026 08:34
Contributor
|
Tested OK on kurtosis Note: Missing values (eg at slots 65 and 66) correspond to block proposed by this node. |
james-prysm
pushed a commit
that referenced
this pull request
Jun 8, 2026
**What type of PR is this?** > Feature **What does this PR do? Why is it needed?** Adds event emission for `execution_payload_gossip` as per ethereum/beacon-APIs#588. **Which issues(s) does this PR fix?** N/A **Other notes for review** https://github.com/OffchainLabs/prysm/blob/e94d46b8c175530cac4deb5e0b082366ba9fb6be/beacon-chain/sync/validate_beacon_blocks.go#L276-L283 `execution_payload_gossip` mirrors `block_gossip` event, so you can see exactly same pattern as our implementation like above. **Testing** ``` ➜ kurtosis-config curl -X 'GET' \ 'http://<beacon-node-rpc-url>/eth/v1/events?topics=execution_payload_gossip' \ -H 'accept: text/event-stream' event: execution_payload_gossip data: {"slot":"65","builder_index":"18446744073709551615","block_hash":"0x36b193697ddff3ece883e04a554e108c280ff5cb1c101aed886cb15bd76515bb","block_root":"0x765c25b8e75955f3f1eabbe6ab9bebc3a05f5fb94dcbbef20b1ddde4192c5244"} ``` with this config: ```yaml participants: - el_type: ethrex el_image: ethpandaops/ethrex:glamsterdam-devnet-4 el_extra_params: - --http.api=eth,net,web3,admin cl_type: prysm cl_image: prysm-bn-custom-image:latest vc_image: prysm-vc-custom-image:latest supernode: true count: 3 cl_extra_params: - --subscribe-all-subnets - --verbosity=debug vc_extra_params: - --verbosity=debug network_params: fulu_fork_epoch: 0 gloas_fork_epoch: 2 seconds_per_slot: 6 genesis_delay: 40 additional_services: - dora global_log_level: debug ``` **Acknowledgements** - [x] I have read [CONTRIBUTING.md](https://github.com/prysmaticlabs/prysm/blob/develop/CONTRIBUTING.md). - [x] I have included a uniquely named [changelog fragment file](https://github.com/prysmaticlabs/prysm/blob/develop/CONTRIBUTING.md#maintaining-changelogmd). - [x] I have added a description with sufficient context for reviewers to understand this PR. - [x] I have tested that my changes work as expected and I added a testing plan to the PR description (if applicable).
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.
What type of PR is this?
What does this PR do? Why is it needed?
Adds event emission for
execution_payload_gossipas per ethereum/beacon-APIs#588.Which issues(s) does this PR fix?
N/A
Other notes for review
prysm/beacon-chain/sync/validate_beacon_blocks.go
Lines 276 to 283 in e94d46b
execution_payload_gossipmirrorsblock_gossipevent, so you can see exactly same pattern as our implementation like above.Testing
with this config:
Acknowledgements