-
Notifications
You must be signed in to change notification settings - Fork 539
Update evm and Cancun support #1588
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
Merged
boundless-forest
merged 15 commits into
polkadot-evm:master
from
moonbeam-foundation:tarekkma/update-evm-version
Jan 21, 2025
Merged
Update evm and Cancun support #1588
boundless-forest
merged 15 commits into
polkadot-evm:master
from
moonbeam-foundation:tarekkma/update-evm-version
Jan 21, 2025
Conversation
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
* use Cancun config * feat: support transient storage (EIP-1153) * Update evm dependency * Adds a new opcode (MCOPY) for copying memory * feat: support cancun selfdestruct changes (EIP-6780) --------- Co-authored-by: Agusrodri <[email protected]> Co-authored-by: Ahmad Kaouk <[email protected]>
RomarQ
reviewed
Jan 14, 2025
Collaborator
|
The reason for some calls to be cheaper in this PR is the new Context: https://soliditylang.org/blog/2024/03/14/solidity-0.8.25-release-announcement/ |
RomarQ
approved these changes
Jan 16, 2025
Collaborator
|
@boundless-forest @koushiro could you guys also have a look at the changes in this PR? |
Closed
boundless-forest
approved these changes
Jan 20, 2025
8 tasks
l0r1s
pushed a commit
to opentensor/frontier
that referenced
this pull request
May 19, 2025
* update evm version * Cancun support (polkadot-evm#206) * use Cancun config * feat: support transient storage (EIP-1153) * Update evm dependency * Adds a new opcode (MCOPY) for copying memory * feat: support cancun selfdestruct changes (EIP-6780) --------- Co-authored-by: Agusrodri <[email protected]> Co-authored-by: Ahmad Kaouk <[email protected]> * style: formatting * style: fix clippy errors * style: fix issues * revert: test * fix: solidity pragma * fix: fix tests * fix: fix tests * fix gas tests * test:update gas estimation result * use crates.io version * remove Suicided storage and all related items * Remove SuicideQuickClearLimit configuration from EVM precompile and related modules --------- Co-authored-by: Rodrigo Quelhas <[email protected]> Co-authored-by: Agusrodri <[email protected]> Co-authored-by: Ahmad Kaouk <[email protected]> Co-authored-by: Rodrigo Quelhas <[email protected]>
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.
The behavior of self-destruct has changed in this upgrade. Ensure all Suicided storage is cleaned. Refer to Moonbeam's implementation for guidance: Moonbeam PR #2561.