Add EVM access-list support - #5445
Open
mpapierski wants to merge 3 commits into
Open
mpapierski wants to merge 3 commits into
mpapierski wants to merge 3 commits into
Conversation
Preserve EIP-2930 access-list entries through Ethereum decoding, signature reconstruction, JSON, and Casper binary serialization. Append the new binary fields so older transactions continue to decode. Expose Prague intrinsic-gas calculation so node admission can account for the upfront cost introduced by an access list.
Translate access-list addresses and storage keys into the revm transaction environment so Prague execution applies intrinsic charges and warms the declared state. Cover EIP-2930, EIP-1559, and EIP-7702 transactions, including the observable storage-read gas reduction.
Account for access-list prepayments during node admission so a newly supported non-empty list cannot make revm reject the transaction during block execution. Return a dedicated binary-port error for the intrinsic-gas shortfall and document the access-list validation behavior.
mpapierski
added this pull request to stack #5447
September 23, 2026 14:24
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.
This PR adds end-to-end support for EVM transaction access lists.
Access lists let a transaction declare the accounts and storage keys it expects to use. The transaction pays the access-list cost upfront, and those entries are treated as warm during execution. This can reduce execution gas when the declared state is accessed enough to offset that upfront cost.
The change: