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

# TokenLifecycleEventType

> Discriminator for a TokenLifecycleEvent — whether the event is a mint or a burn.

### TypeScript shape

```ts theme={null}
type TokenLifecycleEventType =
  | 'MINT'
  | 'BURN';
```

<ResponseField name="MINT" type="enum">New tokens were minted (e.g. ERC-20 `Transfer(from = 0x0)` or SPL `mintTo`).</ResponseField>
<ResponseField name="BURN" type="enum">Tokens were burned (e.g. ERC-20 `Transfer(to = 0x0)` or SPL `burn`).</ResponseField>
