Euler Finance · Schema

VaultIncludePrices

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
asset object
collaterals array
View JSON Schema on GitHub

JSON Schema

vault-include-prices.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultIncludePrices",
  "type": "object",
  "properties": {
    "asset": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Price"
        }
      ],
      "nullable": true
    },
    "collaterals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CollateralConfigWithPrice"
      }
    }
  }
}