Skip to content
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

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft

Add builtin erc7201 #15968

wants to merge 3 commits into from

Conversation

matheusaaguiar
Copy link
Collaborator

part of #15727.

{
case FunctionType::Kind::ERC7201:
{
solAssert(_functionCall.arguments().size() == 1);
Copy link
Member

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?

Copy link
Collaborator Author

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))) &
Copy link
Member

@r0qs r0qs Mar 26, 2025

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?

Copy link
Collaborator Author

@matheusaaguiar matheusaaguiar Mar 26, 2025

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants