-
Notifications
You must be signed in to change notification settings - Fork 6k
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 builtin erc7201 #15968
base: develop
Are you sure you want to change the base?
Add builtin erc7201 #15968
Conversation
{ | ||
case FunctionType::Kind::ERC7201: | ||
{ | ||
solAssert(_functionCall.arguments().size() == 1); |
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.
Shouldn't we report an error instead?
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.
That is already checked in TypeChecker::typeCheckFunctionGeneralChecks
.
I think also it doesn't make sense to raise such error here.
But your question touches on something I am uncomfortable still in extending the ConstantEvaluator
, which is depending/assuming that analysis step already passed.
solAssert(argument); | ||
ASTString argStringLiteral = argument->valueWithoutUnderscores(); | ||
auto value = | ||
u256(keccak256(h256(u256(keccak256(argStringLiteral)) - 1))) & |
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.
Why the u256
conversion here? Isn't better to work with bytes and only convert everything to u256
when necessary?
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.
I have to check that but looks like probably those conversions can be skipped.
I just tentatively reconstructed from the solidity spec here.
At least the computed values from both versions (cpp and solidity) were matching in the test I did in remix.
part of #15727.