Returns the list of all pragmas of the contract.
Last updated 7 days ago
pragmas() β List[Tuple[str, str]]
from glider import * def query(): contracts = Contracts().exec(5) for contract in contracts: print(contract.pragmas()) return contracts