We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Solidity compiler at version 0.5.11 added a internalType field in the abi inputs/outputs.
internalType
This field contains the type as declared in the solidity code, this is useful to determine the actually struct type of a tuple. for exmaple:
{ "components": [ { "components": [..] "internalType": "struct Pairing.G1Point", "name": "A", "type": "tuple" } ], "internalType": "struct Verifier.Proof", "name": "proof", "type": "tuple" }
The text was updated successfully, but these errors were encountered:
Add optional field internalType to Param (#231)
f063fc9
Add `internalType` field to `Param`. - Closes #230
Successfully merging a pull request may close this issue.
Solidity compiler at version 0.5.11 added a
internalType
field in the abi inputs/outputs.This field contains the type as declared in the solidity code, this is useful to determine the actually struct type of a tuple.
for exmaple:
The text was updated successfully, but these errors were encountered: