Pendle · Schema

MarketTokensResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
tokensMintSy array tokens can be use for tokenMintSy
tokensRedeemSy array tokens can be use for tokenRedeemSy
tokensIn array input tokens of swap or zap function
tokensOut array output tokens of swap or zap function
View JSON Schema on GitHub

JSON Schema

MarketTokensResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketTokensResponse",
  "type": "object",
  "properties": {
    "tokensMintSy": {
      "description": "tokens can be use for tokenMintSy",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "tokensRedeemSy": {
      "description": "tokens can be use for tokenRedeemSy",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "tokensIn": {
      "description": "input tokens of swap or zap function",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "tokensOut": {
      "description": "output tokens of swap or zap function",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "tokensMintSy",
    "tokensRedeemSy",
    "tokensIn",
    "tokensOut"
  ]
}