Callables.with_signature()
Functions Example
from glider import *
def query():
# Retrieve all functions with the signature `transferFrom(address,address,uint256)`
functions = Functions().with_signature("transferFrom(address,address,uint256)").exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated