Introduce builder config containers - #11085
Open
StefanBratanov wants to merge 5 commits into
Open
Conversation
Member
|
The changes look ok to me. But need to fix the mocking so we can get all tests to run. |
StefanBratanov
force-pushed
the
builder_config_containers
branch
2 times, most recently
from
August 12, 2026 18:31
4a238c5 to
ddc489e
Compare
StefanBratanov
force-pushed
the
builder_config_containers
branch
from
August 13, 2026 07:58
ddc489e to
ebd827c
Compare
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
Based on ethereum/beacon-APIs#630
Introduce
BuilderConfigandBuilderEntry. I didn't want to changeValidatorApiChanneltoo much but instead make it backwards compatible with the new data structure. Next PRs would populate these fields correctly from the VC.Fixed Issue(s)
related to #10822
Documentation
doc-change-requiredlabel to this PR if updates are required.Changelog
Note
Medium Risk
Changes the unsigned block production API and builder/MEV plumbing on the beacon node; behavior is mostly preserved via boost-factor mapping, but
includePayloadis not yet consumed and full builder config is not end-to-end wired.Overview
Adds Gloas SSZ types
BuilderConfigandBuilderEntry(aligned with beacon-APIs #630), registered onApiSchemas, so proposer builder settings can carrymin_bid,builder_boost_factor, and per-builder entries (URL, auth, pubkeys, payments).Block production now threads
Optional<BuilderConfig>throughBlockProductionContextandValidatorApiHandlerinstead of a bareOptional<UInt64>boost factor; execution/bid paths still read onlygetBuilderBoostFactor()for now.ValidatorApiChannel.createUnsignedBlockgainsincludePayloadandOptional<BuilderConfig>; a default overload keeps block v3 callers working by wrapping the old boost factor into a minimalBuilderConfig. Remote VC HTTP still sends only the boost factor until follow-up work populates the full structure from the validator client.Reviewed by Cursor Bugbot for commit ebd827c. Bugbot is set up for automated code reviews on this repo. Configure here.