Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mobula.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns

getTokenEventsForMaker
EventConnection!
Paginated list of events for the maker. See EventConnection.

Arguments

query
MakerEventsQueryInput!
required
Maker, network, and optional filters. See MakerEventsQueryInput.
limit
Int
Max events per page. Clamped to [1, 100]. Default 50.
cursor
String
Pagination cursor from previous response.
direction
RankingDirection
DESC (default) or ASC. See RankingDirection.

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