Swappers Metadata (DEXs & Bridges)

List of DEXs and bridges integrated in Rango.

If you want to only receive the metadata for supported DEXs and bridges, you can use swappers metadata endpoint.

const meta = await rango.swappers()
Metadata API

This is a sample of response for swappers metadata method. Using this method.

[
  {
    "id": "SwapMode",
    "title": "Swap Mode",
    "logo": "https://raw.githubusercontent.com/rango-exchange/assets/main/swappers/ModeSwap/icon.png",
    "swapperGroup": "Swap Mode",
    "types": [
      "DEX"
    ],
    "enabled": true,
    "supportedBlockchains": [
      {
        "source": "MODE",
        "destinations": [
          "MODE"
        ]
      }
    ]
  },
  {
    "id": "Polygon Bridge",
    "title": "PoS Bridge",
    "logo": "https://raw.githubusercontent.com/rango-exchange/assets/main/swappers/Polygon Bridge/icon.svg",
    "swapperGroup": "Polygon Bridge",
    "types": [
      "BRIDGE"
    ],
    "enabled": false,
    "supportedBlockchains": [
      {
        "source": "ETH",
        "destinations": [
          "POLYGON"
        ]
      },
      {
        "source": "POLYGON",
        "destinations": [
          "ETH"
        ]
      }
    ]
  },
  // ...
]

Last updated