> 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/struct/struct.address.md).

# Struct.address

Returns the address of the struct.

`property address: str`

## Query Example

```python
from glider import *


def query():
  contracts = Contracts().with_name("DefaultReserveInterestRateStrategy").exec(1)

  for contract in contracts:
    for struct in contract.structs().exec():
      print(struct.address)

  return contracts
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FVNjkFN5GMRuoy7ACRofE%2FScreenshot%202025-09-10%20at%205.03.49%E2%80%AFPM.png?alt=media&amp;token=d26faf87-56e8-49b1-b941-b68874e2145e" alt=""><figcaption></figcaption></figure>
