Returns the address of the function/modifier.
Last updated 1 month ago
address() → str
from glider import * def query(): functions = Functions().with_name("transferFrom").exec(2) for function in functions: print(function.address()) return functions