forked from blak3r/crypto-balance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.js
37 lines (37 loc) · 1.09 KB
/
config.example.js
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
28
29
30
31
32
33
34
35
36
37
module.exports = {
// Exchanges below must be supported by ccxt or be coinbase, balances are fetched dyanmically
exchanges: {
bittrex: {
apiKey: "key",
secret: "secret"
},
binance: {
apiKey: "key",
secret: "secret"
},
gdax: {
apiKey: "key",
secret: "secret",
password: "passphrase"
},
coinbase: {
apiKey: "key",
secret: "secret"
}
// Add and remove exchanges here to have them dynamically appear in the balance output
},
// Use this section to add in balances you have stored in wallets, or on an unsupported exchange. It'll still be included
// in your balance sheet you'll just need to update your config file when the amounts change.
// KeyName can be anything... it's just used as column header.
unsupported_exchanges: {
kucoin: {
BTC: 0.5046,
WTC: 0.0
},
"nano_ledger": {
BTC: 0.0,
ETH: 0.0,
LTC: 0.0
}
},
};