Returns
Paginated list of events for the maker. See EventConnection.Show View fields (EventConnection)
List of events. See
Event.
Arguments
query
MakerEventsQueryInput!
required
Max events per page. Clamped to [1, 100]. Default 50.
Pagination cursor from previous response.
Example
query GetTokenEventsForMaker {
getTokenEventsForMaker(
query: {
maker: "0xb5cb055ef65f6d2b0ed89673cb6e39e08fde7fa2"
networkId: 56
eventType: Swap
timestamp: { from: 1746000000, to: 1746086400 }
priceUsdTotal: { gte: 100 }
}
limit: 50
direction: DESC
) {
cursor
items {
id
eventType
timestamp
transactionHash
data {
__typename
... on SwapEventData { priceUsd priceUsdTotal }
}
}
}
}
Playground