Euler Finance · Schema

VaultPosition

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
account string
shares string Raw vault share amount as a bigint string.
assets string Raw underlying asset amount as a bigint string.
assetsUsd number Market USD number computed from `assets` and the token price endpoint.
lastUpdatedBlock string
View JSON Schema on GitHub

JSON Schema

vault-position.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VaultPosition",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "shares": {
      "type": "string",
      "description": "Raw vault share amount as a bigint string."
    },
    "assets": {
      "type": "string",
      "description": "Raw underlying asset amount as a bigint string."
    },
    "assetsUsd": {
      "type": "number",
      "nullable": true,
      "description": "Market USD number computed from `assets` and the token price endpoint."
    },
    "lastUpdatedBlock": {
      "type": "string"
    }
  }
}