Euler Finance · Schema

Chain

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
id integer
name string
status string Optional chain health status.
View JSON Schema on GitHub

JSON Schema

chain.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Chain",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "nullable": true,
      "description": "Optional chain health status."
    }
  }
}