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

# TokenMintEventData

> Payload for a mint event inside the TokenLifecycleEventData union.

### TypeScript shape

```ts theme={null}
interface TokenMintEventData {
  amount: string;
  totalSupply: string | null;
  circulatingSupply: string | null;
}
```

<ResponseField name="amount" type="String!">Amount of tokens minted (raw on-chain value, no decimal shift).</ResponseField>
<ResponseField name="totalSupply" type="String">New total supply after the mint. Null when the token's supply is unknown.</ResponseField>
<ResponseField name="circulatingSupply" type="String">New circulating supply after the mint. Null when unknown.</ResponseField>

Member of the [TokenLifecycleEventData](/api-reference/graphql/types/TokenLifecycleEventData) union. Returned as `data.__typename = "TokenMintEventData"` when `eventType` is `MINT` on a [TokenLifecycleEvent](/api-reference/graphql/types/TokenLifecycleEvent).
