Update EIP-8250: Define keyed mempool concurrency - #12039
Open
soispoke wants to merge 1 commit into
Open
Conversation
Collaborator
|
✅ All reviewers have approved. |
Contributor
Author
|
@nerolation @lightclient @yoavw I think this is a good way to lift the 1 txn per sender rule while still prevent dos and mass invalidation attacks |
soispoke
marked this pull request as ready for review
July 30, 2026 16:42
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.
EIP-8250 gives frame transactions independent replay domains, but the current public mempool section retains EIP-8141's limit of one pending frame transaction per sender. This leaves shared sender designs serialized and does not define how clients should handle overlapping key sets.
This PR defines a narrow optional exception:
(sender, nonce_key)ownership, current sequences, and exact identity replacement;The change affects public mempool policy only. It does not change transaction validity, nonce consumption, frame execution, or fee settlement. All EIP-8141 payer, paymaster, dependency, revalidation, and eviction rules remain in force.
With individual key ownership, one included transaction can invalidate at most
len(nonce_keys) <= MAX_NONCE_KEYSlocally pending transactions through nonce overlap.