Callables.with_address()

Adds a filter to get functions/modifiers associated with the given address.

Query Example

from glider import *


def query():
    functions = (
        Functions()
        .with_name("swapTokens")
        .with_address("0x4186829914d1b7b130b5153f4aabd21142e8e658")
        .exec(1)
    )

    return functions

Example Output

Last updated