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

# LatestTokenConnection

> Response returned by `getLatestTokens`.

<div data-generated>
  ## GraphQL

  ```
  type LatestTokenConnection {
    items: [LatestToken!]!
  }

  type LatestTokenSimResults {
    buySuccess: Boolean
    buyTax: String
    buyGasUsed: String
    maxBuyAmount: String
    sellSuccess: Boolean
    sellTax: String
    sellGasUsed: String
    maxSellAmount: String
    canTransferOwnership: Boolean
    canRenounceOwnership: Boolean
    isOwnerRenounced: Boolean
    openTradingCall: String
  }

  type LatestToken {
    id: String!
    tokenAddress: String!
    networkId: Int!
    blockNumber: Int!
    transactionIndex: Int!
    traceIndex: Int!
    transactionHash: String!
    blockHash: String!
    timeCreated: Int!
    creatorAddress: String!
    creatorBalance: String!
    tokenName: String!
    totalSupply: String!
    tokenSymbol: String!
    decimals: Int!
    simulationResults: [LatestTokenSimResults!]!
  }
  ```

  ### Used By

  **Returned by**

  * [getLatestTokens](/api-reference/queries/getlatesttokens.md) *(deprecated)*: Returns a list of latest tokens.
</div>
