fix: update EVM version to cancun to resolve mcopy instruction error (#10)#30
Open
Tenerife-Q wants to merge 1 commit intoc2siorg:mainfrom
Open
fix: update EVM version to cancun to resolve mcopy instruction error (#10)#30Tenerife-Q wants to merge 1 commit intoc2siorg:mainfrom
Tenerife-Q wants to merge 1 commit intoc2siorg:mainfrom
Conversation
anurag-p6
reviewed
Mar 22, 2026
| optimizer_runs = 200 | ||
| via_ir = true | ||
| evm_version = "paris" | ||
| evm_version = "cancun" |
There was a problem hiding this comment.
this is already solved in #21 take a look
thank you.
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.
Summary
This Pull Request fixes Issue #10.
The Problem
Currently, running
forge testfails with anmcopy instruction error.Root Cause
This error occurs because the project's Solidity compiler (
v0.8.24) is modern enough to generate themcopyopcode, which was introduced in the Ethereum Cancun upgrade. However, the Foundry test environment's EVM version was not explicitly set, defaulting to an older version that does not recognize this new opcode.The Solution
This PR resolves the issue by explicitly setting
evm_version = "cancun"in thefoundry.tomlconfiguration file.Impact
This change unblocks all contributors who wish to run the smart contract test suite locally, improving the overall developer experience and enabling further testing.