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

# LaunchpadRemoveTokenOutput

> Token removal notification emitted by launchpad subscriptions.

### TypeScript shape

```ts theme={null}
interface LaunchpadRemoveTokenOutput {
  address: string;
  networkId: number;
  protocol: string | null;
  launchpadName: string | null;
  reason: string;
}
```

<ResponseField name="address" type="String!">Token contract address that left the current subscription view.</ResponseField>
<ResponseField name="networkId" type="Int!">Chain id.</ResponseField>
<ResponseField name="protocol" type="String">Launchpad protocol id associated with the token when it left the view.</ResponseField>
<ResponseField name="launchpadName" type="String">Launchpad factory display name associated with the token when it left the view.</ResponseField>
<ResponseField name="reason" type="String!">Machine-readable removal reason, for example `LEFT_SUBSCRIPTION_VIEW`.</ResponseField>
