Euler Finance · Schema

SwapPool

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
chainId integer
address string
token0 string
token1 string
tvlUsd number Market USD total value locked number.
View JSON Schema on GitHub

JSON Schema

swap-pool.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SwapPool",
  "type": "object",
  "properties": {
    "chainId": {
      "type": "integer"
    },
    "address": {
      "type": "string"
    },
    "token0": {
      "type": "string"
    },
    "token1": {
      "type": "string"
    },
    "tvlUsd": {
      "type": "number",
      "description": "Market USD total value locked number."
    }
  }
}