Euler Finance · Schema

IntrinsicApy

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
chainId integer
address string
symbol string
apy number Percent number with 6 decimal places.
provider string
source string
timestamp string
View JSON Schema on GitHub

JSON Schema

intrinsic-apy.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IntrinsicApy",
  "type": "object",
  "properties": {
    "chainId": {
      "type": "integer"
    },
    "address": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "apy": {
      "type": "number",
      "description": "Percent number with 6 decimal places."
    },
    "provider": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}