Contracts.with_event_name()
Adds a filter to get contracts that have an event with the given name.
Query Example
from glider import *
def query():
contracts = Contracts().with_event_name('Modified').exec(1)
events = contracts[0].events()
for event in events:
print(event.signature)
return contractsOutput Example

Last updated