Euler Finance · Schema

IrmHistoryItem

Historical interest rate model change

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
interestRateModel string Interest rate model contract address
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

irm-history-item.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IrmHistoryItem",
  "type": "object",
  "description": "Historical interest rate model change",
  "properties": {
    "interestRateModel": {
      "type": "string",
      "description": "Interest rate model contract address"
    },
    "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."
    }
  }
}