Euler Finance · Schema

VaultResolveEntry

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
chainId integer
address string
found boolean
vaultType object
factory stringnull
resource stringnull
snapshotTimestamp string
View JSON Schema on GitHub

JSON Schema

vault-resolve-entry.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultResolveEntry",
  "type": "object",
  "properties": {
    "chainId": {
      "type": "integer"
    },
    "address": {
      "type": "string"
    },
    "found": {
      "type": "boolean"
    },
    "vaultType": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "evk",
            "earn",
            "securitize"
          ]
        },
        {
          "type": "null"
        }
      ]
    },
    "factory": {
      "type": [
        "string",
        "null"
      ]
    },
    "resource": {
      "type": [
        "string",
        "null"
      ]
    },
    "snapshotTimestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}