EIP-8282 Add builder execution requests - #10849
Merged
StefanBratanov merged 7 commits intoJun 18, 2026
Merged
Conversation
StefanBratanov
marked this pull request as ready for review
June 18, 2026 09:47
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 1fda6f8. Configure here.
zilm13
approved these changes
Jun 18, 2026
zilm13
left a comment
Contributor
There was a problem hiding this comment.
good work, just few nits
- specrefs are broken
| if (!miscHelpersGloas.isExecutionRequestsRootMatchingLatestExecutionPayloadBid( | ||
| parentState, parentExecutionRequests)) { | ||
| if (miscHelpersGloas.isBidBuildingOnFullParent(parentState, executionPayloadBid)) { | ||
| if (!parentExecutionRequests |
Contributor
There was a problem hiding this comment.
helper there was ok by I'd change its name to something way shorter
Contributor
Author
There was a problem hiding this comment.
yeah, agree, added one
StefanBratanov
merged commit Jun 18, 2026
67fdabf
into
Consensys-Incorporated:glamsterdam-devnet-6
59 checks passed
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
ethereum/consensus-specs#5359 + some small nits
Fixed Issue(s)
N/A
Documentation
doc-change-requiredlabel to this PR if updates are required.Changelog
Note
High Risk
Changes consensus state transition, fork upgrade builder onboarding, and execution-request gossip validation on Gloas; incorrect handling would fork or reject valid blocks.
Overview
Implements EIP-8282 by processing builder deposits and exits as first-class
BuilderDepositRequest/BuilderExitRequestlists on Gloas execution payloads, instead of inferring new builders from genericDepositRequestentries or exiting builders via voluntary exits on flagged validator indices.applyParentExecutionPayloadnow runs the new processor methods after Electra-style deposit/withdrawal/consolidation handling.ExecutionRequestsProcessorGloasis simplified: it no longer overridesprocessDepositRequestswith builder credential routing and batch BLS verification; builder registry updates useDomain.BUILDER_DEPOSITsignatures andaddBuilderToRegistry, while exits validate active builder, source address, and zero pending withdrawal beforeinitiateBuilderExit.Voluntary exit handling is aligned with validators only:
VoluntaryExitValidatorGloasis removed, Gloas/Heze useVoluntaryExitValidatorElectra,BlockProcessorGloasno longer overridesinitiateExit, and the RESTpostVoluntaryExitpath drops the builder-index shortcut. Fork onboarding from pending deposits still exists as a one-time path but credits existing builders or registers new ones with explicit deposit signature checks.Supporting updates include
DOMAIN_INCLUSION_LIST_COMMITTEE0x0F, renamed bid/parent helpers (isBidBuildingOnFullParent,isDefault()for empty requests), gossip validation usingPredicatesGloasfor active builders, and test fixtures defaulting random execution requests to empty builder request lists.Reviewed by Cursor Bugbot for commit 347b4b3. Bugbot is set up for automated code reviews on this repo. Configure here.