> ## 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.

# LaunchpadTokenEventPayload

> Single launchpad subscription payload containing either one update or one removal.

### TypeScript shape

```ts theme={null}
interface LaunchpadTokenEventPayload {
  update: LaunchpadTokenEventOutput | null;
  removeToken: LaunchpadRemoveTokenOutput | null;
}
```

<ResponseField name="update" type="LaunchpadTokenEventOutput">Normal launchpad token update. Present when the token still belongs in the subscription view.</ResponseField>
<ResponseField name="removeToken" type="LaunchpadRemoveTokenOutput">Token removal notification. Present when the token left the subscription view and should be removed locally.</ResponseField>
