Euler Finance · Schema

VaultTotalsFreshness

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
mode string
forceFreshRequested boolean
refreshTriggered boolean
refreshCompleted boolean
timedOut boolean
rateLimited boolean
fallbackReason string
waitedMs integer
latestSnapshotTimestamp string
ageSeconds integer
View JSON Schema on GitHub

JSON Schema

vault-totals-freshness.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultTotalsFreshness",
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "fresh",
        "cached"
      ]
    },
    "forceFreshRequested": {
      "type": "boolean"
    },
    "refreshTriggered": {
      "type": "boolean"
    },
    "refreshCompleted": {
      "type": "boolean"
    },
    "timedOut": {
      "type": "boolean"
    },
    "rateLimited": {
      "type": "boolean"
    },
    "fallbackReason": {
      "type": "string",
      "nullable": true
    },
    "waitedMs": {
      "type": "integer"
    },
    "latestSnapshotTimestamp": {
      "type": "string",
      "format": "date-time"
    },
    "ageSeconds": {
      "type": "integer"
    }
  }
}