Pendle · Schema

PtCrossChainMetadataResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
pairedTokensOut array Array of token addresses that the PT can be swapped to
ammAddress string The address of the AMM
View JSON Schema on GitHub

JSON Schema

PtCrossChainMetadataResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PtCrossChainMetadataResponse",
  "type": "object",
  "properties": {
    "pairedTokensOut": {
      "description": "Array of token addresses that the PT can be swapped to",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ammAddress": {
      "type": "string",
      "description": "The address of the AMM"
    }
  },
  "required": [
    "pairedTokensOut"
  ]
}