-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EIP-7702 devnet-3 readiness #3581
Merged
Merged
Changes from 33 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
2f26e9d
tx: implement strict 7702 validation
jochem-brouwer f59b5a0
vm: update 7702 tx validation
jochem-brouwer 5d8ba39
evm: update 7702 [no ci]
jochem-brouwer 4a20346
tx: add / fix 7702 tests
jochem-brouwer 5e8e756
Merge branch 'master' into 7702-update
jochem-brouwer ad3effb
vm: fix test encoding of authorization lists [no ci]
jochem-brouwer f6da2c4
Merge branch 'master' into 7702-update
jochem-brouwer f8950b8
vm: correctly put authority nonce
jochem-brouwer 842db9d
vm: add test 7702 extcodehash/extcodesize
jochem-brouwer 0b6692f
vm: expand extcode* tests 7702 [no ci]
jochem-brouwer 6136308
Merge branch 'master' into 7702-update
jochem-brouwer 7a01e81
tx/vm: update tests [no ci]
jochem-brouwer 0310175
evm/vm: update opcodes and fix tests 7702
jochem-brouwer 81d2da2
Merge branch 'master' into 7702-update
jochem-brouwer d773d2b
fix cspell [no ci]
jochem-brouwer d4d3100
vm: get params from tx for 7702 [no ci]
jochem-brouwer 0fa00d3
vm: 7702 correctly apply the refund [no ci]
jochem-brouwer 1a21f86
vm: 7702: correctly handle self-sponsored txs [no ci]
jochem-brouwer 6162957
tx: throw if authorization list is empty
jochem-brouwer 2043d1e
vm: requests do not throw if code is non-existant
jochem-brouwer 9bd46ad
evm: ensure correct extcodehash reporting if account is delegated to …
jochem-brouwer a617c3b
Merge branch 'master' into 7702-update
jochem-brouwer d4f9c60
vm: 7702 ensure delegated accounts are not deleted [no ci]
jochem-brouwer d26ddb3
Merge branch 'master' into 7702-update
jochem-brouwer a41ef16
evm: 7702 correctly check for gas on delegated code
jochem-brouwer 30072e2
evm: add verkle gas logic for 7702
jochem-brouwer 33b8523
vm/tx: fix 7702 tests
jochem-brouwer 5b4313a
tx: throw if 7702-tx has no `to` field
jochem-brouwer 07793c7
vm/tx: fix 7702 tests
jochem-brouwer 2f0d1ab
VM: exit early on non-existing system contracts
jochem-brouwer ec85a45
7702: add delegated account to warm address
jochem-brouwer 8b0cc5c
vm: requests do restore system account
jochem-brouwer e710e78
7702: continue processing once auth ecrecover is invalid
jochem-brouwer 8cc5755
evm/vm: add 7702 delegation constant
jochem-brouwer 21f1de1
Merge branch 'master' into 7702-update
jochem-brouwer 6325bc3
vm: fix requests
jochem-brouwer 0d77c3f
Merge branch 'master' into 7702-update
jochem-brouwer 4287e95
vm: unduplify 3607 error msg
jochem-brouwer aed93cd
Merge remote-tracking branch 'origin/master' into 7702-update
acolytec3 ea9f88d
Merge branch 'master' into 7702-update
acolytec3 88dfdd0
fix example
acolytec3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we make a constant out of
0xef0100
and call itDELEGATION_DESIGNATOR
or whatever is the best way to refer to this instead of a magic number?