Pendle · Schema

ContractParamInfo

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
method string Method name
contractCallParamsName array Contract call parameters name
contractCallParams array Contract call parameters
View JSON Schema on GitHub

JSON Schema

ContractParamInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ContractParamInfo",
  "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"
      }
    }
  },
  "required": [
    "method",
    "contractCallParamsName",
    "contractCallParams"
  ]
}