Skip to main content
Subscriptions use wss://graphql.mobula.io/graphql with the graphql-transport-ws protocol. wss://graphql.mobula.io/graphql/subscriptions is also supported for backwards compatibility.

Returns

onLaunchpadTokenEventBatch
LaunchpadTokenEventBatchOutput!
Batch payload with normal token updates in updates and explicit removals in removeTokens.

Arguments

input
OnLaunchpadTokenEventBatchInput!
required
See OnLaunchpadTokenEventBatchInput. Unlike onLaunchpadTokenEvent, there is no per-token address filter — batches are scoped to protocol / launchpad name / network.

Example

subscription OnLaunchpadTokenEventBatch {
  onLaunchpadTokenEventBatch(input: { protocols: [Pump, RaydiumLaunchpad], eventType: Migrated }) {
    updates {
      address
      networkId
      protocol
      launchpadName
      eventType
      price
      holders
      token { id symbol name }
    }
    removeTokens {
      address
      networkId
      protocol
      launchpadName
      reason
    }
  }
}