Adds a filter to get functions/modifiers that have declarer contract with the given name.
Last updated 4 months ago
with_declarer_contract_name(name: str, sensitivity: bool = True) →
with_declarer_contract_name(
name: str, sensitivity: bool = True
) →
from glider import * def query(): functions = Functions().with_declarer_contract_name("OFTCoreUpgradeable").exec(10) return functions
from glider import * def query(): functions = Modifiers().with_declarer_contract_name("Ownable").exec(10) return functions
Callables