Idle Finance · Schema

UnderlyingAllocation

Allocation of pool assets to an underlying yield protocol (e.g. Aave, Compound, Morpho, Clearpool).

DeFiYield OptimizationFinanceCryptoStakingGovernanceTVLAPY

Properties

Name Type Description
protocol string Name of the underlying protocol.
allocation string Percentage allocation as a decimal string.
apy string APY from this protocol as a decimal string.
View JSON Schema on GitHub

JSON Schema

underlying-allocation.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/idle/main/json-schema/underlying-allocation.json",
  "title": "UnderlyingAllocation",
  "description": "Allocation of pool assets to an underlying yield protocol (e.g. Aave, Compound, Morpho, Clearpool).",
  "type": "object",
  "properties": {
    "protocol": {
      "type": "string",
      "description": "Name of the underlying protocol.",
      "example": "Aave"
    },
    "allocation": {
      "type": "string",
      "description": "Percentage allocation as a decimal string.",
      "example": "62.5"
    },
    "apy": {
      "type": "string",
      "description": "APY from this protocol as a decimal string.",
      "example": "3.91"
    }
  }
}