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