Skip to main content

TypeScript shape

interface OnLaunchpadTokenEventBatchInput {
  filters?: TokenFilters | null;
  rankings?: TokenRanking[] | null;
  phrase?: string | null;
  tokens?: string[] | null;
  excludeTokens?: string[] | null;
  limit?: number | null;
  offset?: number | null;
  updatePeriod?: number | null;
  protocol?: LaunchpadTokenProtocol | null;
  protocols?: LaunchpadTokenProtocol[] | null;
  launchpadProtocol?: string | null;
  launchpadProtocols?: string[] | null;
  networkId?: number | null;
  launchpadName?: string | null;
  launchpadNames?: string[] | null;
  eventType?: LaunchpadTokenEventType | null;
}
protocol
LaunchpadTokenProtocol
Single protocol filter. See LaunchpadTokenProtocol.
protocols
[LaunchpadTokenProtocol!]
Multi-protocol filter (OR semantics).
launchpadName
String
Filter by factory id from system-metadata (data.factories[].name). See LaunchpadTokenProtocol.
launchpadNames
[String!]
Multi-factory filter (OR semantics).
eventType
LaunchpadTokenEventType
Filter by event type. See LaunchpadTokenEventType.
networkId
Int
Filter by chain id.