-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
27 lines (27 loc) · 891 Bytes
/
config.json.example
File metadata and controls
27 lines (27 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"environment": "testnet",
"testnet": {
"BINANCE_FIX_KEY": "YOUR_TESTNET_API_KEY_HERE",
"BINANCE_FIX_PRIVATE_KEY_PATH": "~/.ssh/private_key_ed25519.pem",
"endpoints": {
"market_data": "tcp+tls://fix-md.testnet.binance.vision:9000",
"order_entry": "tcp+tls://fix-oe.testnet.binance.vision:9000",
"drop_copy": "tcp+tls://fix-dc.testnet.binance.vision:9000"
}
},
"mainnet": {
"BINANCE_FIX_KEY": "YOUR_MAINNET_API_KEY_HERE",
"BINANCE_FIX_PRIVATE_KEY_PATH": "~/.ssh/private_key_ed25519.pem",
"endpoints": {
"market_data": "tcp+tls://fix-md.binance.com:9000",
"order_entry": "tcp+tls://fix-oe.binance.com:9000",
"drop_copy": "tcp+tls://fix-dc.binance.com:9000"
}
},
"test_settings": {
"skip_on_auth_failure": true,
"connection_timeout": 10,
"test_timeout": 30,
"enable_integration_tests": false
}
}