SushiSwap · Schema

OnChainPoolData

DeFiDecentralized ExchangeDEXCryptocurrencyWeb3BlockchainMulti-ChainLiquiditySwapToken Pricing

Properties

Name Type Description
pool object
assets array
View JSON Schema on GitHub

JSON Schema

onchainpooldata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OnChainPoolData",
  "type": "object",
  "properties": {
    "pool": {
      "$ref": "#/components/schemas/OnChainPool"
    },
    "assets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OnChainAsset"
      }
    }
  },
  "required": [
    "pool",
    "assets"
  ]
}