You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Human-Readable ABI currently does not allow storage-class in a fragment, which may mean the signature cannot be directly copied from the Solidity.
For example, this should work fine:
const abi = [
"function foo(string memory bar)"
];
However, the memory and storage keywords are not supported by the parser. It is a simple state transition required when reading a space, to check in the same way the keyword indexed is processed, which can discard the name and revert the parser state back to allowName.
The text was updated successfully, but these errors were encountered:
The Human-Readable ABI currently does not allow storage-class in a fragment, which may mean the signature cannot be directly copied from the Solidity.
For example, this should work fine:
However, the
memory
andstorage
keywords are not supported by the parser. It is a simple state transition required when reading a space, to check in the same way the keywordindexed
is processed, which can discard the name and revert the parser state back toallowName
.The text was updated successfully, but these errors were encountered: