Skip to main content
Subscriptions use the WebSocket endpoint wss://api.mobula.io/graphql/subscriptions with the graphql-transport-ws protocol.

Returns

onLaunchpadTokenEvent
LaunchpadTokenEventOutput!
One launchpad event per push. See LaunchpadTokenEventOutput.

Arguments

input
OnLaunchpadTokenEventInput!
required
See OnLaunchpadTokenEventInput.

Example

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