diff --git a/freqtrade/exchange/hyperliquid.py b/freqtrade/exchange/hyperliquid.py index 9b329de93..8d83b1600 100644 --- a/freqtrade/exchange/hyperliquid.py +++ b/freqtrade/exchange/hyperliquid.py @@ -88,6 +88,8 @@ class Hyperliquid(Exchange): } response = self._api.publicPostInfo(request) self.unified_account = response in ('"unifiedAccount"', '"portfolioMargin"') + if self.unified_account: + logger.info("Unified Hyperliquid account detected.") except ccxt.DDoSProtection as e: raise DDosProtection(e) from e