SushiSwap · Schema

Pair

DeFiDecentralized ExchangeDEXCryptocurrencyWeb3BlockchainMulti-ChainLiquiditySwapToken Pricing

Properties

Name Type Description
assets array Pair of assets available to make a swap - e.g: ["ETH", "MATIC"]
fee_in_basis_points number Fee for make a swap between the pair
View JSON Schema on GitHub

JSON Schema

pair.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Pair",
  "type": "object",
  "properties": {
    "assets": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Pair of assets available to make a swap - e.g: [\"ETH\", \"MATIC\"]"
    },
    "fee_in_basis_points": {
      "type": "number",
      "format": "float",
      "description": "Fee for make a swap between the pair"
    }
  },
  "required": [
    "assets",
    "fee_in_basis_points"
  ]
}