Pendle · Schema

RedeemSyResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
method string Method name
contractCallParamsName array Contract call parameters name
contractCallParams array Contract call parameters
tx object Transaction data
tokenApprovals array
data object
View JSON Schema on GitHub

JSON Schema

RedeemSyResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RedeemSyResponse",
  "type": "object",
  "properties": {
    "method": {
      "type": "string",
      "description": "Method name"
    },
    "contractCallParamsName": {
      "description": "Contract call parameters name",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "contractCallParams": {
      "description": "Contract call parameters",
      "type": "array",
      "items": {
        "type": "array"
      }
    },
    "tx": {
      "description": "Transaction data",
      "allOf": [
        {
          "$ref": "#/components/schemas/TransactionDto"
        }
      ]
    },
    "tokenApprovals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TokenAmountResponse"
      }
    },
    "data": {
      "$ref": "#/components/schemas/RedeemSyData"
    }
  },
  "required": [
    "method",
    "contractCallParamsName",
    "contractCallParams",
    "tx",
    "data"
  ]
}