forked from zone117x/node-cryptonote-pool
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_bbr_example.json
119 lines (111 loc) · 2.78 KB
/
config_bbr_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
112
113
114
115
116
117
118
119
{
"coin": "boolberry",
"symbol": "BBR",
"logging": {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5
},
"console": {
"level": "info",
"colors": true
}
},
"poolServer": {
"enabled": true,
"clusterForks": "auto",
"poolAddress": "1KfzJfoA2pbB6J2ee2JG7wYSqwKtdoqs97pVMdB471FXArr1ce52Wm1BCWdAv9JAxZTa7wcUkq2s695Nmn59HgZ6VVnSjfp",
"blockRefreshInterval": 1000,
"scratchpadFilePath": "/home/clintar/NetBeansProjects/myserverscratchpad.bin",
"scratchpadFileUpdateInterval": 14400000,
"minerTimeout": 9000,
"ports": [
{
"port": 5555,
"protocol": "tcp",
"difficulty": 1000000,
"desc": "Mid range CPUs"
},
{
"port": 7777,
"protocol": "tcp",
"difficulty": 1800000,
"desc": "High end CPUs"
},
{
"port": 8888,
"difficulty": 10000,
"desc": "Hidden port",
"hidden": true
},
{
"port": 1111,
"difficulty": 1800000,
"protocol": "http",
"desc": "High end GPUs",
"hidden": false
}
],
"varDiff": {
"minDiff": 50000,
"maxDiff": 1000000,
"targetTime": 10,
"retargetTime": 10,
"variancePercent": 10,
"maxJump": 50000
},
"shareTrust": {
"enabled": false,
"min": 10,
"stepDown": 3,
"threshold": 10,
"penalty": 30
},
"banning": {
"enabled": false,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 300
}
},
"payments": {
"enabled": true,
"interval": 600,
"maxAddresses": 50,
"mixin": 0,
"transferFee": 5000000000,
"minPayment": 100000000000,
"maxTransactionAmount": 0,
"denomination": 100000000000
},
"blockUnlocker": {
"enabled": true,
"interval": 30,
"depth": 60,
"poolFee": 2,
"devDonation": 0.1,
"coreDevDonation": 0.1
},
"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 3,
"port": 8117,
"blocks": 30,
"payments": 30,
"password": "your_password"
},
"daemon": {
"host": "127.0.0.1",
"port": 10102
},
"wallet": {
"host": "127.0.0.1",
"port": 10103
},
"redis": {
"host": "127.0.0.1",
"port": 6379
}
}