Callables.contracts()
Returns Contracts object for the contracts of the functions/modifiers.
Functions Example
from glider import *
def query():
# Retrieve the contracts of a list of functions
contracts = Functions().contracts().exec(100)
# Return the first five contracts
return contracts[:5]
Modifiers Example

Last updated