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

# AddTokenLifecycleEventsOutput

> Wrapper payload returned by the onTokenLifecycleEventsCreated subscription. Carries a batch of mint/burn events.

### TypeScript shape

```ts theme={null}
interface AddTokenLifecycleEventsOutput {
  id: string;
  events: TokenLifecycleEvent[];
}
```

<ResponseField name="id" type="String!">
  Subscription scope id. `tokenAddress:networkId` for a token-scoped sub (e.g. `0xc02aaa39…:1`); `*:networkId` for a network-firehose sub.
</ResponseField>

<ResponseField name="events" type="[TokenLifecycleEvent!]!">
  Mint/burn events in this batch. See [TokenLifecycleEvent](/api-reference/graphql/types/TokenLifecycleEvent).
</ResponseField>
