> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# TokenLifecycleEventConnection

> Response returned by `tokenLifecycleEvents`.

<div data-generated>
  ## GraphQL

  ```
  type TokenLifecycleEventConnection {
    items: [TokenLifecycleEvent]!
    cursor: String
  }

  enum TokenLifecycleEventType {
    MINT
    BURN
  }

  type TokenBurnEventData {
    amount: String!
    totalSupply: String
    circulatingSupply: String
  }

  type TokenMintEventData {
    amount: String!
    totalSupply: String
    circulatingSupply: String
  }

  union TokenLifecycleEventData = TokenBurnEventData | TokenMintEventData

  type TokenLifecycleEvent {
    tokenAddress: String!
    networkId: Int!
    blockHash: String!
    blockNumber: Int!
    id: String!
    logIndex: Int!
    maker: String
    timestamp: Int!
    transactionHash: String!
    transactionIndex: Int!
    eventType: TokenLifecycleEventType!
    data: TokenLifecycleEventData!
  }
  ```

  ### Used By

  **Returned by**

  * [tokenLifecycleEvents](/api-reference/queries/tokenlifecycleevents.md) *(deprecated)*: Returns a list of token lifecycle events.
</div>
