Callables.with_one_of_the_names()
Functions Example
from glider import *
def query():
# Retrieve all functions that are named `sendMessage` and `totalSupply`
functions = Functions().with_one_of_the_names(["sendMessage", "totalSupply"]).exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated