Contracts.with_function_name_not()
Adds a filter to get contracts that don't have any function with the given name.
Query Example
from glider import *
def query():
contracts = Contracts().with_function_name_not('transfer').exec(1,1)
functions = contracts.functions().exec()
for function in functions:
print(function.name)
return contractsOutput Example

Last updated