Euler Finance · Schema

VaultInterestRates

Contract interest-rate values formatted as decimal strings in fraction units, not public percent APY numbers.

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
borrowSPY string Borrow rate per second as an exact decimal string.
borrowAPY string Borrow APY as an exact decimal fraction string; `1` means 100%.
supplyAPY string Supply APY as an exact decimal fraction string; `1` means 100%.
View JSON Schema on GitHub

JSON Schema

vault-interest-rates.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultInterestRates",
  "type": "object",
  "description": "Contract interest-rate values formatted as decimal strings in fraction units, not public percent APY numbers.",
  "properties": {
    "borrowSPY": {
      "type": "string",
      "description": "Borrow rate per second as an exact decimal string."
    },
    "borrowAPY": {
      "type": "string",
      "description": "Borrow APY as an exact decimal fraction string; `1` means 100%."
    },
    "supplyAPY": {
      "type": "string",
      "description": "Supply APY as an exact decimal fraction string; `1` means 100%."
    }
  }
}