taco-web
taco-web copied to clipboard
Support human-redeable ABI format in `ContractCondition.functionAbi`
- Support function signatures of the form
myFunction(address, uint256):uint256in addition to JSON ABI format - Provides less verbose
functionAbiinterface
I've sometimes seen this notation myFunction(address, uint256):(uint256, bool) that allows you to specify multiple output types
ethers refers to this notation as Human-Readable ABI format
Note that any addition here that is different from the JSON ABI format will need an associated change in nucypher for the nodes to appropriately handle it.