Euler Finance · Schema

IntrinsicApyHistoryPoint

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
timestamp string
apy number Intrinsic APY as a percent number.
provider string
apyDuration number Duration in seconds used to compute the APY.
View JSON Schema on GitHub

JSON Schema

intrinsic-apy-history-point.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IntrinsicApyHistoryPoint",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "apy": {
      "type": "number",
      "description": "Intrinsic APY as a percent number."
    },
    "provider": {
      "type": "string"
    },
    "apyDuration": {
      "type": "number",
      "description": "Duration in seconds used to compute the APY."
    }
  }
}