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

Last updated