> 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

*`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="/files/PmNRNuWSP9vu4GpAiXw6" alt=""><figcaption></figcaption></figure>
