> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callables/callables.with_address.md).

# Callables.with\_address()

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

## Query Example

```python
from glider import *


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

    return functions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FH6rU1dfbeaXDpcut583h%2FScreenshot%202025-09-17%20at%201.06.56%E2%80%AFPM.png?alt=media&amp;token=6fd1d092-7b7d-47a3-99b8-18489859ac3c" alt=""><figcaption></figcaption></figure>
