Returns the ChainID of the blockchain where the Contract was deployed.
Last updated 1 month ago
chain_id() → int
from glider import * def query(): contracts = Contracts().exec(5) for contract in contracts: print(contract.chain_id()) return contracts