Add per-validator builder configuration API - #9864
Open
Conversation
|
This pull request has merge conflicts. Could you please resolve them @jimmygchen? 🙏 |
jimmygchen
force-pushed
the
codex/feat-per-validator-builder-config
branch
from
August 21, 2026 06:35
f0f272a to
c3f6c06
Compare
|
This pull request has merge conflicts. Could you please resolve them @jimmygchen? 🙏 |
jimmygchen
force-pushed
the
codex/feat-per-validator-builder-config
branch
from
August 21, 2026 15:07
c3f6c06 to
3c16568
Compare
jimmygchen
force-pushed
the
codex/feat-per-validator-builder-config
branch
from
August 26, 2026 00:41
3c16568 to
d4866c8
Compare
|
This pull request has merge conflicts. Could you please resolve them @jimmygchen? 🙏 |
chong-he
reviewed
Aug 27, 2026
chong-he
left a comment
Member
There was a problem hiding this comment.
I have go through the PR and tested the endpoint manually and they look great. Just some minor comments and a bug found by Codex
jimmygchen
force-pushed
the
codex/feat-per-validator-builder-config
branch
from
August 27, 2026 01:47
d4866c8 to
023488e
Compare
chong-he
approved these changes
Aug 28, 2026
chong-he
left a comment
Member
There was a problem hiding this comment.
Looks great, tested and the endpoints are all working
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.
Description
Adds the per-validator builder configuration endpoints from ethereum/keymanager-APIs#88.
GET /eth/v1/validator/{pubkey}/builder_configreturns the configuration in use for the validator.POST /eth/v1/validator/{pubkey}/builder_configreplaces and persists the full configuration on a per-validator basis. It does not merge with the previous entry.DELETE /eth/v1/validator/{pubkey}/builder_configremoves the stored entry, so the validator inherits the global configuration again.The API stores per-validator entries under
validator_configsinbuilder_definitions.yml.Changes made by
POSTandDELETEapply to subsequent builder preference publication and Gloas block production without a restart.Closes #9796
Additional Info
This PR is stacked on #9807 and should be reviewed after it.