Adds a filter to get contracts that have at least one function from the given names.
Last updated 4 months ago
with_one_of_the_function_names(names: List[str], sensitivity: bool = True) →
from glider import * def query(): contracts = Contracts().with_one_of_the_function_names(["deposit", "withdraw"]).exec(1,1) functions = contracts.functions().exec() for function in functions: print(function.name) return contracts
Contracts