forked from ProjectHelixCoin/Helix-tip-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.sample
48 lines (48 loc) · 1.74 KB
/
config.json.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
{"data": [
{
"discord": {
"token": "put the bot token here"
},
"mysql": {
"db_host": "localhost",
"db_user": "root",
"db_pass": "put mysql password here",
"db": "mysql"
},
"rpc": {
"rpc_host": "127.0.0.1",
"rpc_port": "6269",
"rpc_user": "this username should match the one in the wallet config",
"rpc_pass": "this password should match the one in the wallet config"
},
"logging": {
"print_level": 3,
"file": "log.txt",
"file_level": 3
},
"soak": {
"soak_max_recipients": 50,
"use_max_recipients": true,
"soak_min_received": 0.0001,
"use_min_received": true
},
"command_channels": {
"help": [list of channel names for this command],
"deposit": [list of channel names for this command],
"withdraw": [list of channel names for this command],
"balance": [list of channel names for this command],
"uptime": [list of channel names for this command],
"invite": [list of channel names for this command],
"stats": [list of channel names for this command],
"mninfo": [list of channel names for this command],
"tip": [list of channel names for this command],
"soak": [list of channel names for this command],
"soak_info": [list of channel names for this command],
"checksoak": [list of channel names for this command
},
"txfee": 0,
"owners": ["put your discord id here"],
"prefix": "!",
"description": "Galactrum Bot"
}
]}