-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcoin-pusher.conf.sample
63 lines (47 loc) · 1.5 KB
/
coin-pusher.conf.sample
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[global]
; cache file relative to the root directory
balanceCache = "cache/balances.json"
; number of coins that get-csv.php should report on
csvCoins = 50
; do not report residual balances worth less than this (in USD)
balanceThreshold = 1.00
; initial investment amount in USD
initialUsd = 1000
; BTC price in USD at the moment of the investment
initialBtcPrice = 2000
[api]
; URL for current market caps and coin prices
cmcUrl = "https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest"
cmcKey = ""
; binance.com credentials
binanceKey = ""
binanceSecret = ""
binanceUrl = "https://api.binance.com/api/v3/account?timestamp=%s&signature=%s"
; bittrex.com credentials
bittrexKey = ""
bittrexSecret = ""
bittrexUrl = "https://api.bittrex.com/v3/balances"
; bitfinex.com credentials
bitfinexKey = ""
bitfinexSecret = ""
bitfinexUrl = "https://api.bitfinex.com/v1/balances"
; kraken.com credentials
krakenKey = ""
krakenSecret = ""
krakenUrl = "https://api.kraken.com/0/private/Balance"
[symbols]
; canonicalize symbols according to coinmarketcap.com
canonical["BCC"] = "BCH"
canonical["IOT"] = "MIOTA"
canonical["XETC"] = "ETC"
canonical["XETH"] = "ETH"
canonical["XLTC"] = "LTC"
canonical["XXBT"] = "BTC"
canonical["XXDG"] = "DOGE"
canonical["XXLM"] = "XLM"
canonical["XXRP"] = "XRP"
[coins]
; List symbols and amounts explicitly. Good for personal wallets or sites that don't offer
; wallet APIs.
; Format: amount,symbol,source, where source can be any string
; coin[] = "1.00000000,BTC,my-other-exchange"