ArgumentPoints.with_name()
Returns the list of ArgumentPoints having specified name.
Query Example
from glider import *
def query():
functions = (
Functions()
.with_name("transfer")
.exec(1)
)
arguments = functions[0].arguments()
print(arguments.with_name("_amount").source_code())
return functionsOutput Example

Last updated