Pendle · Schema

MerkleRewardsResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
accruedAmount string
rewardBreakdowns array Only available for arbitrum-grant campaign
updatedAt string
View JSON Schema on GitHub

JSON Schema

MerkleRewardsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MerkleRewardsResponse",
  "type": "object",
  "properties": {
    "accruedAmount": {
      "type": "string"
    },
    "rewardBreakdowns": {
      "nullable": true,
      "description": "Only available for arbitrum-grant campaign",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "updatedAt": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "accruedAmount",
    "rewardBreakdowns",
    "updatedAt"
  ]
}