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
There are a few lingering properties in the ABI spec that would be nice to use directly through the Contract classes.
ContractFunction - stateMutability, payable and outputs ContractEvent - anonymous
stateMutability
payable
outputs
anonymous
For example, contract.functions.myFunc.abi["stateMutability"] != "payable" would also be available as contract.functions.myFunc.state_mutability.
contract.functions.myFunc.abi["stateMutability"] != "payable"
contract.functions.myFunc.state_mutability
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What feature should we add?
There are a few lingering properties in the ABI spec that would be nice to use directly through the Contract classes.
ContractFunction -
stateMutability
,payable
andoutputs
ContractEvent -
anonymous
For example,
contract.functions.myFunc.abi["stateMutability"] != "payable"
would also be available ascontract.functions.myFunc.state_mutability
.The text was updated successfully, but these errors were encountered: