Euler Finance · Schema

VaultInterestRateModel

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
address string
type string
data object
View JSON Schema on GitHub

JSON Schema

vault-interest-rate-model.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultInterestRateModel",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "unknown",
        "kink",
        "adaptive_curve",
        "kinky",
        "fixed_cyclical_binary",
        "fixed_cyclical_binary_monthly"
      ]
    },
    "data": {
      "type": "object",
      "nullable": true,
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}