Returns the list of arguments of the error.
property args: List[Dict]
property
args:
List[Dict]
from glider import * def query(): contracts = Contracts().exec(1, 466) for contract in contracts: for error in contract.errors().exec(): print(error.args) return []
[ { "print_output": [ "[ { 'type': { 'type': 'elementary', 'name': 'address' }, 'name': 'addr' }, { 'type': { 'type': 'elementary', 'name': 'uint256' }, 'name': 'balance' } ]" ] } ]
Last updated 2 months ago