Callables.with_name_suffixes()
Functions Example
from glider import *
def query():
# Retrieve the functions that have `Flashloan` or `cast` as suffix
functions = Functions().with_name_suffixes(["Flashloan", "cast"]).exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated