-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
compile-tab: add evmVersion #1998
compile-tab: add evmVersion #1998
Conversation
8aa03d7
to
d8ff2dd
Compare
To my knowledge, the only things this patch is missing is for a version of Regarding the CircleCI browser test failure ( |
d8ff2dd
to
6312a0a
Compare
@scottt just rebasing |
Specifying a specific EVM version for `solc` to target is useful when targetting older private chains deployments with the latest compiler. This work in progress patch adds an "EVM Version" drop down menu in the compiler tab. This patch depends on ethereum/remix#1193 in `remix-solidity` to pass down the `evmVersion` option.
6312a0a
to
e03a46b
Compare
Thanks for this PR ;) |
@yann300 thanks for reviewing and merging the patch! Does the "Release (automation) moved this from approved (for the Tuesday release) to Done" message mean that I can expect to see this change live on http://remix-alpha.ethereum.org on June 18? |
that should show up in remix-alpha anytime soon (like today) |
Specifying a specific EVM version for
solc
to targetis useful when targetting older private chains deployments
with the latest compiler.
This work in progress patch adds an "EVM Version" drop down menu
in the compiler tab.
This patch depends on ethereum/remix#1193
in
remix-solidity
to pass down theevmVersion
option.