Pendle · Schema

PtCrossChainData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
hubPtChainId number Hub PT chain ID
hubPtAddress string Hub PT address
spokePts array Spoke PTs
View JSON Schema on GitHub

JSON Schema

PtCrossChainData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PtCrossChainData",
  "type": "object",
  "properties": {
    "hubPtChainId": {
      "type": "number",
      "description": "Hub PT chain ID"
    },
    "hubPtAddress": {
      "type": "string",
      "description": "Hub PT address"
    },
    "spokePts": {
      "description": "Spoke PTs",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SpokePtData"
      }
    }
  },
  "required": [
    "hubPtChainId",
    "hubPtAddress",
    "spokePts"
  ]
}