forked from zone117x/node-cryptonote-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.nld.json
103 lines (95 loc) · 2.28 KB
/
config.nld.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
{
"coin": "monero",
"symbol": "XMR",
"logging": {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5
},
"console": {
"level": "info",
"colors": true
}
},
"poolServer": {
"enabled": true,
"clusterForks": 1,
"poolAddress": "447iCrLWUbsTSxqfvRcckQgZHz1XAX98W9Q1qmAkcmDvA9gYysfms2teJcByLuCQv7ezpWbHtKpiUgBffBVqjftS1F6HvkR",
"blockRefreshInterval": 1000,
"minerTimeout": 900,
"ports": [
{
"port": 10000,
"difficulty": 10000,
"desc": "Dynamic difficulty starting at 10000"
}
],
"varDiff": {
"minDiff": 5000,
"maxDiff": 100000,
"targetTime": 100,
"retargetTime": 30,
"variancePercent": 30,
"maxJump": 100
},
"shareTrust": {
"enabled": true,
"min": 10,
"stepDown": 3,
"threshold": 10,
"penalty": 30
},
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 30
},
"slushMining": {
"enabled": true,
"weight": 300,
"blockTime": 60,
"lastBlockCheckRate": 1
}
},
"payments": {
"enabled": false,
"interval": 600,
"maxAddresses": 50,
"mixin": 3,
"transferFee": 0,
"minPayment": 500000000000,
"denomination": 1000000000000
},
"blockUnlocker": {
"enabled": true,
"interval": 30,
"depth": 60,
"poolFee": 0.3,
"devDonation": 0.1,
"coreDevDonation": 0.1
},
"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 5,
"port": 8117,
"blocks": 30,
"payments": 30,
"password": "This is the super secret pa$$word."
},
"daemon": {
"host": "127.0.0.1",
"port": 18081
},
"wallet": {
"host": "127.0.0.1",
"port": 8082
},
"redis": {
"host": "127.0.0.1",
"port": 6379,
"auth": null
}
}