forked from just-an-dev/sodogetip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py.dist
33 lines (26 loc) · 847 Bytes
/
config.py.dist
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
## sample of config file
rpc_config = {
"doge_rpc_port": "22545",
"doge_rpc_host": "127.0.0.1",
"doge_rpc_username": "dogecoinrpc",
"doge_rpc_password": "dogecoinpassword"
}
# with ending /
DATA_PATH = '/data/'
bot_name = "sodogetiptest"
backup_wallet_path = "/path/of/wallet/backup/"
bot_config = {
'user_file': 'user_files.json',
'unregistered_tip_user': 'unregistered_tip_user.json',
'user_history_path': 'user_history/',
'logs_path': 'logs/',
'rate_fee': '1',
'spam_limit': '500'
'timeout': '30'
}
url_get_value = {
"coincap": 'http://www.coincap.io/page/DOGE',
"cryptocompare": 'https://www.cryptocompare.com/api/data/price?fsym=DOGE&tsyms=USD',
"cryptonator": 'https://api.cryptonator.com/api/full/doge-usd',
"blockcypher": 'https://api.blockcypher.com/v1/doge/main/txs/'
}