From a19138b8acff78921442af13cce43d6eb2fa65b1 Mon Sep 17 00:00:00 2001 From: Useless Guru <30080938+UselessGuru@users.noreply.github.com> Date: Sun, 23 Apr 2023 13:00:47 +0200 Subject: [PATCH] v4.3.4.3 Changes: - Core: Renamed algorithm 'Blake3Ironfish' to 'IronFish' Enhancements: - Brains: Add error logging - Core / Includes.psm1: Optimize Get-Rate (less disk reads) - Legacy & Web GUI / Pool data: Show Price in mBTC when $UsemBIT -eq $true - Legacy GUI: Optimize table draw speed - Web GUI: Add 'Primary Pool (Variant)' & 'Secondary Pool (Variant)' columns to miner tables (hidden by default) Fixes: - BalanceTracker not updating PoolsLastEarnings data (regression from 4.3.0.0) - Brains: Convert null values to 0 - Brains: Convert numeric string values to numbers - Brains: Invalid Plus price calculation (Regression from v4.3.4.1) - Core: Core crash when receiving $null from DataReaderJob Miner updates: - GMiner-v3.34 - Rigel-v1.4.4 - TeamRedMiner-v0.10.11 --- Balances/HashCryptos.ps1 | 4 ++-- Balances/HiveON.ps1 | 4 ++-- Balances/MiningDutch.ps1 | 4 ++-- Balances/MiningPoolHub.ps1 | 4 ++-- Balances/NiceHash External.ps1 | 4 ++-- Balances/NiceHash Internal.ps1 | 4 ++-- Balances/ProHashing.ps1 | 4 ++-- Balances/ZergPool.ps1 | 4 ++-- Balances/Zpool.ps1 | 4 ++-- Brains/HashCryptos.ps1 | 4 ++-- Brains/MiningDutch.ps1 | 4 ++-- Brains/ProHashing.ps1 | 4 ++-- Brains/ZPool.ps1 | 4 ++-- Brains/ZergPool.ps1 | 4 ++-- Includes/API.psm1 | 4 ++-- Includes/BalancesTracker.ps1 | 4 ++-- Includes/Core.ps1 | 4 ++-- Includes/DevAPI.ps1 | 2 +- Includes/Downloader.ps1 | 4 ++-- Includes/Include.psm1 | 4 ++-- Includes/LegacyGUI.ps1 | 4 ++-- Includes/MinerAPIs/Ccminer.ps1 | 4 ++-- Includes/MinerAPIs/EthMiner.ps1 | 4 ++-- Includes/MinerAPIs/FireIce.ps1 | 4 ++-- Includes/MinerAPIs/Gminer.ps1 | 4 ++-- Includes/MinerAPIs/MiniZ.ps1 | 4 ++-- Includes/MinerAPIs/NBMiner.ps1 | 4 ++-- Includes/MinerAPIs/NanoMiner.ps1 | 4 ++-- Includes/MinerAPIs/Nheq.ps1 | 4 ++-- Includes/MinerAPIs/Rigel.ps1 | 4 ++-- Includes/MinerAPIs/SRBMiner.ps1 | 4 ++-- Includes/MinerAPIs/TeamBlackMiner.ps1 | 4 ++-- Includes/MinerAPIs/Trex.ps1 | 4 ++-- Includes/MinerAPIs/Xgminer.ps1 | 4 ++-- Includes/MinerAPIs/XmRig.ps1 | 4 ++-- Includes/MinerAPIs/lolMiner.ps1 | 4 ++-- NemosMiner.ps1 | 6 +++--- Pools/HashCryptos.ps1 | 4 ++-- Pools/HiveON.ps1 | 4 ++-- Pools/MiningDutch.ps1 | 2 +- Pools/MiningPoolHub.ps1 | 4 ++-- Pools/NiceHash.ps1 | 4 ++-- Pools/ProHashing.ps1 | 4 ++-- Pools/ZPool.ps1 | 4 ++-- Pools/ZergPool.ps1 | 4 ++-- README.md | 2 +- Web/APIdocs.html | 6 +++--- Web/scripts/demo.ps1 | 2 +- 48 files changed, 94 insertions(+), 94 deletions(-) diff --git a/Balances/HashCryptos.ps1 b/Balances/HashCryptos.ps1 index 04ac6d6c59..8f510f92b0 100644 --- a/Balances/HashCryptos.ps1 +++ b/Balances/HashCryptos.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Zpool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/HiveON.ps1 b/Balances/HiveON.ps1 index 50cc3b0b7a..13f9686a54 100644 --- a/Balances/HiveON.ps1 +++ b/Balances/HiveON.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Hiveon.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/MiningDutch.ps1 b/Balances/MiningDutch.ps1 index b89423ec9b..330c680590 100644 --- a/Balances/MiningDutch.ps1 +++ b/Balances/MiningDutch.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningDutch.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/MiningPoolHub.ps1 b/Balances/MiningPoolHub.ps1 index 82667775fc..3a4aebf8d3 100644 --- a/Balances/MiningPoolHub.ps1 +++ b/Balances/MiningPoolHub.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningPoolHub.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/NiceHash External.ps1 b/Balances/NiceHash External.ps1 index 8709a42bf0..00aeaeafc3 100644 --- a/Balances/NiceHash External.ps1 +++ b/Balances/NiceHash External.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NiceHash Internal.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/NiceHash Internal.ps1 b/Balances/NiceHash Internal.ps1 index d1e1d33bd6..3602ad02a1 100644 --- a/Balances/NiceHash Internal.ps1 +++ b/Balances/NiceHash Internal.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NiceHash Internal.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/ProHashing.ps1 b/Balances/ProHashing.ps1 index 631a811eb0..30eb0f82ad 100644 --- a/Balances/ProHashing.ps1 +++ b/Balances/ProHashing.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ProHashing.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/ZergPool.ps1 b/Balances/ZergPool.ps1 index 94319512fa..684c18af52 100644 --- a/Balances/ZergPool.ps1 +++ b/Balances/ZergPool.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ZergPool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Balances/Zpool.ps1 b/Balances/Zpool.ps1 index 03741cc9bb..f34738e561 100644 --- a/Balances/Zpool.ps1 +++ b/Balances/Zpool.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Zpool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Brains/HashCryptos.ps1 b/Brains/HashCryptos.ps1 index 8b111be4cc..5d64464db2 100644 --- a/Brains/HashCryptos.ps1 +++ b/Brains/HashCryptos.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningDutch.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Brains/MiningDutch.ps1 b/Brains/MiningDutch.ps1 index 4266d5c302..c1d9e9face 100644 --- a/Brains/MiningDutch.ps1 +++ b/Brains/MiningDutch.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningDutch.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Brains/ProHashing.ps1 b/Brains/ProHashing.ps1 index 1549a63553..cdb28ce629 100644 --- a/Brains/ProHashing.ps1 +++ b/Brains/ProHashing.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ProHashing.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Brains/ZPool.ps1 b/Brains/ZPool.ps1 index 714cca4919..1c654b3d85 100644 --- a/Brains/ZPool.ps1 +++ b/Brains/ZPool.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ZPool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Brains/ZergPool.ps1 b/Brains/ZergPool.ps1 index 69a85c0ee5..12102bdb63 100644 --- a/Brains/ZergPool.ps1 +++ b/Brains/ZergPool.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ZergPool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Includes/API.psm1 b/Includes/API.psm1 index 235e3a08f8..5edbc953e2 100644 --- a/Includes/API.psm1 +++ b/Includes/API.psm1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: API.psm1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> Function Start-APIServer { diff --git a/Includes/BalancesTracker.ps1 b/Includes/BalancesTracker.ps1 index 656bdd5f11..af9a2acc05 100644 --- a/Includes/BalancesTracker.ps1 +++ b/Includes/BalancesTracker.ps1 @@ -21,8 +21,8 @@ along with this program. If not, see . <# Product: NemosMiner File: BalancesTracker.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> Do { diff --git a/Includes/Core.ps1 b/Includes/Core.ps1 index 11caa2ff48..5c79cea5ac 100644 --- a/Includes/Core.ps1 +++ b/Includes/Core.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Core.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module .\Include.psm1 diff --git a/Includes/DevAPI.ps1 b/Includes/DevAPI.ps1 index b6218065a2..6707f6e0c7 100644 --- a/Includes/DevAPI.ps1 +++ b/Includes/DevAPI.ps1 @@ -1,4 +1,4 @@ -$Request = '2022-12-13 22:33:07: http://127.0.0.1:3999/functions/config/set?{"Algorithm"%3A%5B%5D%2C"APILogfile"%3A"Debug%5C%5CAPILog.txt"%2C"APIPort"%3A3999%2C"AutoReboot"%3Atrue%2C"AutoUpdate"%3Atrue%2C"AutoUpdateCheckInterval"%3A1%2C"BackupOnAutoUpdate"%3Atrue%2C"BadShareRatioThreshold"%3A0.05%2C"BalancesKeepAlive"%3Atrue%2C"BalancesShowAverages"%3Afalse%2C"BalancesShowInAllCurrencies"%3Afalse%2C"BalancesShowInMainCurrency"%3Atrue%2C"BalancesShowSums"%3Afalse%2C"BalancesTrackerExcludePool"%3A%5B"_BlockMasters"%5D%2C"BalancesTrackerLog"%3Afalse%2C"BalancesTrackerPollInterval"%3A10%2C"CalculatePowerCost"%3Atrue%2C"ConfigFileVersion"%3A"4.3.4.2"%2C"CPUMinerProcessPriority"%3A-2%2C"Currency"%3A"CHF"%2C"DecimalsMax"%3A6%2C"Delay"%3A0%2C"DisableDualAlgoMining"%3Afalse%2C"DisableMinerFee"%3Afalse%2C"DisableMinersWithFee"%3Afalse%2C"DisableSingleAlgoMining"%3Afalse%2C"Donation"%3A2%2C"EarningsAdjustmentFactor"%3A0.8%2C"ExcludeDeviceName"%3A%5B"CPU%2300"%5D%2C"ExcludeMinerName"%3A%5B%5D%2C"ExtraCurrencies"%3A%5B"ETH"%2C"USD"%2C"EUR"%2C"NZD"%2C"AUD"%2C"THB"%5D%2C"GPUMinerProcessPriority"%3A-1%2C"IdleDetection"%3Afalse%2C"IdleSec"%3A5%2C"IgnoreMinerFee"%3Afalse%2C"IgnorePoolFee"%3Afalse%2C"IgnorePowerCost"%3Atrue%2C"Interval"%3A30%2C"LogBalanceAPIResponse"%3Afalse%2C"LogToFile"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%2C"Debug"%5D%2C"LogToScreen"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%2C"Debug"%5D%2C"MinAccuracy"%3A0.5%2C"MinDataSample"%3A20%2C"MinDataSampleAlgoMultiplier"%3A{"X16r"%3A3}%2C"MinerInstancePerDeviceModel"%3Atrue%2C"MinerSet"%3A2%2C"MinerSwitchingThreshold"%3A2.5%2C"MinerWindowStyle"%3A"minimized"%2C"MinerWindowStyleNormalWhenBenchmarking"%3Atrue%2C"MiningDutchAPIKey"%3A"7c5ea2d2e997f5094a55969d3a855c4169b46d5eee6065d4fa9251e026980714"%2C"MiningDutchUserName"%3A"UselessGuru"%2C"MiningPoolHubAPIKey"%3A"28328accdd4306c631a881bd8130f0d258a94b0e33569e0eef7e83773d018c98"%2C"MiningPoolHubUserName"%3A"UselessGuru"%2C"MinInterval"%3A3%2C"MinWorker"%3A0%2C"MonitoringServer"%3A"https%3A%2F%2Fnemosminer.com"%2C"MonitoringUser"%3A"8e92d491-a5e6-42d7-8928-5be72d743b0c"%2C"NiceHashAPIKey"%3A"0dfa9c5b-12f9-4f62-9152-41d6a517de00"%2C"NiceHashAPISecret"%3A"15a4618a-1f3a-4b96-924a-48845f435d98f4f28ac4-a51b-4de0-bf8d-584929764dd5"%2C"NiceHashOrganizationId"%3A"f48afaf4-fc54-4645-af2d-56334a48aebb"%2C"NiceHashWallet"%3A"33hZYX8iFg5zm9E3geqrNgeP6TMzszZk5R"%2C"NiceHashWalletIsInternal"%3Atrue%2C"OpenFirewallPorts"%3Atrue%2C"PayoutCurrency"%3A"BTC"%2C"PoolAPIAllowedFailureCount"%3A3%2C"PoolAPIRetryInterval"%3A3%2C"PoolAPITimeout"%3A3%2C"PoolName"%3A%5B"Hiveon"%2C"MiningDutchPlus"%2C"MiningPoolHubCoins"%2C"NiceHash"%2C"ProHashingPlus"%2C"ZergPoolCoinsPlus"%2C"ZPoolPlus"%5D%2C"PoolsConfigFile"%3A".%5C%5CConfig%5C%5CPoolsConfig.json"%2C"PoolTimeout"%3A30%2C"PowerPricekWh"%3A{"00%3A00"%3A0.26}%2C"PowerUsage"%3A{"_GPU%2302"%3A35}%2C"PowerUsageIdleSystemW"%3A160%2C"ProfitabilityThreshold"%3A-12.6%2C"ProHashingAPIKey"%3A"8ea6a00dea6945172167708c9784b8deead1da2f5e543ef312bfc7ed1073fe4a"%2C"ProHashingMiningMode"%3A"PPLNS"%2C"ProHashingUserName"%3A"UselessGuru"%2C"Proxy"%3A""%2C"Region"%3A"Europe"%2C"ReportToServer"%3Atrue%2C"ShowAccuracy"%3Atrue%2C"ShowAllMiners"%3Afalse%2C"ShowChangeLog"%3Atrue%2C"ShowCoinName"%3Atrue%2C"ShowCurrency"%3Atrue%2C"ShowEarning"%3Atrue%2C"ShowEarningBias"%3Atrue%2C"ShowMinerFee"%3Atrue%2C"ShowPool"%3Atrue%2C"ShowPoolBalances"%3Afalse%2C"ShowPoolFee"%3Atrue%2C"ShowPowerCost"%3Atrue%2C"ShowPowerUsage"%3Atrue%2C"ShowProfit"%3Atrue%2C"ShowProfitBias"%3Atrue%2C"ShowUser"%3Afalse%2C"ShowWorkerStatus"%3Atrue%2C"LogViewerConfig"%3A".%5C%5CUtils%5C%5CNemosMiner_LogReader.xml"%2C"SnakeTailExe"%3A".%5C%5CUtils%5C%5CSnakeTail.exe"%2C"SSL"%3A"Prefer"%2C"StartGUI"%3Afalse%2C"StartGUIMinimized"%3Afalse%2C"StartupMode"%3A"Running"%2C"SubtractBadShares"%3Atrue%2C"SyncWindow"%3A3%2C"Transcript"%3Afalse%2C"UIStyle"%3A"light"%2C"UnrealMinerEarningFactor"%3A1%2C"UnrealPoolPriceFactor"%3A2%2C"UseAnycast"%3Atrue%2C"UseColorForMinerStatus"%3Atrue%2C"UsemBTC"%3Atrue%2C"UseMinerTweaks"%3Atrue%2C"Wallets"%3A{"BTC"%3A"1GPSq8txFnyrYdXL8t6S94mYdF8cGqVQJF"%2C"ETC"%3A"0x7CF99ec9029A98AFd385f106A93977D8105Fec0f"%2C"ETH"%3A"0x92e6F22C1493289e6AD2768E1F502Fc5b414a287"}%2C"Watchdog"%3Atrue%2C"WatchdogCount"%3A3%2C"WebGUI"%3Atrue%2C"WorkerName"%3A"Blackbox"}' +$Request = '2022-12-13 22:33:07: http://127.0.0.1:3999/functions/config/set?{"Algorithm"%3A%5B%5D%2C"APILogfile"%3A"Debug%5C%5CAPILog.txt"%2C"APIPort"%3A3999%2C"AutoReboot"%3Atrue%2C"AutoUpdate"%3Atrue%2C"AutoUpdateCheckInterval"%3A1%2C"BackupOnAutoUpdate"%3Atrue%2C"BadShareRatioThreshold"%3A0.05%2C"BalancesKeepAlive"%3Atrue%2C"BalancesShowAverages"%3Afalse%2C"BalancesShowInAllCurrencies"%3Afalse%2C"BalancesShowInMainCurrency"%3Atrue%2C"BalancesShowSums"%3Afalse%2C"BalancesTrackerExcludePool"%3A%5B"_BlockMasters"%5D%2C"BalancesTrackerLog"%3Afalse%2C"BalancesTrackerPollInterval"%3A10%2C"CalculatePowerCost"%3Atrue%2C"ConfigFileVersion"%3A"4.3.4.3"%2C"CPUMinerProcessPriority"%3A-2%2C"Currency"%3A"CHF"%2C"DecimalsMax"%3A6%2C"Delay"%3A0%2C"DisableDualAlgoMining"%3Afalse%2C"DisableMinerFee"%3Afalse%2C"DisableMinersWithFee"%3Afalse%2C"DisableSingleAlgoMining"%3Afalse%2C"Donation"%3A2%2C"EarningsAdjustmentFactor"%3A0.8%2C"ExcludeDeviceName"%3A%5B"CPU%2300"%5D%2C"ExcludeMinerName"%3A%5B%5D%2C"ExtraCurrencies"%3A%5B"ETH"%2C"USD"%2C"EUR"%2C"NZD"%2C"AUD"%2C"THB"%5D%2C"GPUMinerProcessPriority"%3A-1%2C"IdleDetection"%3Afalse%2C"IdleSec"%3A5%2C"IgnoreMinerFee"%3Afalse%2C"IgnorePoolFee"%3Afalse%2C"IgnorePowerCost"%3Atrue%2C"Interval"%3A30%2C"LogBalanceAPIResponse"%3Afalse%2C"LogToFile"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%2C"Debug"%5D%2C"LogToScreen"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%2C"Debug"%5D%2C"MinAccuracy"%3A0.5%2C"MinDataSample"%3A20%2C"MinDataSampleAlgoMultiplier"%3A{"X16r"%3A3}%2C"MinerInstancePerDeviceModel"%3Atrue%2C"MinerSet"%3A2%2C"MinerSwitchingThreshold"%3A2.5%2C"MinerWindowStyle"%3A"minimized"%2C"MinerWindowStyleNormalWhenBenchmarking"%3Atrue%2C"MiningDutchAPIKey"%3A"7c5ea2d2e997f5094a55969d3a855c4169b46d5eee6065d4fa9251e026980714"%2C"MiningDutchUserName"%3A"UselessGuru"%2C"MiningPoolHubAPIKey"%3A"28328accdd4306c631a881bd8130f0d258a94b0e33569e0eef7e83773d018c98"%2C"MiningPoolHubUserName"%3A"UselessGuru"%2C"MinInterval"%3A3%2C"MinWorker"%3A0%2C"MonitoringServer"%3A"https%3A%2F%2Fnemosminer.com"%2C"MonitoringUser"%3A"8e92d491-a5e6-42d7-8928-5be72d743b0c"%2C"NiceHashAPIKey"%3A"0dfa9c5b-12f9-4f62-9152-41d6a517de00"%2C"NiceHashAPISecret"%3A"15a4618a-1f3a-4b96-924a-48845f435d98f4f28ac4-a51b-4de0-bf8d-584929764dd5"%2C"NiceHashOrganizationId"%3A"f48afaf4-fc54-4645-af2d-56334a48aebb"%2C"NiceHashWallet"%3A"33hZYX8iFg5zm9E3geqrNgeP6TMzszZk5R"%2C"NiceHashWalletIsInternal"%3Atrue%2C"OpenFirewallPorts"%3Atrue%2C"PayoutCurrency"%3A"BTC"%2C"PoolAPIAllowedFailureCount"%3A3%2C"PoolAPIRetryInterval"%3A3%2C"PoolAPITimeout"%3A3%2C"PoolName"%3A%5B"Hiveon"%2C"MiningDutchPlus"%2C"MiningPoolHubCoins"%2C"NiceHash"%2C"ProHashingPlus"%2C"ZergPoolCoinsPlus"%2C"ZPoolPlus"%5D%2C"PoolsConfigFile"%3A".%5C%5CConfig%5C%5CPoolsConfig.json"%2C"PoolTimeout"%3A30%2C"PowerPricekWh"%3A{"00%3A00"%3A0.26}%2C"PowerUsage"%3A{"_GPU%2302"%3A35}%2C"PowerUsageIdleSystemW"%3A160%2C"ProfitabilityThreshold"%3A-12.6%2C"ProHashingAPIKey"%3A"8ea6a00dea6945172167708c9784b8deead1da2f5e543ef312bfc7ed1073fe4a"%2C"ProHashingMiningMode"%3A"PPLNS"%2C"ProHashingUserName"%3A"UselessGuru"%2C"Proxy"%3A""%2C"Region"%3A"Europe"%2C"ReportToServer"%3Atrue%2C"ShowAccuracy"%3Atrue%2C"ShowAllMiners"%3Afalse%2C"ShowChangeLog"%3Atrue%2C"ShowCoinName"%3Atrue%2C"ShowCurrency"%3Atrue%2C"ShowEarning"%3Atrue%2C"ShowEarningBias"%3Atrue%2C"ShowMinerFee"%3Atrue%2C"ShowPool"%3Atrue%2C"ShowPoolBalances"%3Afalse%2C"ShowPoolFee"%3Atrue%2C"ShowPowerCost"%3Atrue%2C"ShowPowerUsage"%3Atrue%2C"ShowProfit"%3Atrue%2C"ShowProfitBias"%3Atrue%2C"ShowUser"%3Afalse%2C"ShowWorkerStatus"%3Atrue%2C"LogViewerConfig"%3A".%5C%5CUtils%5C%5CNemosMiner_LogReader.xml"%2C"SnakeTailExe"%3A".%5C%5CUtils%5C%5CSnakeTail.exe"%2C"SSL"%3A"Prefer"%2C"StartGUI"%3Afalse%2C"StartGUIMinimized"%3Afalse%2C"StartupMode"%3A"Running"%2C"SubtractBadShares"%3Atrue%2C"SyncWindow"%3A3%2C"Transcript"%3Afalse%2C"UIStyle"%3A"light"%2C"UnrealMinerEarningFactor"%3A1%2C"UnrealPoolPriceFactor"%3A2%2C"UseAnycast"%3Atrue%2C"UseColorForMinerStatus"%3Atrue%2C"UsemBTC"%3Atrue%2C"UseMinerTweaks"%3Atrue%2C"Wallets"%3A{"BTC"%3A"1GPSq8txFnyrYdXL8t6S94mYdF8cGqVQJF"%2C"ETC"%3A"0x7CF99ec9029A98AFd385f106A93977D8105Fec0f"%2C"ETH"%3A"0x92e6F22C1493289e6AD2768E1F502Fc5b414a287"}%2C"Watchdog"%3Atrue%2C"WatchdogCount"%3A3%2C"WebGUI"%3Atrue%2C"WorkerName"%3A"Blackbox"}' Set-Location("c:\Users\Stephan\Desktop\NemosMiner\") diff --git a/Includes/Downloader.ps1 b/Includes/Downloader.ps1 index 93d39c1158..cb16e181d3 100644 --- a/Includes/Downloader.ps1 +++ b/Includes/Downloader.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Downloader.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module .\Includes\Include.psm1 diff --git a/Includes/Include.psm1 b/Includes/Include.psm1 index be5a8bac9d..dee6cc635f 100644 --- a/Includes/Include.psm1 +++ b/Includes/Include.psm1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: include.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> # Window handling diff --git a/Includes/LegacyGUI.ps1 b/Includes/LegacyGUI.ps1 index dd39029c33..9cd5641e79 100644 --- a/Includes/LegacyGUI.ps1 +++ b/Includes/LegacyGUI.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: LegacyGUI.psm1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> # [Void] [System.Windows.Forms.Application]::EnableVisualStyles() diff --git a/Includes/MinerAPIs/Ccminer.ps1 b/Includes/MinerAPIs/Ccminer.ps1 index bd2b85222f..199593f414 100644 --- a/Includes/MinerAPIs/Ccminer.ps1 +++ b/Includes/MinerAPIs/Ccminer.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: CCminer.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Ccminer : Miner { diff --git a/Includes/MinerAPIs/EthMiner.ps1 b/Includes/MinerAPIs/EthMiner.ps1 index 1f62c16fe6..8db654c3ea 100644 --- a/Includes/MinerAPIs/EthMiner.ps1 +++ b/Includes/MinerAPIs/EthMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: EthMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class EthMiner : Miner { diff --git a/Includes/MinerAPIs/FireIce.ps1 b/Includes/MinerAPIs/FireIce.ps1 index b5e4925e02..5ae2486da7 100644 --- a/Includes/MinerAPIs/FireIce.ps1 +++ b/Includes/MinerAPIs/FireIce.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: FireIce.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Fireice : Miner { diff --git a/Includes/MinerAPIs/Gminer.ps1 b/Includes/MinerAPIs/Gminer.ps1 index 43b3dc48c7..ea9cbd97da 100644 --- a/Includes/MinerAPIs/Gminer.ps1 +++ b/Includes/MinerAPIs/Gminer.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: GMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Gminer : Miner { diff --git a/Includes/MinerAPIs/MiniZ.ps1 b/Includes/MinerAPIs/MiniZ.ps1 index 8d864d932f..58c0e9d267 100644 --- a/Includes/MinerAPIs/MiniZ.ps1 +++ b/Includes/MinerAPIs/MiniZ.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiniZ.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class MiniZ : Miner { diff --git a/Includes/MinerAPIs/NBMiner.ps1 b/Includes/MinerAPIs/NBMiner.ps1 index af9e7110de..f713a56f0f 100644 --- a/Includes/MinerAPIs/NBMiner.ps1 +++ b/Includes/MinerAPIs/NBMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NBMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class NBMiner : Miner { diff --git a/Includes/MinerAPIs/NanoMiner.ps1 b/Includes/MinerAPIs/NanoMiner.ps1 index ccdb9844f6..a5dee4e373 100644 --- a/Includes/MinerAPIs/NanoMiner.ps1 +++ b/Includes/MinerAPIs/NanoMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NanoMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class NanoMiner : Miner { diff --git a/Includes/MinerAPIs/Nheq.ps1 b/Includes/MinerAPIs/Nheq.ps1 index 307fd3bf27..dc3ee7e60f 100644 --- a/Includes/MinerAPIs/Nheq.ps1 +++ b/Includes/MinerAPIs/Nheq.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Nheq.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Nheq : Miner { diff --git a/Includes/MinerAPIs/Rigel.ps1 b/Includes/MinerAPIs/Rigel.ps1 index 9cf043e488..f5c1921fe6 100644 --- a/Includes/MinerAPIs/Rigel.ps1 +++ b/Includes/MinerAPIs/Rigel.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Rigel.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Rigel : Miner { diff --git a/Includes/MinerAPIs/SRBMiner.ps1 b/Includes/MinerAPIs/SRBMiner.ps1 index 1c7e3a8993..aec039a462 100644 --- a/Includes/MinerAPIs/SRBMiner.ps1 +++ b/Includes/MinerAPIs/SRBMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: SRBminer.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class SRBMiner : Miner { diff --git a/Includes/MinerAPIs/TeamBlackMiner.ps1 b/Includes/MinerAPIs/TeamBlackMiner.ps1 index c2fa3c410c..55f28e088e 100644 --- a/Includes/MinerAPIs/TeamBlackMiner.ps1 +++ b/Includes/MinerAPIs/TeamBlackMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: lolMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class TeamBlackMiner : Miner { diff --git a/Includes/MinerAPIs/Trex.ps1 b/Includes/MinerAPIs/Trex.ps1 index 1e48e8bab9..8b865c5aae 100644 --- a/Includes/MinerAPIs/Trex.ps1 +++ b/Includes/MinerAPIs/Trex.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Trex.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Trex : Miner { diff --git a/Includes/MinerAPIs/Xgminer.ps1 b/Includes/MinerAPIs/Xgminer.ps1 index e1c1c7a792..b7bf11771a 100644 --- a/Includes/MinerAPIs/Xgminer.ps1 +++ b/Includes/MinerAPIs/Xgminer.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Xgminer.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class Xgminer : Miner { diff --git a/Includes/MinerAPIs/XmRig.ps1 b/Includes/MinerAPIs/XmRig.ps1 index 8e5cd3b8bf..88b5a8a266 100644 --- a/Includes/MinerAPIs/XmRig.ps1 +++ b/Includes/MinerAPIs/XmRig.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: XmRig.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class XmRig : Miner { diff --git a/Includes/MinerAPIs/lolMiner.ps1 b/Includes/MinerAPIs/lolMiner.ps1 index 85b73abf3a..247392fd2b 100644 --- a/Includes/MinerAPIs/lolMiner.ps1 +++ b/Includes/MinerAPIs/lolMiner.ps1 @@ -18,8 +18,8 @@ along with this program. If not, see . <# Product: NemosMiner File: lolMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> class lolMiner : Miner { diff --git a/NemosMiner.ps1 b/NemosMiner.ps1 index 8188af82a9..5148c6a3fd 100644 --- a/NemosMiner.ps1 +++ b/NemosMiner.ps1 @@ -21,8 +21,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NemosMiner.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> [CmdletBinding()] @@ -291,7 +291,7 @@ $Variables.Branding = [PSCustomObject]@{ BrandName = "NemosMiner" BrandWebSite = "https://nemosminer.com" ProductLabel = "NemosMiner" - Version = [System.Version]"4.3.4.2" + Version = [System.Version]"4.3.4.3" } $WscriptShell = New-Object -ComObject Wscript.Shell diff --git a/Pools/HashCryptos.ps1 b/Pools/HashCryptos.ps1 index 16405bf368..eef28b9870 100644 --- a/Pools/HashCryptos.ps1 +++ b/Pools/HashCryptos.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: HashCryptos.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/HiveON.ps1 b/Pools/HiveON.ps1 index 35dd7c91c6..61dabd7044 100644 --- a/Pools/HiveON.ps1 +++ b/Pools/HiveON.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: Hiveon.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/MiningDutch.ps1 b/Pools/MiningDutch.ps1 index 23d152473f..236af85599 100644 --- a/Pools/MiningDutch.ps1 +++ b/Pools/MiningDutch.ps1 @@ -19,7 +19,7 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningDutch.ps1 -Version: 4.3.4.2 +Version: 4.3.4.3 Version date: 05 April 2023 #> diff --git a/Pools/MiningPoolHub.ps1 b/Pools/MiningPoolHub.ps1 index 60c28cebb6..18065b1afb 100644 --- a/Pools/MiningPoolHub.ps1 +++ b/Pools/MiningPoolHub.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: MiningPoolHub.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/NiceHash.ps1 b/Pools/NiceHash.ps1 index 8748d6c60c..8a0919182e 100644 --- a/Pools/NiceHash.ps1 +++ b/Pools/NiceHash.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: NiceHash.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/ProHashing.ps1 b/Pools/ProHashing.ps1 index 21c7e98936..ff92615e85 100644 --- a/Pools/ProHashing.ps1 +++ b/Pools/ProHashing.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ProHashing.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/ZPool.ps1 b/Pools/ZPool.ps1 index 0f9bbed1b7..8158b6c265 100644 --- a/Pools/ZPool.ps1 +++ b/Pools/ZPool.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ZPool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/Pools/ZergPool.ps1 b/Pools/ZergPool.ps1 index 4b267704ca..2464b2d62b 100644 --- a/Pools/ZergPool.ps1 +++ b/Pools/ZergPool.ps1 @@ -19,8 +19,8 @@ along with this program. If not, see . <# Product: NemosMiner File: ZergPool.ps1 -Version: 4.3.4.2 -Version date: 18 April 2023 +Version: 4.3.4.3 +Version date: 23 April 2023 #> using module ..\Includes\Include.psm1 diff --git a/README.md b/README.md index 66bbd86b93..a4b6ff2265 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ NemosMiner monitors mining pools in real-time in order to find the most profitable algorithm -Updated 18 April 2023 +Updated 23 April 2023 Copyright (c) 2018-2023 Nemo, MrPlus & UselessGuru diff --git a/Web/APIdocs.html b/Web/APIdocs.html index 27e5f7a5f1..a86d80d47c 100644 --- a/Web/APIdocs.html +++ b/Web/APIdocs.html @@ -16,8 +16,8 @@ Product: NemosMiner File: API.psm1 -version: 4.3.4.2 -version date: 18 April 2023--> +version: 4.3.4.3 +version date: 23 April 2023--> @@ -271,7 +271,7 @@

Functions


/functions/config/set
Write full config
Parameters: full config (JSON) -
e.g.: /functions/config/set?{"Algorithm"%3A%5B%5D%2C"APILogfile"%3A""%2C"APIPort"%3A3999%2C"AutoReboot"%3Atrue%2C"AutoUpdate"%3Atrue%2C"AutoUpdateCheckInterval"%3A1%2C"BackupOnAutoUpdate"%3Atrue%2C"BadShareRatioThreshold"%3A0.05%2C"BalancesKeepAlive"%3Atrue%2C"BalancesShowInAllCurrencies"%3Atrue%2C"BalancesTrackerExcludePool"%3A%5B%5D%2C"BalancesTrackerLog"%3Afalse%2C"BalancesTrackerPollInterval"%3A10%2C"CalculatePowerCost"%3Atrue%2C"ConfigFileVersion"%3A"4.3.4.2"%2C"CPUMinerProcessPriority"%3A-2%2C"Currency"%3A"CHF"%2C"DecimalsMax"%3A6%2C"Delay"%3A0%2C"DisableDualAlgoMining"%3Afalse%2C"DisableMinerFee"%3Afalse%2C"DisableMinersWithFee"%3Afalse%2C"DisableSingleAlgoMining"%3Afalse%2C"Donate"%3A13%2C"EarningsAdjustmentFactor"%3A1%2C"ExcludeDeviceName"%3A%5B%5D%2C"ExcludeMinerName"%3A%5B%5D%2C"ExtraCurrencies"%3A%5B"ETC"%2C"ETH"%2C"mBTC"%5D%2C"GPUMinerProcessPriority"%3A-1%2C"IdleDetection"%3Afalse%2C"IdleSec"%3A120%2C"IgnoreMinerFee"%3Afalse%2C"IgnorePoolFee"%3Afalse%2C"IgnorePowerCost"%3Afalse%2C"Interval"%3A90%2C"LogBalanceAPIResponse"%3Afalse%2C"LogToFile"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%5D%2C"LogToScreen"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%5D%2C"MinAccuracy"%3A0.5%2C"MinDataSample"%3A20%2C"MinDataSampleAlgoMultiplier"%3A{"X16r"%3A3}%2C"MinerInstancePerDeviceModel"%3Afalse%2C"MinerSet"%3A1%2C"MinerSwitchingThreshold"%3A10%2C"MinerWindowStyle"%3A"minimized"%2C"MinerWindowStyleNormalWhenBenchmarking"%3Atrue%2C"MiningPoolHubAPIKey"%3A""%2C"MiningPoolHubUserName"%3A"Nemo"%2C"MinInterval"%3A1%2C"MinWorker"%3A25%2C"MonitoringServer"%3A"https%3A%2F%2Fnemosminer.com"%2C"MonitoringUser"%3A""%2C"NiceHashAPIKey"%3A""%2C"NiceHashAPISecret"%3A""%2C"NiceHashOrganizationId"%3A""%2C"NiceHashWallet"%3A""%2C"NiceHashWalletIsInternal"%3Afalse%2C"OpenFirewallPorts"%3Atrue%2C"PayoutCurrency"%3A"BTC"%2C"PoolAPIAllowedFailureCount"%3A3%2C"PoolAPIRetryInterval"%3A3%2C"PoolAPITimeout"%3A20%2C"PoolName"%3A%5B"MiningPoolHubCoins"%2C"NiceHash"%5D%2C"PoolsConfigFile"%3A".%5C%5CConfig%5C%5CPoolsConfig.json"%2C"PoolTimeout"%3A20%2C"PowerPricekWh"%3A{"00%3A00"%3A0.26%2C"12%3A00"%3A0.3}%2C"PowerUsage"%3A{}%2C"PowerUsageIdleSystemW"%3A60%2C"ProfitabilityThreshold"%3A-99%2C"ProHashingAPIKey"%3A""%2C"ProHashingMiningMode"%3A"PPS"%2C"ProHashingUserName"%3A"UselessGuru"%2C"Proxy"%3A""%2C"Region"%3A"Europe"%2C"ReportToServer"%3Afalse%2C"ShowAccuracy"%3Atrue%2C"ShowAllMiners"%3Afalse%2C"ShowChangeLog"%3Afalse%2C"ShowCoinName"%3Atrue%2C"ShowCurrency"%3Atrue%2C"ShowEarning"%3Atrue%2C"ShowEarningBias"%3Atrue%2C"ShowMinerFee"%3Atrue%2C"ShowPoolBalances"%3Afalse%2C"ShowPoolFee"%3Atrue%2C"ShowPowerCost"%3Atrue%2C"ShowPowerUsage"%3Atrue%2C"ShowProfit"%3Atrue%2C"ShowProfitBias"%3Atrue%2C"ShowUser"%3Afalse%2C"ShowWorkerStatus"%3Atrue%2C"SnakeTailConfig"%3A".%5C%5CUtils%5C%5CNemosMiner_LogReader.xml"%2C"SnakeTailExe"%3A".%5C%5CUtils%5C%5CSnakeTail.exe"%2C"SSL"%3A"prefer"%2C"StartGUIMinimized"%3Atrue%2C"StartupMode"%3A"Idle"%2C"SubtractBadShares"%3Atrue%2C"SyncWindow"%3A3%2C"Transcript"%3Afalse%2C"UIStyle"%3A"light"%2C"UnrealMinerEarningFactor"%3A5%2C"UnrealPoolPriceFactor"%3A1.5%2C"UseAnycast"%3Atrue%2C"UsemBTC"%3Atrue%2C"UseMinerTweaks"%3Afalse%2C"Wallets"%3A{"BTC"%3A"1GPSq8txFnyrYdXL8t6S94mYdF8cGqVQJF"%2C"ETC"%3A""%2C"ETH"%3A""}%2C"Watchdog"%3Atrue%2C"WatchdogCount"%3A3%2C"WebGUI"%3Atrue%2C"UseColorForMinerStatus"%3Atrue%2C"WorkerName"%3A"BLACKBOX"} +
e.g.: /functions/config/set?{"Algorithm"%3A%5B%5D%2C"APILogfile"%3A""%2C"APIPort"%3A3999%2C"AutoReboot"%3Atrue%2C"AutoUpdate"%3Atrue%2C"AutoUpdateCheckInterval"%3A1%2C"BackupOnAutoUpdate"%3Atrue%2C"BadShareRatioThreshold"%3A0.05%2C"BalancesKeepAlive"%3Atrue%2C"BalancesShowInAllCurrencies"%3Atrue%2C"BalancesTrackerExcludePool"%3A%5B%5D%2C"BalancesTrackerLog"%3Afalse%2C"BalancesTrackerPollInterval"%3A10%2C"CalculatePowerCost"%3Atrue%2C"ConfigFileVersion"%3A"4.3.4.3"%2C"CPUMinerProcessPriority"%3A-2%2C"Currency"%3A"CHF"%2C"DecimalsMax"%3A6%2C"Delay"%3A0%2C"DisableDualAlgoMining"%3Afalse%2C"DisableMinerFee"%3Afalse%2C"DisableMinersWithFee"%3Afalse%2C"DisableSingleAlgoMining"%3Afalse%2C"Donate"%3A13%2C"EarningsAdjustmentFactor"%3A1%2C"ExcludeDeviceName"%3A%5B%5D%2C"ExcludeMinerName"%3A%5B%5D%2C"ExtraCurrencies"%3A%5B"ETC"%2C"ETH"%2C"mBTC"%5D%2C"GPUMinerProcessPriority"%3A-1%2C"IdleDetection"%3Afalse%2C"IdleSec"%3A120%2C"IgnoreMinerFee"%3Afalse%2C"IgnorePoolFee"%3Afalse%2C"IgnorePowerCost"%3Afalse%2C"Interval"%3A90%2C"LogBalanceAPIResponse"%3Afalse%2C"LogToFile"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%5D%2C"LogToScreen"%3A%5B"Info"%2C"Warn"%2C"Error"%2C"Verbose"%5D%2C"MinAccuracy"%3A0.5%2C"MinDataSample"%3A20%2C"MinDataSampleAlgoMultiplier"%3A{"X16r"%3A3}%2C"MinerInstancePerDeviceModel"%3Afalse%2C"MinerSet"%3A1%2C"MinerSwitchingThreshold"%3A10%2C"MinerWindowStyle"%3A"minimized"%2C"MinerWindowStyleNormalWhenBenchmarking"%3Atrue%2C"MiningPoolHubAPIKey"%3A""%2C"MiningPoolHubUserName"%3A"Nemo"%2C"MinInterval"%3A1%2C"MinWorker"%3A25%2C"MonitoringServer"%3A"https%3A%2F%2Fnemosminer.com"%2C"MonitoringUser"%3A""%2C"NiceHashAPIKey"%3A""%2C"NiceHashAPISecret"%3A""%2C"NiceHashOrganizationId"%3A""%2C"NiceHashWallet"%3A""%2C"NiceHashWalletIsInternal"%3Afalse%2C"OpenFirewallPorts"%3Atrue%2C"PayoutCurrency"%3A"BTC"%2C"PoolAPIAllowedFailureCount"%3A3%2C"PoolAPIRetryInterval"%3A3%2C"PoolAPITimeout"%3A20%2C"PoolName"%3A%5B"MiningPoolHubCoins"%2C"NiceHash"%5D%2C"PoolsConfigFile"%3A".%5C%5CConfig%5C%5CPoolsConfig.json"%2C"PoolTimeout"%3A20%2C"PowerPricekWh"%3A{"00%3A00"%3A0.26%2C"12%3A00"%3A0.3}%2C"PowerUsage"%3A{}%2C"PowerUsageIdleSystemW"%3A60%2C"ProfitabilityThreshold"%3A-99%2C"ProHashingAPIKey"%3A""%2C"ProHashingMiningMode"%3A"PPS"%2C"ProHashingUserName"%3A"UselessGuru"%2C"Proxy"%3A""%2C"Region"%3A"Europe"%2C"ReportToServer"%3Afalse%2C"ShowAccuracy"%3Atrue%2C"ShowAllMiners"%3Afalse%2C"ShowChangeLog"%3Afalse%2C"ShowCoinName"%3Atrue%2C"ShowCurrency"%3Atrue%2C"ShowEarning"%3Atrue%2C"ShowEarningBias"%3Atrue%2C"ShowMinerFee"%3Atrue%2C"ShowPoolBalances"%3Afalse%2C"ShowPoolFee"%3Atrue%2C"ShowPowerCost"%3Atrue%2C"ShowPowerUsage"%3Atrue%2C"ShowProfit"%3Atrue%2C"ShowProfitBias"%3Atrue%2C"ShowUser"%3Afalse%2C"ShowWorkerStatus"%3Atrue%2C"SnakeTailConfig"%3A".%5C%5CUtils%5C%5CNemosMiner_LogReader.xml"%2C"SnakeTailExe"%3A".%5C%5CUtils%5C%5CSnakeTail.exe"%2C"SSL"%3A"prefer"%2C"StartGUIMinimized"%3Atrue%2C"StartupMode"%3A"Idle"%2C"SubtractBadShares"%3Atrue%2C"SyncWindow"%3A3%2C"Transcript"%3Afalse%2C"UIStyle"%3A"light"%2C"UnrealMinerEarningFactor"%3A5%2C"UnrealPoolPriceFactor"%3A1.5%2C"UseAnycast"%3Atrue%2C"UsemBTC"%3Atrue%2C"UseMinerTweaks"%3Afalse%2C"Wallets"%3A{"BTC"%3A"1GPSq8txFnyrYdXL8t6S94mYdF8cGqVQJF"%2C"ETC"%3A""%2C"ETH"%3A""}%2C"Watchdog"%3Atrue%2C"WatchdogCount"%3A3%2C"WebGUI"%3Atrue%2C"UseColorForMinerStatus"%3Atrue%2C"WorkerName"%3A"BLACKBOX"}

/functions/file/edit diff --git a/Web/scripts/demo.ps1 b/Web/scripts/demo.ps1 index fe754109ab..7866c66448 100644 --- a/Web/scripts/demo.ps1 +++ b/Web/scripts/demo.ps1 @@ -18,7 +18,7 @@ along with this program. If not, see . <# Product: NemosMiner File: demo.psm1 -Version: 4.3.4.2 +Version: 4.3.4.3 Version date: 20 October 2022 #>