Pendle · Schema

TokenInfoResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
chainId number
address string
decimals number
name string
symbol string
logoURI string
tags array
extensions object
View JSON Schema on GitHub

JSON Schema

TokenInfoResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenInfoResponse",
  "type": "object",
  "properties": {
    "chainId": {
      "type": "number"
    },
    "address": {
      "type": "string"
    },
    "decimals": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "logoURI": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "extensions": {
      "type": "object"
    }
  },
  "required": [
    "chainId",
    "address",
    "decimals",
    "name",
    "symbol",
    "logoURI",
    "tags",
    "extensions"
  ]
}