For the complete documentation index, see llms.txt. This page is also available as Markdown.
Callable.address()
Returns the address of the function/modifier.
address() → str
Query Example
from glider import*defquery(): functions =Functions().with_name("transferFrom").exec(2)for function in functions:print(function.address())return functions