forked from lucasjones/node-boolberry-pool
-
Notifications
You must be signed in to change notification settings - Fork 7
/
config_example.json
111 lines (94 loc) · 2.6 KB
/
config_example.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"coin": "boolberry",
"symbol": "BBR",
"logLevel": "debug",
"logColors": true,
"coinUnits": 1000000000000,
"poolHost": "cryppit.com",
"irc": "irc.freenode.net/#boolberry",
"email": "[email protected]",
"cryptonatorWidget": "num=2&base_0=Boolberry%20(BBR)&target_0=Bitcoin%20(BTC)&base_1=Boolberry%20(BBR)&target_1=US%20Dollar%20(USD)",
"easyminerDownload": "https://github.com/zone117x/cryptonote-easy-miner/releases/",
"simplewalletDownload": "http://bit.ly/monero-starter-pack",
"blockchainExplorer": "",
"poolServer": {
"enabled": true,
"clusterForks": "auto",
"poolAddress": "1L1ZPC9XodC6g5BX8j8m3vcdkXPiZrVF7RcERWE879coQDWiztUbkkVZ86o43P27Udb3qxL4B41gbaGpvj3nS7DgFZauAZE",
"blockRefreshInterval": 1000,
"scratchpadFilePath": "/var/www/scratchpad.bin",
"scratchpadFileUpdateInterval": 14400000,
"minerTimeout": 900,
"ports": [
{
"port": 5555,
"protocol": "tcp",
"difficulty": 10000,
"desc": "Mid range CPUs"
},
{
"port": 7777,
"protocol": "tcp",
"difficulty": 500000,
"desc": "High end CPUs"
},
{
"port": 1111,
"protocol": "http",
"difficulty": 500000,
"desc": "Old protocol"
}
],
"varDiff": {
"minDiff": 50000,
"maxDiff": 10000000,
"targetTime": 100,
"retargetTime": 30,
"variancePercent": 30,
"maxJump": 20000
},
"shareTrust": {
"enabled": false,
"min": 10,
"stepDown": 3,
"threshold": 10,
"penalty": 30
},
"longPolling": {
"enabled": false,
"timeout": 8500
},
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 30
}
},
"payments": {
"enabled": true,
"transferFee": 5000000000,
"interval": 30,
"poolFee": 2,
"depth": 60,
"maxAddresses": 50
},
"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 3,
"port": 8117
},
"daemon": {
"host": "127.0.0.1",
"port": 10102
},
"wallet": {
"host": "127.0.0.1",
"port": 10103
},
"redis": {
"host": "127.0.0.1",
"port": 6379
}
}