Euler Finance · Schema

OracleAdapterEntry

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
oracle string
name string
base string
quote string
pythDetail object
chainlinkDetail object
View JSON Schema on GitHub

JSON Schema

oracle-adapter-entry.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OracleAdapterEntry",
  "type": "object",
  "properties": {
    "oracle": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "base": {
      "type": "string"
    },
    "quote": {
      "type": "string"
    },
    "pythDetail": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OracleAdapterPythDetail"
        }
      ],
      "nullable": true
    },
    "chainlinkDetail": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OracleAdapterChainlinkDetail"
        }
      ],
      "nullable": true
    }
  }
}