Pendle · Schema

MerkleProofResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
proof array
accruedAmount string
updatedAt string
verifyCallData string Calldata to verify the proof
merkleRoot string Merkle root hash of the merkle tree
View JSON Schema on GitHub

JSON Schema

MerkleProofResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MerkleProofResponse",
  "type": "object",
  "properties": {
    "proof": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "accruedAmount": {
      "type": "string"
    },
    "updatedAt": {
      "format": "date-time",
      "type": "string"
    },
    "verifyCallData": {
      "type": "string",
      "description": "Calldata to verify the proof"
    },
    "merkleRoot": {
      "type": "string",
      "description": "Merkle root hash of the merkle tree"
    }
  },
  "required": [
    "proof",
    "accruedAmount",
    "updatedAt",
    "merkleRoot"
  ]
}