Skip to content

Latest commit

 

History

History
75 lines (53 loc) · 2.25 KB

pangolin.md

File metadata and controls

75 lines (53 loc) · 2.25 KB

🛠 Connector Info

  • Exchange Type: Decentralized Exchange (DEX)
  • Market Type: Automatic Market Maker (AMM)
Component Status Notes
2️⃣ AMM Connector
3️⃣ Range AMM Connector Not built
🕯 AMM Data Feed

ℹ️ Exchange Info

🔑 How to Connect

Create a wallet on one of the supported networks below:

Chain Networks
avalanche avalanche, fuji

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

Which chain do you want pangolin to connect to? (avalanche) >>>
Which network do you want pangolin to connect to? (avalanche, fuji) >>>
Enter your avalanche-avalanche private key >>>>

If connection is successful:

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

2️⃣ AMM Connector

Integration to this DEX's swap pricing and execution endpoints

Endpoints

  • /amm/price
  • /amm/trade

For more info, run Gateway and go to https:localhost:8080 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="pangolin_avalanche_avalanche",
        trading_pairs={"USDC-WAVAX", "USDT-WAVAX"},
        order_amount_in_base=Decimal("1"),
    )