Euler Finance · Schema

CollateralConfigWithPrice

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless
View JSON Schema on GitHub

JSON Schema

collateral-config-with-price.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CollateralConfigWithPrice",
  "allOf": [
    {
      "$ref": "#/components/schemas/CollateralConfig"
    },
    {
      "type": "object",
      "properties": {
        "price": {
          "allOf": [
            {
              "$ref": "#/components/schemas/Price"
            }
          ],
          "nullable": true
        }
      }
    }
  ]
}