Callable.address()

Returns the address of the function/modifier.

address() → str

Query Example

from glider import *

def query():
  functions = Functions().with_name("transferFrom").exec(2)
  
  for function in functions:
    print(function.address())

  return functions

Output Example

Last updated