> 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.signature.md).

# Event.signature

Returns the signature of the event.

*`property`*` ``signature:`` `*`str`*

## 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 events, print the event signature
      print(event.signature)

  return []
```

## Example output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FDuIEOy0llbyBzKkxgVf5%2FScreenshot%202025-08-14%20at%201.46.31%E2%80%AFPM.png?alt=media&amp;token=6523067c-e4e8-4055-b4b3-cedeab74b31a" alt=""><figcaption></figcaption></figure>
