forked from alephium/mining-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composePoolConfig.json
78 lines (65 loc) · 1.56 KB
/
composePoolConfig.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
{
"logPath": "./logs/",
"connectionTimeout": 600,
"maxConnectionsFromSameIP": 10,
"whitelistIps": [],
"jobExpiryPeriod": 10,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 500,
"purgeInterval": 300
},
"statsInterval": 600,
"diff1TargetNumZero": 30,
"pool": {
"port": 20032,
"diff": 1,
"proxyProtocol": false,
"varDiff": {
"minDiff": 1,
"maxDiff": 4096,
"targetTime": 2.5,
"retargetTime": 90,
"variancePercent": 30
}
},
"daemon": {
"host": "127.0.0.1",
"port": 12973,
"apiKey": "0000000000000000000000000000000000000000000000000000000000000000",
"minerApiPort": 10973
},
"redis": {
"host": "mining-redis",
"port": 6379,
"db": 0
},
"withholdPercent": 0.005,
"rewardEnabled": true,
"rewardInterval": 600,
"confirmationTime": 30600,
"paymentEnabled": true,
"minPaymentCoins": "0.5",
"paymentInterval": 3600,
"txConfirmations": {
"chainConfirmations": 10,
"fromGroupConfirmations": 5,
"toGroupConfirmations": 5
},
"persistence": {
"enabled": false,
"host": "mining-postgres",
"port": 5432,
"user": "postgres",
"password": "postgres",
"database": "mining-pool"
},
"addresses": [],
"wallet": {
"name": "",
"password": "",
"mnemonicPassphrase": ""
}
}