Adds a filter to get contracts that are main.
Last updated 4 months ago
mains() →
The engine marks the contract as main, that is the one being executed on the deployed address
from glider import * def query(): main_contracts = Contracts().mains().exec(5) return main_contracts
Contracts