Euler Finance · Schema

VaultApyPoint

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
supplyApy number Percent number with 6 decimal places.
borrowApy number Percent number with 6 decimal places.
timestamp string
View JSON Schema on GitHub

JSON Schema

vault-apy-point.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultApyPoint",
  "type": "object",
  "properties": {
    "supplyApy": {
      "type": "number",
      "nullable": true,
      "description": "Percent number with 6 decimal places."
    },
    "borrowApy": {
      "type": "number",
      "description": "Percent number with 6 decimal places."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}