Tezos · Schema

TokenInfo

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
id integer Internal TzKT id (not the same as `tokenId`).
contract object Contract, created the token.
tokenId string Token id, unique within the contract.
standard string Token standard (either `fa1.2` or `fa2`).
totalSupply string Total number of existing tokens (raw value, not divided by `decimals`).
metadata object Token metadata. **[sortable]**
View JSON Schema on GitHub

JSON Schema

tokeninfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenInfo",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer",
      "description": "Internal TzKT id (not the same as `tokenId`).",
      "format": "int64"
    },
    "contract": {
      "description": "Contract, created the token.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Alias"
        }
      ]
    },
    "tokenId": {
      "type": "string",
      "description": "Token id, unique within the contract."
    },
    "standard": {
      "type": "string",
      "description": "Token standard (either `fa1.2` or `fa2`)."
    },
    "totalSupply": {
      "type": "string",
      "description": "Total number of existing tokens (raw value, not divided by `decimals`)."
    },
    "metadata": {
      "description": "Token metadata.  \n**[sortable]**",
      "nullable": true
    }
  }
}