Euler Finance · Schema

SubAccount

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
chainId integer
owner string
addressPrefix string
blockNumber string
timestamp string
View JSON Schema on GitHub

JSON Schema

sub-account.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SubAccount",
  "type": "object",
  "required": [
    "chainId",
    "owner",
    "addressPrefix",
    "blockNumber",
    "timestamp"
  ],
  "properties": {
    "chainId": {
      "type": "integer"
    },
    "owner": {
      "type": "string"
    },
    "addressPrefix": {
      "type": "string"
    },
    "blockNumber": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}