Hummingbot v2.13.0 Release Notes¶
Released on March 2, 2026
| Repository | Description | GitHub Release | DockerHub Release |
|---|---|---|---|
| Hummingbot Client | Core Client | v2.13.0 changelog |
version-2.13.0 |
| Gateway | DEX Middleware | v2.13.0 changelog |
version-2.13.0 |
Note
Other Hummingbot repositories such as Hummingbot-API, Hummingbot MCP, Hummingbot Skills, Quants-Lab, and Condor follow a continuous deployment model without fixed version releases. Use the main branch for these repositories.
How to Install / Update¶
- New Installation: See the newly revamped Installation to get started with Hummingbot API with Condor, or the traditional Hummingbot Client.
⚡ Upgrade Required
This release includes breaking changes across hummingbot-api, hummingbot-mcp, and condor. Older hummingbot client versions will no longer work — see Updating to New Versions for update instructions.
Release Highlights¶
🎒 Backpack Spot & Perpetual Connector¶
We are excited to introduce the new Backpack connector, integrating an emerging cryptocurrency exchange into the Hummingbot ecosystem. Backpack offers both spot and perpetual futures trading, catering to the platform's increasing trading activity and the growing interest from algorithmic traders and market-making participants.
Highlights
- Comprehensive Trading: Full support for both spot and perpetual futures trading workflows.
- Community Driven: Developed and integrated following the passage of the HGP-82 governance proposal.
- Core Integration: Officially merged into the Hummingbot client via PRs #7947 and #7981.
Thanks to TomasGaudino for this contribution! 🙏
🌊 Pacifica Finance Connector¶
Hummingbot now features a dedicated connector for Pacifica, a Solana-based perpetual futures decentralized exchange. This integration allows traders to experience high-performance trading without compromising on decentralized, non-custodial on-chain settlement.
Highlights
- Solana-Based DEX: Seamlessly trade perpetual contracts on major crypto assets within the Solana ecosystem.
- Non-Custodial Architecture: Blends the speed of high-performance execution with the security of decentralized on-chain settlement.
- Community Driven: Developed and integrated following the passage of the HGP-81 governance proposal.
- Core Integration: Officially merged into the Hummingbot client via PR #7907.
Thanks to dizpers for this contribution! 🙏
🚀 Aevo Connector¶
We have successfully added a new connector for Aevo, a decentralized derivatives exchange built specifically around perpetual trading.
Highlights
- Direct Automation: Enables Hummingbot users to directly place, manage, and fully automate perpetual futures trading strategies on Aevo.
- Native Client Support: Manage your derivatives portfolio directly through the standard Hummingbot client.
- Community Driven: Developed and integrated following the passage of the HGP-79 governance proposal.
- Core Integration: Officially merged into the Hummingbot client via PR #7920.
Thanks to gtwototwo for this contribution! 🙏
🔄 Refactored XRPL Connector¶
This release brings significant enhancements to the XRPL ecosystem integration. The connector's user stream has been completely refactored to use a polling-based approach instead of WebSocket subscriptions. This new architecture ensures greater reliability and resilience in environments with unstable connections, periodically fetching account transaction history while adding robust state tracking and deduplication mechanisms.
Highlights
- Polling-based User Stream: Replaces WebSocket subscriptions with a periodic polling mechanism for fetching transaction history, significantly improving connection robustness.
- Enhanced Event Processing & Worker Integration: Introduces efficient state tracking and deduplication, robust transaction transformation, and integration with
XRPLWorkerPoolManagerfor optimal query execution. - Core Integration: Officially merged into the Hummingbot client via PR #7975.
Thanks to mlguys for this contribution! 🙏
🧠 Strategy V2 Unification & LP Execution Framework¶
We are continuing to evolve our strategy framework by unifying the V2 strategy and script architectures and introducing an automated Liquidity Provider (LP) execution framework for CLMM DEXs. These architectural upgrades provide a robust foundation for building and deploying advanced market-making and liquidity provision strategies.
Highlights
- Unified Strategy & Script Base: Consolidates the Strategy V2 and script frameworks into a single architecture to simplify development, and re-implements the classic Pure Market Making strategy (
pmm_v1) utilizing the V2 framework. - LP Executor & Rebalancer: Introduces the
lp_rebalancercontroller andlp_executorfor automated liquidity provision on CLMM DEXs (e.g., Meteora, Raydium). Features include an orchestrated state machine for managing LP positions, automatic out-of-range rebalancing based on price limits, and a newlphistorycommand for performance tracking. - Core Integration: Merged via PRs #7986 and #7948.
Other Updates¶
hummingbot/hummingbot
- #7931 – Fixed handling of plain text responses in
RESTRequest.json(). Thanks to TomasGaudino for this contribution! 🙏 - #7989 – Refactored the Conda check in the Makefile.
- #7991 – Fixed a crash when listing configurations.
- #8010 – Added support for Binance's
TRADIFI_PERPETUALcontract type for commodities and equities. Thanks to eilyashko for this contribution! 🙏 - #8017 – Upgraded the Injective SDK to version 1.13. Thanks to aarmoa for this contribution! 🙏
- #8037 – Upgraded the Binance user stream connection.
- #8061 – Updated Hyperliquid perpetual constants and refactored DEX market handling for HIP-3 API updates. Thanks to isreallee82 for this contribution! 🙏
hummingbot/gateway
- #583 - Added optional
defaultNetworksparameter to Solana and Ethereum chain configs to optimize balance queries - #591 - Improved CLMM support for the LP Position Executor with position status tracking,
strategyTypepassthrough, and transaction fee separation - #600 - Switched Orca CLMM positions to Token-2022 instructions for full rent recovery on close Thanks to mlguys for this contribution! 🙏
- #603 - Used on-chain whirlpool data for real-time Orca pool pricing instead of potentially stale API data
hummingbot/hummingbot-api
- #116 - Improved price conversion functionality with rate oracle.
- #117 - Added rate oracle warm-up to initialize data earlier.
- #118 - Utilized market data to accurately quote holding positions.
- #119 - Added validation checks to the candles initialization process.
- #120 - Added
lp_executorsupport: registeredLPExecutorandLPExecutorConfigin the executor registry, exposed/executors/types/availableand/executors/types/lp_executor/configendpoints, addedlp_rebalancercontroller, and updated Gateway connector handling to support AMM/CLMM connectors without order book trackers. - #128 - Introduced executor log capture with per-executor ring buffers and a new
GET /executors/{id}/logsendpoint; cleaned up orphaned executors on startup; consolidated bot deployment to controller-based path; and added new controllers.
hummingbot/mcp
- #13 - Added executor tools and guides: new MCP tools for creating, managing, and monitoring executors (position, grid, DCA, TWAP, XEMM, LP) with structured preference storage, stop-loss support, and formatted output tables.
- #15 - Minor improvements to executor tools and guides: improved validation schemas, executor guide refinements, and better preference management.
hummingbot/condor
- #22 - Removed the OpenAI key prompt.
- #25 - Applied improvements and added a Position Executor wizard for creating long/short positions with stop loss, take profit, and trailing stops.
- #31 - Fixed executor issues, improved pair management, unified persistence layer, and added HIP-3 support check.
hummingbot/skills (New Repository)
The Hummingbot Skills repository is a new open-source collection of agent skills for interacting with the Hummingbot ecosystem via AI assistants (Claude, Cursor, etc. via MCP or OpenClaw). Skills provide structured commands, scripts, and documentation that let AI agents manage strategies, executors, connectors, and infrastructure on your behalf.
Available skills:
| Skill | Description |
|---|---|
hummingbot |
Core skill: manage bots, strategies, connectors, and accounts via Hummingbot API |
lp-agent |
LP position management for CLMM pools (Meteora, Raydium) with visualization and export |
hummingbot-deploy |
Deploy and manage Hummingbot API stack via Docker |
hummingbot-developer |
Developer workflow: install, build, and run the full stack from source |
hummingbot-heartbeat |
Hourly status updates (API, Gateway, bots, portfolio) delivered to Telegram or Discord via OpenClaw cron |
connectors-available |
Discover and test available exchange connectors |
find-arbitrage-opps |
Scan for arbitrage opportunities across CEX and DEX (Jupiter/Uniswap/PancakeSwap) |
find-xemm-opps |
Find XEMM opportunities via order book depth analysis and auto-generate xemm_multiple_levels configs |