Returns the list of ArgumentPoints having specified type.
Last updated 7 months ago
with_type(arg_type: str) → []
with_type(arg_type: str) →
[
]
from glider import * def query(): functions = ( Functions() .with_name("transferFrom") .exec(1) ) arguments = functions[0].arguments() print(arguments.with_type("address").source_code()) return functions
APIList
ArgumentPoint