ExternalPoint.get_address()

Retrieves the address of the external point.

Query Example

from glider import *


def query():
    functions = (
        Functions()
        .with_name("transferFrom")
        .exec(1)
    )

    arguments = functions[0].arguments()
    print(arguments.list()[0].get_address())
    print(arguments.list()[0].source_code())

    return functions

Example Output

Last updated