Pendle · Schema

TokenProof

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
token string
proof array
accruedAmount string
verifyCallData string Calldata to verify the proof
View JSON Schema on GitHub

JSON Schema

TokenProof.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenProof",
  "type": "object",
  "properties": {
    "token": {
      "type": "string"
    },
    "proof": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "accruedAmount": {
      "type": "string"
    },
    "verifyCallData": {
      "type": "string",
      "description": "Calldata to verify the proof"
    }
  },
  "required": [
    "token",
    "proof",
    "accruedAmount"
  ]
}