chore: Widen Block Access List index to uint32 (EIP-7928)#20679
Merged
taratorio merged 6 commits intoerigontech:mainfrom Apr 22, 2026
Merged
chore: Widen Block Access List index to uint32 (EIP-7928)#20679taratorio merged 6 commits intoerigontech:mainfrom
taratorio merged 6 commits intoerigontech:mainfrom
Conversation
yperbasis
previously requested changes
Apr 20, 2026
3454a2a to
cb725ba
Compare
Contributor
Author
Done. |
98870bb to
936b26e
Compare
taratorio
reviewed
Apr 21, 2026
936b26e to
211eb69
Compare
taratorio
approved these changes
Apr 22, 2026
Member
taratorio
left a comment
There was a problem hiding this comment.
will merge this in to main once I update the tests to point to bal-devnet-4 fixtures
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.
Updates the Block Access List index type from
uint16touint32across the entire stack to future-proof the BAL for higher gas limits (300M+) andEIP-2780compatibility. The current uint16 index caps out at65,535entries per block, which is insufficient once gas limits scale beyond current levels. Widening touint32eliminates this ceiling entirely, ensuring the BAL remains viable without further type migrations as the protocol evolves.Spec Change Refrence: ethereum/execution-specs#2713
EIP Change Refrence: ethereum/EIPs#11535