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

# LaunchpadTokenEventType

> Lifecycle event type for a launchpad token.

### TypeScript shape

```ts theme={null}
type LaunchpadTokenEventType =
  | 'Deployed'
  | 'Created'
  | 'Updated'
  | 'Completed'
  | 'Migrated'
  | 'UnconfirmedDeployed'
  | 'UnconfirmedMetadata'
  | 'UnconfirmedCompleted';
```

<ResponseField name="Deployed" type="enum">
  Token was just deployed on the launchpad — first event in its lifecycle.
</ResponseField>

<ResponseField name="Updated" type="enum">
  Token state changed on the launchpad (price, holders, fees, etc.) while still pre-graduation.
</ResponseField>

<ResponseField name="Migrated" type="enum">
  Token graduated off the launchpad (e.g. bonding-curve completed, liquidity migrated to a DEX pool).
</ResponseField>
