Skip to content

Dexalot

🛠 Connector Info

  • Exchange Type: Decentralized Exchange (DEX)
  • Market Type: Central Limit Order Book (CLOB)
Component Status Notes
🔀 Spot Connector ✅
🔀 Perp Connector Not available
đŸ•¯ AMM Data Feed ✅
📓 Connector Guide ✅

ℹī¸ Exchange Info

🔑 How to Connect

Tip

See the Dexalot Connector Guide for step-by-step instructions.

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"),
    )