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

# Event.address

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

## Query Example

```python
from glider import *


def query():
  # Find contracts with the suffix "ERC20"
  contracts = Contracts().with_name_suffix("ERC20").exec(100)

  for c in contracts:
    for event in c.events().exec():
      # For each contract's event, print the event address
      print(event.address)

  return []
```

## Example Output

<figure><img src="/files/5eUVnwIIrvJASvT3JUEv" alt=""><figcaption></figcaption></figure>
