Skip to content

Balancer

Here is the similar page formatted in markdown for the Balancer exchange:

🛠 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
ethereum mainnet
avalanche avalanche
polygon mainnet

From inside the Hummingbot client, run gateway connect balancer to connect your wallet:

Which chain do you want balancer to connect to? (ethereum) >>>
Which network do you want balancer to connect to? (mainnet, kovan) >>>
Enter your ethereum-mainnet private key >>>>

If the connection is successful:

The balancer connector now uses wallet [pubKey] on ethereum-mainnet

2ī¸âƒŖ AMM Connector

Integration to this DEX's swap pricing and execution endpoints

Endpoints

  • /amm/price
  • /amm/trade
  • /chain/allowances

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="balancer_ethereum_mainnet",
        trading pairs={"BAL-ETH", "ETH-USDT"},
        order_amount_in base=Decimal("1"),
    )
```