Euler Finance · Schema

EarnVaultManagement

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
owner string
curator string
guardian string
feeRecipient string
timelockSeconds integer Timelock duration in seconds.
performanceFee string Raw contract performance fee value as a bigint string.
View JSON Schema on GitHub

JSON Schema

earn-vault-management.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EarnVaultManagement",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string"
    },
    "curator": {
      "type": "string"
    },
    "guardian": {
      "type": "string"
    },
    "feeRecipient": {
      "type": "string"
    },
    "timelockSeconds": {
      "type": "integer",
      "description": "Timelock duration in seconds."
    },
    "performanceFee": {
      "type": "string",
      "description": "Raw contract performance fee value as a bigint string."
    }
  }
}