Skip to content

Dexalot đŸĨˆ

🛠 Connector Info

  • Exchange Type: Decentralized Exchange (DEX)
  • Market Type: Central Limit Order Book (CLOB)
  • Maintenance Tier:
  • Maintainer: Hummingbot Foundation

Currently, Dexalot is a Silver exchange, as voted by HBOT holders in each quarterly Epoch. This means that Hummingbot Foundation maintains the components below via Bounties, tracking improvements made to the Gold exchange connectors of that type.

Component Status Notes
🔀 Spot Connector ✅
🔀 Perp Connector Not available
đŸ•¯ AMM Data Feed ✅

â„šī¸ Exchange Info

🔑 How to Connect

Create a wallet on one of the supported networks below:

Chain Networks
avalanche dexalot

From inside the Hummingbot client, run gateway connect dexalot in order to connect your wallet:

Which chain do you want dexalot to connect to? (avalanche) >>>
Which network do you want dexalot to connect to? (dexalot)
Enter your dexalot-avalanche-dexalot wallet private key >>>

Enter your Dexalot API Key (you can request one from the Dexalot team) >>> 

If connection is successful:

The dexalot connector now uses wallet [pubKey] on avalanche-dexalot

🔀 Spot Connector

Integration to spot markets API endpoints

Endpoints

  • /clob/orders
  • /clob/batchOrders
  • /chain/balances
  • /chain/poll

For more info, run Gateway and go to in your browser to see detailed documentation for each endpoint.

đŸ•¯ AMM Data Feed

Data feed of this exchange's real-time prices

Usage

from hummingbot.data_feed.amm_gateway_data_feed import AmmGatewayDataFeed
prices = AmmGatewayDataFeed(
        connector_chain_network="dexalot_avalanche_dexalot",
        trading_pairs={"WAVAX-USDC", "ALOT-USDC"},
        order_amount_in_base=Decimal("1"),
    )