Returns the list of all structs of the contract.
Last updated 1 month 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