# tokens **Type:** GraphQL queries **Description:** Retrieve a paginated list of all tokens deployed on the Kadena network, excluding the native `coin` token. This query returns both fungible tokens and non-fungible token contracts (currently limited to `marmalade` and `marmalade-v2`), providing basic metadata such as the token’s name, deployment chain, and contract address. It is commonly used by explorers, indexers, and dApps to discover tokens deployed on-chain, list available assets, or build token selection interfaces. The results are network-wide and not limited to a specific module or account. ## Arguments - after (String): Cursor to start paginating **after** a specific result. Used for forward pagination. - before (String): Cursor to start paginating **before** a specific result. Used for backward pagination. - first (Int): Maximum number of tokens to return when paginating forward. - last (Int): Maximum number of tokens to return when paginating backward. ## Response **Type:** QueryTokensConnection **Description:** undefined ### Fields - edges (QueryTokensEdge) - pageInfo (PageInfo)