Event.signature

Returns the signature of the event.

property signature: str

Example

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

Last updated