Pendle · Schema

ChainIdSimplifiedData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
chainId number
sys array list of SY addresses
markets array list of market addresses
pts array list of PT addresses
yts array list of YT addresses
crossPts array list of cross chain pt data
View JSON Schema on GitHub

JSON Schema

ChainIdSimplifiedData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChainIdSimplifiedData",
  "type": "object",
  "properties": {
    "chainId": {
      "type": "number"
    },
    "sys": {
      "description": "list of SY addresses",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "markets": {
      "description": "list of market addresses",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "pts": {
      "description": "list of PT addresses",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "yts": {
      "description": "list of YT addresses",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "crossPts": {
      "description": "list of cross chain pt data",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CrossChainPtData"
      }
    }
  },
  "required": [
    "chainId",
    "sys",
    "markets",
    "pts",
    "yts",
    "crossPts"
  ]
}