Euler Finance · Schema

AccountActivity

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
type string
chainId integer
vault string
assets string Raw underlying asset amount as a bigint string.
shares string Raw vault share amount as a bigint string.
txHash string
blockNumber string
timestamp string
View JSON Schema on GitHub

JSON Schema

account-activity.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccountActivity",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "chainId": {
      "type": "integer"
    },
    "vault": {
      "type": "string"
    },
    "assets": {
      "type": "string",
      "description": "Raw underlying asset amount as a bigint string."
    },
    "shares": {
      "type": "string",
      "description": "Raw vault share amount as a bigint string."
    },
    "txHash": {
      "type": "string"
    },
    "blockNumber": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}