|
@@ -102,6 +102,8 @@ class HyperliquidClient:
|
|
safe_config = config.copy()
|
|
safe_config = config.copy()
|
|
if 'apiKey' in safe_config and safe_config['apiKey']:
|
|
if 'apiKey' in safe_config and safe_config['apiKey']:
|
|
safe_config['apiKey'] = f"{safe_config['apiKey'][:8]}..."
|
|
safe_config['apiKey'] = f"{safe_config['apiKey'][:8]}..."
|
|
|
|
+ if 'privateKey' in safe_config and safe_config['privateKey']:
|
|
|
|
+ safe_config['privateKey'] = f"{safe_config['privateKey'][:8]}..."
|
|
if 'walletAddress' in safe_config and safe_config['walletAddress']:
|
|
if 'walletAddress' in safe_config and safe_config['walletAddress']:
|
|
safe_config['walletAddress'] = f"{safe_config['walletAddress'][:8]}..."
|
|
safe_config['walletAddress'] = f"{safe_config['walletAddress'][:8]}..."
|
|
if 'secret' in safe_config and safe_config['secret']:
|
|
if 'secret' in safe_config and safe_config['secret']:
|