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

# Enum.address

Returns the address of the enum.

*`property`*` ``address:`` `*`str`*

## Query Example

```python
from glider import *

def query():
    contracts = Contracts().exec(1, 71)

    for enum in contracts[0].enums().exec():
      print(enum.address)

    return []
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FWR1Xekazhk2oLxkn2T3Y%2FScreenshot%202025-07-25%20at%205.10.34%E2%80%AFPM.png?alt=media&amp;token=fd76c973-93c1-4789-b5e0-d98efc18f49a" alt=""><figcaption></figcaption></figure>
