-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add support for solc 0.8.21
#5436
Comments
fyi @Evalir need to build and publish new svm-rs |
on it chief |
For anyone interested, I also added support for dapptools already dapphub/dapptools#987 |
For anyone interested in the new event-selecting feature, there is an unfortunate ICE in Solidity due to NatSpec parsing: ethereum/solidity#14430. For anyone who wants to use that feature and compiles with a mode that requires NatSpec parsing need to wait for solc // SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
contract X {
event E();
}
contract C {
function g() public {
emit X.E();
}
} |
https://github.com/ethereum/solidity/releases/tag/v0.8.21
The text was updated successfully, but these errors were encountered: