mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 03:41:14 +00:00
feat: recommend setting secrets via environment variable
This commit is contained in:
@@ -1169,34 +1169,34 @@
|
||||
"type": "string"
|
||||
},
|
||||
"key": {
|
||||
"description": "API key for the exchange.",
|
||||
"description": "API key for the exchange. Recommended to be set via environment variable FREQTRADE__EXCHANGE__KEY",
|
||||
"type": "string",
|
||||
"default": ""
|
||||
},
|
||||
"secret": {
|
||||
"description": "API secret for the exchange.",
|
||||
"description": "API secret for the exchange. Recommended to be set via environment variable FREQTRADE__EXCHANGE__SECRET",
|
||||
"type": "string",
|
||||
"default": ""
|
||||
},
|
||||
"password": {
|
||||
"description": "Password for the exchange, if required.",
|
||||
"description": "Password for the exchange, if required. Recommended to be set via environment variable FREQTRADE__EXCHANGE__PASSWORD",
|
||||
"type": "string",
|
||||
"default": ""
|
||||
},
|
||||
"uid": {
|
||||
"description": "User ID for the exchange, if required.",
|
||||
"description": "User ID for the exchange, if required. Recommended to be set via environment variable FREQTRADE__EXCHANGE__UID",
|
||||
"type": "string"
|
||||
},
|
||||
"account_id": {
|
||||
"description": "Account ID for the exchange, if required.",
|
||||
"description": "Account ID for the exchange, if required. Recommended to be set via environment variable FREQTRADE__EXCHANGE__ACCOUNT_ID",
|
||||
"type": "string"
|
||||
},
|
||||
"wallet_address": {
|
||||
"description": "Wallet address for the exchange, if required. Usually used by DEX exchanges.",
|
||||
"description": "Wallet address for the exchange, if required. Usually used by DEX exchanges. Recommended to be set via environment variable FREQTRADE__EXCHANGE__WALLET_ADDRESS",
|
||||
"type": "string"
|
||||
},
|
||||
"private_key": {
|
||||
"description": "Private key for the exchange, if required. Usually used by DEX exchanges.",
|
||||
"description": "Private key for the exchange, if required. Usually used by DEX exchanges. Recommended to be set via environment variable FREQTRADE__EXCHANGE__PRIVATE_KEY",
|
||||
"type": "string"
|
||||
},
|
||||
"pair_whitelist": {
|
||||
|
||||
Reference in New Issue
Block a user