forked from pascal-triangle/pascalcoin-open-pool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-mainnet.json
509 lines (438 loc) · 13.3 KB
/
config-mainnet.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
{
/**
* PascalCoin Mainnet Configuration
*/
/* Frontend URL of the pool */
"poolUrl": "https://your.pool.host/",
/* Hostname miners should connect to */
"poolHost": "your.pool.host",
/* Frontend name of the pool */
"poolName": "PascalCoin Open Pool",
/* Payload prefix, must be 15 characters or less without spaces */
"poolId": "Openpool",
/* Coin settings */
"coin": "PascalCoin",
"symbol": "PASC",
"algorithm": "RandomHash",
/**
* Logging Settings
*
* level can be info, warn, or error
* all levels that are equal or more severe than the
* setting will be displayed.
*/
"logging": {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5 // seconds
},
"console": {
"level": "info",
"colors": true
}
},
/**
* Pool Server Settings
*/
"poolServer": {
/* Enable this module */
"enabled": true,
/* How many seconds until miner is considered disconnected */
"connectionTimeout": 600,
/* If no new job rebroadcast current work so miners do not disconnect */
"jobRebroadcastTimeout": 55, // seconds
/* Enable for client IP addresses to be detected when using a load balancer with TCP
* proxy protocol enabled, such as HAProxy with 'send-proxy' param:
* http://haproxy.1wt.eu/download/1.5/doc/configuration.txt
*/
"tcpProxyProtocol": false,
/* If workers find two solutions to the same block before one of them is accepted
* then you can control if they will be submitted.
*/
"submitDuplicateBlockHeight": true,
/* Allow miners to modify the timestamp of the block */
"allowTimestampVariance": true,
/* Amount of time that old passwords are cached */
"passwordExpireTime": 3600,
/* Start multiple threads for the pool server module
* Set to "auto" by default which will spawn one process/fork/worker for each CPU
* core in your system. Each of these workers will run a separate instance of your
* pool, and the kernel will load balance miners using these forks. Optionally,
* the 'forks' field can be a number for how many forks will be spawned.
*/
"clustering": {
"enabled": true,
"forks": "auto"
},
/**
* Port Configuration
*
* You can have as many ports for your miners to connect to as you wish. Each port can be
* configured to use its own difficulty and variable difficulty settings. varDiff is
* optional and will only be used for the ports you configure it for.
*
* You can also give each port a description and make it hidden from the frontend.
*/
"ports": [
{
/* The port for your miners to connect to */
"port": "3333",
/* The starting or fixed difficulty for this port */
"diff": 0.00000350,
/* Short description for the frontend */
"desc": "Variable difficulty (500 H/s)",
/* Hide this port from the frontend */
"hidden": false,
/* Variable difficulty is a feature that will automatically adjust difficulty for
* individual miners based on their hashrate in order to lower networking overhead
*/
"varDiff": {
/* Minimum difficulty */
"minDiff": 0.00000100,
/* Maximum difficulty */
"maxDiff": 0.00100000,
/* Try to get 1 share per this many seconds */
"targetTime": 30,
/* Check to see if we should retarget every this many seconds */
"retargetTime": 90,
/* Allow share time to vary this much from target without retargeting */
"variancePercent": 30
}
},
{
"port": "3334",
"diff": 0.00000700,
"desc": "Variable difficulty (1000 H/s)",
"hidden": false,
"varDiff": {
"minDiff": 0.00000100,
"maxDiff": 0.00100000,
"targetTime": 30,
"retargetTime": 90,
"variancePercent": 30
}
},
{
"port": "3335",
"diff": 0.00001750,
"desc": "Variable difficulty (2500 H/s)",
"hidden": false,
"varDiff": {
"minDiff": 0.00000100,
"maxDiff": 0.00100000,
"targetTime": 30,
"retargetTime": 90,
"variancePercent": 30
}
},
{
"port": "3336",
"diff": 0.00003500,
"desc": "Variable difficulty (5000 H/s)",
"hidden": false,
"varDiff": {
"minDiff": 0.00000100,
"maxDiff": 0.00100000,
"targetTime": 30,
"retargetTime": 90,
"variancePercent": 30
}
},
{
"port": "3337",
"diff": 0.00005250,
"desc": "Variable difficulty (7500 H/s)",
"hidden": false,
"varDiff": {
"minDiff": 0.00000100,
"maxDiff": 0.00100000,
"targetTime": 30,
"retargetTime": 90,
"variancePercent": 30
}
},
{
"port": "3338",
"diff": 0.00007000,
"desc": "Variable difficulty (10000 H/s or greater)",
"hidden": false,
"varDiff": {
"minDiff": 0.00000100,
"maxDiff": 0.00100000,
"targetTime": 30,
"retargetTime": 90,
"variancePercent": 30
}
},
{
"port": "3339",
"diff": 0.00001000,
"desc": "Fixed difficulty (1500 H/s)",
"hidden": true
}
],
/* If a worker is submitting a high threshold of invalid shares we can temporarily ban their IP
* to reduce system/network load. Also useful to fight against flooding attacks. If running
* behind something like HAProxy be sure to enable 'tcpProxyProtocol', otherwise you'll end up
* banning your own IP address (and therefore all workers).
*/
"banning": {
/* Enable banning */
"enabled": true,
/* How many seconds to ban worker for*/
"time": 3600,
/* What percent of invalid shares triggers ban */
"invalidPercent": 50,
/* Check invalid percent when this many shares have been submitted */
"checkThreshold": 50
}
},
/**
* Payment Configuration
*/
"payments": {
/* Enable payments module */
"enabled": true,
/* How often to run in seconds */
"interval": 600,
/* Default payment threshold */
"defaultPayment": 1,
/* Minimum payment threshold */
"minPayment": 0.5,
/* Maximum payment threshold */
"maxPayment": 100,
/* Amount of PASC mined per PASA payout */
"pasaThreshold": 10,
/* Default b58 key to donate unclaimed PASA */
"pasaDonations": "3GhhbopnGkhcU7nosdcg6gTfEeGpo5gpDmnpB8RXYxfpeK3CzdYSHQZXuQ6RcNCLgkV74p7pNq2t6pQ4qVzCRNq5czY1jiPBXcDyeV"
},
/**
* Block Unlocker Configuration
*/
"blockUnlocker": {
/* Enable this module */
"enabled": true,
/* How often to check block statuses in seconds */
"interval": 30,
/* How many confirmations until balances are confirmed
* PascalCoin network requires 100 confirms, but you can decrease
* this if you have extra PASC / PASA in your pool wallet */
"depth": 100
},
/**
* Fee Configuration
*/
"fees": {
/* Pool fee as a percentage, i.e. 1 is 1% */
"poolFee": 0,
/* Pool development fee as a percentage, i.e. 0.5 is 0.5%
* Please consider leaving this fee in to support ongoing
* development of this open source pool. */
"devFee": 0.5,
/* Network fee in PASC, do not change this */
"networkFee": 10.0000
},
/**
* Exchange Configuration
*
* Array of known account numbers, their common name, and if they require payment ID
*/
"knownAccounts": [
{
"account": "86646-64",
"name": "Poloniex",
"requirePaymentID": true
},
{
"account": "349491-44",
"name": "Tokok",
"requirePaymentID": true
},
{
"account": "144066-66",
"name": "Myqbtc",
"requirePaymentID": true
},
{
"account": "632774-85",
"name": "Chaoex",
"requirePaymentID": true
}
],
/**
* Daemon Configuration
*/
"daemon": {
/* IP of pascalcoin_daemon */
"host": "127.0.0.1",
/* RPC port of pascalcoin_daemon */
"port": 4003,
/* Mining port of pascalcoin_daemon */
"miningPort": 4009,
/* Password of the pool wallet open in the daemon
* Make sure to set this with curl before operation!
* The pool will automatically unlock and relock the
* wallet during payments.
*/
"password": "your_wallet_password",
/* Daemon monitoring for admin page */
"monitoring": {
"enabled": true,
"interval": 60
}
},
/**
* Redis Configuration
*/
"redis": {
/* IP of redis server */
"host": "127.0.0.1",
/* Port of redis server */
"port": 6379,
/* Database index */
"database": 0,
/* Redis prefix */
"prefix": "pasc_mainnet",
/* Redis auth */
"auth": "",
/* Days to keep redis data */
"cleanupInterval": 7
},
/**
* API Configuration
*/
"api": {
/* Enable this module */
"enabled": true,
/* How many second worth of shares used to estimate hash rate */
"hashrateWindow": 600,
/* Gather stats and broadcast every this many seconds */
"updateInterval": 5,
/* Bind API to a specific IP (set to 0.0.0.0 for all) */
"bindIp": "0.0.0.0",
/* Port to serve API on */
"port": 8117,
/* Number of blocks to send at a time */
"blocks": 30,
/* Number of payments to send at a time */
"payments": 30,
/* Password required for admin stats */
"password": "your_admin_password",
/* Proxy X-Forwarded-For support */
"trustProxyIP": true
},
/**
* Charts Configuration
*/
"charts": {
/* General Pool Charts */
"pool": {
"hashrate": {
/* Enable this chart */
"enabled": true,
/* How often to get current value */
"updateInterval": 60,
/* Chart step interval calculated as average of all updated values */
"stepInterval": 900,
/* Max time to store charts, 604800 = 1 week */
"maximumPeriod": 604800
},
"miners": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 900,
"maximumPeriod": 604800
},
"workers": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 900,
"maximumPeriod": 604800
},
"nethash": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 900,
"maximumPeriod": 604800
},
"priceUSD": {
"enabled": true,
"updateInterval": 300,
"stepInterval": 1800,
"maximumPeriod": 604800
},
"priceBTC": {
"enabled": true,
"updateInterval": 300,
"stepInterval": 1800,
"maximumPeriod": 604800
},
"blocks": {
"enabled": true,
"days": 7
}
},
/* User specific Pool Charts */
"user": {
"hashrate": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 900,
"maximumPeriod": 604800
},
"worker_hashrate": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 900,
"maximumPeriod": 604800
},
"payments": {
"enabled": true
}
}
},
/**
* Email Configuration
*/
"email": {
/* Enable email notifications */
"enabled": true,
/* Send HTML emails */
"useHTML": false,
/* Default user notifications */
"defaultNotifications": "worker_start,worker_stop,payment_pasc,payment_pasa",
/* Address emails will be sent from */
"fromAddress": "[email protected]",
/* The transport mode (sendmail, smtp or mailgun) */
"transport": "mailgun",
/* Configuration for sendmail transport
* Documentation: http://nodemailer.com/transports/sendmail/
*/
"sendmail": {
"path": "/usr/sbin/sendmail"
},
/* Configuration for SMTP transport
* Documentation: http://nodemailer.com/smtp/
*/
"smtp": {
"host": "smtp.example.com",
"port": 587,
"secure": false,
"auth": {
"user": "username",
"pass": "password"
},
"tls": {
"rejectUnauthorized": false
}
},
/* Configuration for MailGun transport
* Documentation: https://documentation.mailgun.com
*/
"mailgun": {
"key": "",
"domain": ""
}
}
}