-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathsample.pool.config.json
93 lines (71 loc) · 2.27 KB
/
sample.pool.config.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
{
"staging":{
"poolEnv":"staging",
"apiConfig":{
"coinGeckoApiURL": "https://api.coingecko.com/api/v3/coins/oxbitcoin?localization=en&tickers=false&market_data=true&community_data=false&developer_data=false&sparkline=false",
"defiPulseApiKey": ""
},
"miningConfig":{
"minimumShareDifficulty": 50,
"allowCustomVardiff": false
},
"mintingConfig":{
"overrideSuspension": true,
"maxGasPriceGwei": 200,
"transactionType":"0x02",
"gasPriorityFeeGwei":2,
"gasPriceBoost":10,
"poolTokenFee": 5,
"publicAddress": "0xB11ca87E32075817C82Cc471994943a4290f4a14",
"privateKey":"",
"networkName":"goerli",
"web3Provider":"https://goerli.infura.io/v3/###"
},
"paymentsConfig":{
"enablePPS":true,
"maxGasPriceGwei": 5,
"transactionType":"0x00",
"gasPriorityFeeGwei":2,
"minBalanceForTransfer": 1500000000,
"rebroadcastPaymentWaitBlocks": 10,
"minPaymentsInBatch": 1,
"publicAddress": "0xB11ca87E32075817C82Cc471994943a4290f4a14",
"privateKey":"",
"networkName":"goerli",
"web3Provider": "https://goerli.infura.io/v3/###"
}
},
"production":{
"poolEnv":"production",
"apiConfig":{
"coinGeckoApiURL": "https://api.coingecko.com/api/v3/coins/oxbitcoin?localization=en&tickers=false&market_data=true&community_data=false&developer_data=false&sparkline=false",
"defiPulseApiKey": ""
},
"miningConfig":{
"minimumShareDifficulty": 5000,
"allowCustomVardiff": false
},
"mintingConfig":{
"overrideSuspension": false,
"maxGasPriceGwei": 200,
"gasPriorityFeeGwei":2,
"gasPriceBoost":10,
"transactionType":"0x02",
"poolTokenFee": 5,
"networkName":"mainnet",
"web3Provider":"https://mainnet.infura.io/v3/###"
},
"paymentsConfig":{
"enablePPS":true,
"maxGasPriceGwei": 5,
"transactionType":"0x00",
"gasPriceBoost":10,
"gasPriorityFeeGwei":2,
"minBalanceForTransfer": 1500000000,
"rebroadcastPaymentWaitBlocks": 10,
"minPaymentsInBatch": 1,
"networkName":"matic",
"web3Provider": "https://mainnet.infura.io/v3/###"
}
}
}