Euler Finance · Schema

CapHistoryItem

Historical cap configuration change

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
supplyCap string Resolved supply cap as a bigint string in underlying asset units.
borrowCap string Resolved borrow cap as a bigint string in underlying asset units.
blockNumber string Block number of the change
timestamp string Timestamp of the change
txHash string Transaction hash
logIndex integer Log index within the transaction receipt.
View JSON Schema on GitHub

JSON Schema

cap-history-item.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CapHistoryItem",
  "type": "object",
  "description": "Historical cap configuration change",
  "properties": {
    "supplyCap": {
      "type": "string",
      "description": "Resolved supply cap as a bigint string in underlying asset units."
    },
    "borrowCap": {
      "type": "string",
      "description": "Resolved borrow cap as a bigint string in underlying asset units."
    },
    "blockNumber": {
      "type": "string",
      "description": "Block number of the change"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the change"
    },
    "txHash": {
      "type": "string",
      "description": "Transaction hash"
    },
    "logIndex": {
      "type": "integer",
      "description": "Log index within the transaction receipt."
    }
  }
}