We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 387e419 commit 4cb3780Copy full SHA for 4cb3780
Trading/Exchange/hyperliquid/hyperliquid_exchange.py
@@ -17,6 +17,7 @@
17
18
import octobot_trading.exchanges as exchanges
19
import octobot_trading.enums as trading_enums
20
+import octobot_trading.exchanges.connectors.ccxt.constants as ccxt_constants
21
22
23
class HyperliquidConnector(exchanges.CCXTConnector):
@@ -51,6 +52,15 @@ def get_name(cls):
51
52
def get_adapter_class(self):
53
return HyperLiquidCCXTAdapter
54
55
+ def get_additional_connector_config(self):
56
+ return {
57
+ ccxt_constants.CCXT_OPTIONS: {
58
+ "fetchMarkets": {
59
+ "types": ["spot"], # only hyperliquid spot markets are supported
60
+ }
61
62
63
+
64
65
class HyperLiquidCCXTAdapter(exchanges.CCXTAdapter):
66
0 commit comments