change builder withdrawal prefix from 0x03 to 0xB0 - #789
Merged
Conversation
BUILDER_WITHDRAWAL_PREFIX changed to 0xB0 in ethereum/consensus-specs#5416 (v1.7.0-alpha.12). Updates the prefix in the fork-transition simulation, builder onboarding projection, deposit handlers/filters, templates and the deposit generator UI. Cred-type filters now accept 0,1,2,0xB0.
pk910
approved these changes
Jul 6, 2026
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.
BUILDER_WITHDRAWAL_PREFIXchanged from0x03to0xB0in ethereum/consensus-specs#5416 (lands in v1.7.0-alpha.12, targeted by glamsterdam-devnet-7).This updates every place dora classifies builder credentials by prefix:
indexer/beacon/statetransition/fork.go+services/chainservice_builder_onboarding.goconstants (fork-transition builder onboarding simulation and projection)indexer/beacon/pendingvalidators.go) and deposit handlers (queued/included/initiated/deposits)db/deposits.go,services/chainservice_deposits.go) and credentials formatting (utils/format.go)0,1,2,176(0xB0); validators/included_deposits filter dropdowns updated03→b0, gating contract deposit typeEPBS0x03→0xb0, builder deposit-data validation checks0xB0The deposit-domain constant
0x03000000(DOMAIN_DEPOSIT) and the EIP-8282 deposit request type0x03are different namespaces and are untouched.go build ./...,go teston touched packages, andtsc --noEmit(no new errors vs base) all pass.