Pendle · Schema

MultiTokenMerkleProofResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
proof array
merkleRoot string
updatedAt string
chainId number
distributorAddress string
campaignId string
View JSON Schema on GitHub

JSON Schema

MultiTokenMerkleProofResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MultiTokenMerkleProofResponse",
  "type": "object",
  "properties": {
    "proof": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TokenProof"
      }
    },
    "merkleRoot": {
      "type": "string"
    },
    "updatedAt": {
      "format": "date-time",
      "type": "string"
    },
    "chainId": {
      "type": "number"
    },
    "distributorAddress": {
      "type": "string"
    },
    "campaignId": {
      "type": "string"
    }
  },
  "required": [
    "proof",
    "merkleRoot",
    "updatedAt",
    "chainId",
    "distributorAddress",
    "campaignId"
  ]
}