Callables.with_arg_types()
Functions Example
from glider import *
def query():
# Retrieve the functions that have `uint256` and `address` as argument types
functions = Functions().with_arg_types(["uint256", "address"]).exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated