Adds a filter to get contracts that have a function with the given name.
Last updated 7 days ago
with_function_name(name: str, sensitivity: bool = True) -> Contracts
with_function_name(name: str, sensitivity: bool = True) ->
Contracts
from glider import * def query(): contracts = Contracts().with_function_name('receive').exec(1) functions = contracts.functions().exec() for function in functions: print(function.name) return contracts