forked from nemosminer/NemosMiner
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Changed Config Items.txt
360 lines (259 loc) · 14.8 KB
/
Changed Config Items.txt
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
Note: NemosMiner will automatically update existing configuration files during updates. Changed configuration items will get renamed / removed or converted as needed.
It is recommended to review the updated configuration after an update.
New Configuration Items
=======================
# If set API will log all requests to this file, to disable leave empty
"APILogfile": "",
# If true will reboot computer when a miner is completely dead, eg. unresponsive
"AutoReboot": true,
# NemosMiner will periodically check for a new program version every n days (0 to disable)
"AutoUpdateCheckInterval": 1,
# NemosMiner will backup installed version before update to the new version
"BackupOnAutoUpdate": true,
# Acceptable bad share threshold ((bad + rejected + stale) / total) as reported by the miner. If the ratio is exceeded the miner will marked as failed. Allowed values: 0.00 - 1.00. Default of 0 disables this check
"BadShareRatioThreshold": 0.05,
# Show 1hr / 24hr & 7day pool earning averages in web dashboard
"BalancesShowAverages": true,
# Show 1hr / 6hrs / 24hr / 7 day & 30day pool earning sums in web dashboard
"BalancesShowSums": true,
# If true pool balances will be shown in all currencies (main & extra currencies) in web dashboard
"BalancesShowInAllCurrencies": true,
# If true pool balances will be shown in main currency in web dashboard
"BalancesShowInMainCurrency": true,
# Balances tracker will not track these pools (use pool base name without 24hr/Coins/Plus etc.)
"BalancesTrackerIgnorePool": [
"AHashPool",
],
# If true NemosMiner will store all balance tracker data in .\Logs\EarningTrackerLog.csv
"BalancesTrackerLog": false,
# Interval duration (in munutes) to trigger background task to collect pool balances & earnings data; set to 0 to disable
"BalancesTrackerPollInterval": 5,
# If true, power consumption will be read from miners and calculate power cost, required for true profit calculation
"CalculatePowerCost": true,
# Process priority for CPU miners
"CPUMinerProcessPriority": -2,
# Display numbers with maximal n decimal digits (larger numbers are shown with less decimal digits)
"DecimalsMax": 6,
# If true will not use CPU miners while running on battery
"DisableCpuMiningOnBattery": false,
# If true NemosMiner will not use any single algo miners
"DisableSingleAlgoMining": false,
# Set to true to disable miner fees (Note: not all miners support turning off their built in fees, others will reduce the hashrate)
"DisableMinerFee": false,
# If true all miners which contain fees are disabled
"DisableMinersWithFee": false,
# If true NemosMiner will not use any dual algo miners
"DisableDualAlgoMining": false,
# Default factor with which NemosMiner multiplies the prices reported by ALL pools. The default value is 1 (valid range is from 0.1 to 1.0).
# E.g. If you feel that the general profit estimations as reported by MPM are too high, e.g. %20, then set '-EarningsAdjustmentFactor' to 0.8.
"EarningsAdjustmentFactor": 1,
# Excluded device names, all devices not explicitly excluded will be active
"ExcludeDeviceName": [
"CPU#00",
"GPU#02"
],
# Extra currencies, i.e. GBP, USD, AUD, NZD ect., but also other crypto currencies, e.g. ETC, LTC, used in balances summary
"ExtraCurrencies": [
"USD",
"ETC"
],
# Process priority for GPU miners
"GPUMinerProcessPriority": -1,
# Time in seconds the system must be idle before mining starts (only if IdleDetection -eq $true)
"IdleSec": 120,
# If true, NM will ignore miner fee for earning & profit calculation
"IgnoreMinerFee": false,
# If true NM will ignore pool fee for earning & profit calculation
"IgnorePoolFee": false,
# If true, NM will ignore power cost in best miner selection, instead miners with best earnings will be selected
"IgnorePowerCost": false,
# If true, use the miners in the 'LegacyMiners' directory (Miners based on the original MultiPoolMiner format)
"IncludeLegacyMiners": true,
# If true NemosMiner will log the pool balance API data
"LogBalanceAPIResponse": false,
# Log level detail to be written to log file, see Write-Message function
"LogFile": [
"Info",
"Warn",
"Error",
"Verbose",
"Debug"
],
# Log level detail to be written to screen, see Write-Message function
"LogScreen": [
"Info",
"Warn",
"Error",
"Verbose",
"Debug"
],
# # Path to external log viewer config file
"LogViewerConfig": ".\Utils\NemosMiner_LogReader.xml",
# Path to optional external log reader (SnakeTail) [https://github.com/snakefoot/snaketail-net]
"LogViewerExe": ".\Utils\SnakeTail.exe",
# Use only pools with price accuracy greater than the configured value. Allowed values: 0.0 - 1.0 (0% - 100%)
"MinAccuracy": 0.5,
# Minimum cycles a miner must mine continously the same available algo@pool before switching is allowed (e.g. 3 would force a miner to stick mining algo@pool for min. 3 cycles before switching to another algo or pool)
"MinCycle": 1,
# Minimum number of hash rate samples required to store hash rate
"MinDataSamples": 20,
# Per algo multiply MinHashRateSample by this value
"MinDataSampleAlgoMultiplier": {
"X25r" = 3
}
# If true NemosMiner will create separate miner instances per device model. This will increase profitability. (WIP: Need to change each miner to support this new feature)
"MinerInstancePerDeviceModel": true,
# # Defines the set of available miners. 0: Benchmark best miner per algorithm and device only; 1: Benchmark optimal miners (more than one per algorithm and device); 2: Benchmark all miners per algorithm and device (except those in the unprofitable algorithms list); 3: Benchmark most miners per algorithm and device (even those in the unprofitable algorithms list, not recommended)
"MinerSet": 1,
# If true it will use only the best pools for mining. Some miners / algorithms are incompatible with some pools. In this case the miner will not be available. This can impact profitability, but is less CPU heavy. This was the default algorithm for versions older than 5.x
"MinerUseBestPoolsOnly": false,
# Show miner windows either "minimized": miner window is minimized, but accessible; "normal": miner windows are shown normally; "hidden": miners will run as a hidden background task and are not accessible (not recommended)
"MinerWindowStyle": = "minimized",
# If true Miner window is shown normal when benchmarking (recommended to better see miner messages)
"MinerWindowStyleNormalWhenBenchmarking": true,
# MiningPoolHub API Key (required to retrieve balance information)
"MinungPoolHubAPIKey": "",
# MiningPoolHub UserName, if left empty then $UserName is used
"MiningPoolHubUserName": "",
# NiceHash API Key (required to retrieve balance information)
"NicehashAPIKey": "",
# Set to $true if NiceHashWallet is a NiceHash internal Wallet (lower pool fees)
"NiceHashWalletIsInternal": false,
# NiceHash wallet, if left empty $Wallet is used
"NiceHashWallet": "",
# NiceHash Organization Id (required to retrieve balance information)
"NicehashOrganizationId": "",
# If true, NemosMiner will open firewall ports for all miners (requires admin rights!)
"OpenFirewallPorts": true,
# Power consumption of idle system in Watt. Part of profit calculation
"PowerConsumptionIdleSystemW": 60,
# NemosMiner will poll rig monitoring server every n minutes. Allowed values 0 - 60 minutes. 0 will disable polling
"RigMonitorPollInterval": 5,
# Time (in seconds) until NemosMiner aborts the pool request (useful if a pool's API is stuck). Note: do not make this value too small or you will not get an pool data
"PoolTimeout": 30,
# Price of power per kW⋅h (in $MainCurrency, e.g. CHF), valid from HH:mm (24hr format)
"PowerPricekWh": {
"00:00": 0.26,
"12:00": 0.3
},
# Minimum profit threshold, if profit is less than the configured value (in $MainCurrency, e.g. CHF) mining will stop (except for benchmarking & power consumption measuring)
"ProfitabilityThreshold": 0,
# Static power consumption per device in W, e.g. @{ "GPU#03" = 25, "GPU#04 = 55" } (in case HWiNFO cannot read power consumption)
"PowerConsumption": {
},
# ProHashing API Key (required to retrieve balance information)
"ProHashingAPIKey": "",
# ProHashing Mining Mode, Either PPS (Pay Per Share) or PPLNS (Pay per Last N Shares)
"ProHashingMiningMode": "PPS",
# ProHashing UserName, if left empty then $UserName is used
"ProHashingUserName": "",
# One of "Asia", "Europe North", "Europe West", "HongKong", "Japan", "Russia", "USA East", "USA West"
"Region": "Europe",
# Show pool data accuracy column in miner overview
"ShowAccuracy": true,
# Always show all miners in miner overview (if $false, only the best miners will be shown except when in benchmark / power consumption measurement)
"ShowAllMiner": false,
# If true NemosMiner will show the changelog when an update is available
$ShowChangeLog = $true,
# If true the console window will be shown
"ShowConsole": true,
# Show Currency column in miner overview
"ShowCurrency": true,
# Show miner earning column in miner overview
"ShowEarning": true,
# Show miner earning bias column in miner overview
"ShowEarningBias": true,
# Show miner fee column in miner overview (if fees are available, Property 'Fee')
"ShowMinerFee": true,
# Show pool column in miner overview
"ShowPool": true,
# Show pool fee column in miner overview (if fees are available, Property 'Fee')
"ShowPoolFee": true,
# Show Power cost column in miner overview (if power price is available, see PowerPricekWh)
"ShowPowerCost": true,
# Show miner profit column in miner overview (if power price is available, see PowerPricekWh)
"ShowProfit": true,
# Show miner profit bias column in miner overview (if power price is available, see PowerPricekWh)
"ShowProfitBias": true,
# Show Power consumption column in miner overview (if power price is available, see PowerPricekWh)
"ShowPowerConsumption": true,
# Show pool user name column in miner overview
"ShowUser": $true,
# If true NemosMiner will start legacy GUI
"StartGUI": false,
# If true NemosMiner will start legacy GUI minimized
"StartGUIMinimized": false,
# SSL pool connections: One of three values: 'Prefer' (use where available), 'Never' or 'Always' (pools that do not allow SSL are ignored)
"SSL": "Prefer",
# If $true NemosMiner will allow SSL/TLS connections with self signed certificates (this is a security issue)
"SSLAllowSelfSignedCertificate": $false,
# One of 'Idle', 'Paused' or 'Running'. This is the same as the buttons in the Web GUI
"StartupMode": false,
# If true, NM will ignore rejected shares when measuring hashrates
"SubtractBadShares": true,
# Current pool prices must all be all with 'SyncWindow' minutes, otherwise stable price will be used insted of the biased value and a warning will be shown
"SyncWindow": 5,
# If true write transcript files to log folder
"Transcript": false,
# Ignore pool if price is more than $UnrealPoolPriceFactor higher than average price of all other pools with same algo & currency
"UnrealPoolPriceFactor": 3,
# Ignore pool if price is more than $UnrealMinerEarningFactor higher than average price of all other miners with same algo & currency
"UnrealMinerEarningFactor": 3,
# If true pools (currently ZergPool only) will use anycast for best network performance and ping times
"UseAnycast": $false,
# If true Miners in web and legacy GUI will be shown with colored background depending on status
"UseColorForMinerStatus": true,
# If true NemosMiner will apply miner specific tweaks, e.g mild overclock. This may improve profitability at the expense of system stability (Admin rights are required)
"UseMinerTweaks:" false,
# If true NemosMiner will display BTC values in mBTC (BTC/1000)
"UsemBTC": true,
# First value: time (in seconds) until first hash rate sample is valid (default 0, accept first sample), second value: time (in seconds) the miner is allowed to warm up, e.g. to compile the binaries or to get the API ready and providing first data samples before it get marked as failed. Default 15 (seconds).
"WarmupTimes" = [0, 15],
# Wallets.[Currency=WalletAdrress]; one entry per currency
$Wallets: {
"BTC" = "1QGADhdMRpp9Pk5u5zG1TrHKRrdK5R81TE",
"ETC" = "0x7CF99ec9029A98AFd385f106A93977D8105Fec0f",
"ETH" = "0x92e6F22C1493289e6AD2768E1F502Fc5b414a287"
},
# Number of watchdog timers with same algorithm name & algorithm until miner/algo combination gets suspended
"WatchdogMinerAlgorithmCount": 3,
# Number of watchdog timers with same miner name until miner gets suspended
"WatchdogMinerCount": 6,
# Number of watchdog timers with same pool name & algorithm until pool/algo combination gets suspended
"WatchdogPoolAlgorithmCount": 3,
# Number of watchdog timers with same pool name until pool gets suspended
"WatchdogPoolCount": 7,
# If true launch Web GUI (default: true, to disable add ' -Webgui:false' to your NemosMiner start file)
"WebGUI" = $true,
Removed Configuration Items
===========================
"APIKey": "", (Replaced with ProHashingAPIKey & ProHashingAPIKey)
"EstimateCorrection": false, obsolete. Accuracy & Bias reduce prices which in turn avoids pools with high price fluctuation
"GPUCount": 1, obsolete
"HideConsole": false, obsolete
"MarginOfError": 0,4, obsolete
"MinDataSampleAlgoMultiplier": obsolete, use miner warmuptimes instead
"PoolsConfigFile": "", obsolete. PoolsConfig moved to normal config file
"SelGPUDSTM": "0 1", obsolete; replaced with per device configuration option "ExcludeDeviceName"
"SelGPUCC": "0,1", obsolete; replaced with per device configuration option "ExcludeDeviceName"
"SSL": not supported until a later release
"Type": ["AMD", "CPU", "NVIDIA"], obsolete; replaced with per device configuration option "ExcludeDeviceName"
"TypeAMD": true, obsolete; replaced with per device configuration option "ExcludeDeviceName"
"TypeCPU": true, obsolete; replaced with per device configuration option "ExcludeDeviceName"
"TypeNVIDIA": true, obsolete; replaced with per device configuration option "ExcludeDeviceName"
"UserName": "", (Replaced with NiceHashUserName & ProHashingUsername)
"Wallet": [BTC Address]; replaced with "Wallets.BTC"
"WebGUIUseColor"": Replaced with "UseColorForMinerStatus". Setting works in web and legacy GUI
Renamed configuration items (same functionality)
================================================
"Currency" renamed to "MainCurrency"
"BalancesTrackerIgnorePool" renamed to "BalancesTrackerExcludePool"
"Donate" renamed to "Donation"
"MineWhenIdle" renamed to "IdleDetection"
"PowerUsage"IdleSystemW"" renamed to "PowerConsumption"
"PowerUsageIdleSystemW" renamed to "PowerConsumptionIdleSystemW"
"RunningMinerGainPct" renamed to "MinerSwitchingThreshold"
"ShowPowerUsage" renamed to "ShowPowerConsumption"
NiceHash pool configuration:
============================
- Added "IsInternal" flag (lower fee of 2% instad of 5%), see .\Config.PoolsConfig-NiceHashInternal.json for an example