Returns the list of all structs of the contract.
Last updated 7 days ago
structs() β Structs
structs() β
Structs
from glider import * def query(): contracts = Contracts().exec(1, 20) for contract in contracts: structs = contract.structs().exec() for struct in structs: print(struct.name) return contracts