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

onLaunchpadTokenEvent
LaunchpadTokenEventPayload!
One launchpad payload per push. Exactly one of update or removeToken is populated.

Arguments

input
OnLaunchpadTokenEventInput!
required

Example

subscription OnLaunchpadTokenEvent {
  onLaunchpadTokenEvent(input: { protocol: Pump, eventType: Deployed }) {
    update {
      address
      networkId
      protocol
      launchpadName
      eventType
      price
      marketCap
      holders
      token { id symbol name }
    }
    removeToken {
      address
      networkId
      protocol
      launchpadName
      reason
    }
  }
}