Pendle · Schema

MerklDataResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
tvl string Total Value Locked as a string
apr string Annual Percentage Rate in decimal format
opportunityName string Optional opportunity name
View JSON Schema on GitHub

JSON Schema

MerklDataResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MerklDataResponse",
  "type": "object",
  "properties": {
    "tvl": {
      "type": "string",
      "description": "Total Value Locked as a string",
      "example": "1000000000000000000000"
    },
    "apr": {
      "type": "string",
      "description": "Annual Percentage Rate in decimal format",
      "example": "0.15"
    },
    "opportunityName": {
      "type": "string",
      "description": "Optional opportunity name",
      "example": "Pendle Market Maker Incentive"
    }
  },
  "required": [
    "tvl",
    "apr"
  ]
}