From 06ac40fdbb0b7155e09deba658af4d5432bd2066 Mon Sep 17 00:00:00 2001 From: luckynick Date: Sat, 1 Nov 2025 14:05:20 +0100 Subject: [PATCH] Update exchanges.md --- docs/exchanges.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/exchanges.md b/docs/exchanges.md index 61d0628ec..865328a8b 100644 --- a/docs/exchanges.md +++ b/docs/exchanges.md @@ -407,11 +407,12 @@ To use these with Freqtrade, you will need to use the following configuration pa ``` json "exchange": { "name": "hyperliquid", - "walletAddress": "your_vault_address", // Vault or subaccount address - "privateKey": "your_api_private_key", + "walletAddress": "your_master_wallet_address", // Your master wallet address (not API wallet address and not vault/subaccount address). + "privateKey": "your_api_private_key", // API wallet private key (see https://app.hyperliquid.xyz/API). You'll only need private key, API wallet address is not needed. "ccxt_config": { "options": { - "vaultAddress": "your_vault_address" // Optional, only if you want to use a vault or subaccount + "vaultAddress": "your_vault_address", // Optional, only if you want to use a vault OR... + "subAccountAddress": "your_subaccount_address" // OR optional, only if you want to use a subaccount } }, // ...