Euler Finance · Schema

YieldApyBreakdown

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
lending number Lending APY contribution as a percent number.
borrowing number Borrowing APY contribution as a percent number.
rewards number Rewards APY contribution as a percent number.
intrinsicApy number Intrinsic APY contribution as a percent number.
total number Total APY as a percent number.
View JSON Schema on GitHub

JSON Schema

yield-apy-breakdown.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "YieldApyBreakdown",
  "type": "object",
  "properties": {
    "lending": {
      "type": "number",
      "description": "Lending APY contribution as a percent number."
    },
    "borrowing": {
      "type": "number",
      "description": "Borrowing APY contribution as a percent number."
    },
    "rewards": {
      "type": "number",
      "description": "Rewards APY contribution as a percent number."
    },
    "intrinsicApy": {
      "type": "number",
      "description": "Intrinsic APY contribution as a percent number."
    },
    "total": {
      "type": "number",
      "description": "Total APY as a percent number."
    }
  }
}