block production: wire Gloas builder bid fetch and notify - #822
Draft
NikhilSharmaWe wants to merge 2 commits into
Draft
block production: wire Gloas builder bid fetch and notify#822NikhilSharmaWe wants to merge 2 commits into
NikhilSharmaWe wants to merge 2 commits into
Conversation
Signed-off-by: Nikhil Sharma <[email protected]>
Signed-off-by: Nikhil Sharma <[email protected]>
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.
Part of #769
Depends on #819.
Summary
Wires the Gloas Staked Builder API into block production:
on_api_execution_payload_bid), then select the highest-value bid among accepted HTTP and gossip bids (self-build if none).RequestAuthwith local keys when a bid fetch will run.submitSignedBeaconBlockfor external builders (best-effort). Accepted HTTP bids are also re-gossiped so peers can see them before the block.Behavior
post_blinded_block).on_own_block→ gossip beacon block → HTTP notify.submitSignedBeaconBlockis notify-only (202); the proposer still gossips the block.submitBuilderPreferences) and skippingregister_validatorsat Gloas are follow-ups.Test plan
cargo test -p builder_api --features blstcargo test -p signer -p kzg_utils --features bls/blst,kzg_utils/blst request_auth--builder-api-url: confirm HTTP 200 bids are selected and the builder is notified after gossip; 204 and invalid bids fall back to gossip/self-build; self-build skips HTTP fetch and notify; the block is gossiped regardless of notify result.