Skip to content

Commit 10f9a14

Browse files
committed
v.1.3.4b
1 parent 140244c commit 10f9a14

20 files changed

Lines changed: 229 additions & 84 deletions

Build/Unix/Hive/HiveCmd.ps1

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ function Get-AlgorithmList {
243243
if($Type -eq "NVIDIA1" -or $Type -eq "AMD1")
244244
{
245245
Start-Process ".\Unix\Hive\killall.sh" -ArgumentList "LogData" -Wait
246-
Start-Sleep -S 1
246+
Start-Sleep -S .25
247247
$DeviceCall | Set-Content ".\Unix\Hive\mineref.sh" -Force
248248
$Ports | Set-Content ".\Unix\Hive\port.sh" -Force
249-
Start-Process "screen" -ArgumentList "-S LogData -d -m"
250-
Start-Process ".\Unix\Hive\LogData.sh" -ArgumentList "LogData $DeviceCall $Type $GPUGroups $MDir $Algos $APIs $Ports"
249+
Start-Process "screen" -ArgumentList "-S LogData -d -m" -Wait
250+
Start-Process ".\Unix\Hive\LogData.sh" -ArgumentList "LogData $DeviceCall $Type $GPUGroups $MDir $Algos $APIs $Ports" -Wait
251251
}
252252
if($Type -eq "CPU")
253253
{
@@ -256,9 +256,9 @@ function Get-AlgorithmList {
256256
$DeviceCall | Set-Content ".\Unix\Hive\mineref.sh" -Force
257257
$Ports | Set-Content ".\Unix\Hive\port.sh" -Force
258258
Start-Process ".\Unix\Hive\killall.sh" -ArgumentList "LogData" -Wait
259-
Start-Sleep -S 1
260-
Start-Process "screen" -ArgumentList "-S LogData -d -m"
261-
Start-Process ".\Unix\Hive\LogData.sh" -ArgumentList "LogData $DeviceCall $Type $GPUGroups $MDir $Algos $APIs $Ports"
259+
Start-Sleep -S .25
260+
Start-Process "screen" -ArgumentList "-S LogData -d -m" -Wait
261+
Start-Process ".\Unix\Hive\LogData.sh" -ArgumentList "LogData $DeviceCall $Type $GPUGroups $MDir $Algos $APIs $Ports" -Wait
262262
}
263263
}
264264
Write-Host "
@@ -272,7 +272,7 @@ function Get-AlgorithmList {
272272
"
273273
Start-Process ".\Unix\Hive\killall.sh" -ArgumentList "$($Type)" -Wait
274274
Start-Sleep $Delay #Wait to prevent BSOD
275-
Start-Sleep -S 1
275+
Start-Sleep -S .25
276276
if($DeviceCall -eq "lyclminer"){
277277
Set-Location $MinerDir
278278
$ConfFile = Get-Content ".\lyclMiner.conf"
@@ -288,10 +288,10 @@ function Get-AlgorithmList {
288288
Set-Location $MinerDIr
289289
Start-Process "chmod" -ArgumentList "+x $MinerInstance" -Wait
290290
Set-Location $CmdDir
291-
Start-Sleep -S 1
291+
Start-Sleep -S .25
292292
Write-Host "Starting $($Name) Mining $($Coins) on $($Type)" -ForegroundColor Cyan
293-
if($Type -like "*NVIDIA*"){Start-Process ".\Unix\Hive\startupnvidia.sh" -ArgumentList "$MinerDir $($Type) $CmdDir/Unix/Hive $Logs" -Wait}
294-
if($Type -like "*AMD*"){Start-Process ".\Unix\Hive\startupamd.sh" -ArgumentList "$MinerDir $($Type) $CmdDir/Unix/Hive $Logs $Export" -Wait}
293+
if($Type -like "*NVIDIA*"){Start-Process ".\Unix\Hive\startupnvidia.sh" -ArgumentList "$MinerDir $($Type) $CmdDir/Unix/Hive $Logs $Export" -Wait}
294+
if($Type -like "*AMD*"){Start-Process ".\Unix\Hive\startupamd.sh" -ArgumentList "$MinerDir $($Type) $CmdDir/Unix/Hive $Logs" -Wait}
295295
if($Type -like "*CPU*"){Start-Process ".\Unix\Hive\startupcpu.sh" -ArgumentList "$MinerDir $($Type) $CmdDir/Unix/Hive $Logs" -Wait}
296296
$MinerTimer.Restart()
297297
$MinerProcessId = $null
@@ -308,7 +308,7 @@ function Get-AlgorithmList {
308308
}
309309
$MinerTimer.Stop()
310310
Rename-Item "$MinerDir\$($MinerInstance)" -NewName "$MinerName" -Force
311-
Start-Sleep -S 1
311+
Start-Sleep -S .25
312312
Set-Location (Split-Path $script:MyInvocation.MyCommand.Path)
313313
}
314314

Build/Unix/Hive/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
./CPU-2 -t 3 -a Lyra2rev2 -o stratum+tcp://lyra2rev2.usa.nicehash.com:3347 -b 0.0.0.0:4048 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p x
1+
./NVIDIA2-18 -d 3,4,5,7,8,11,12 -a x16r -o stratum+tcp://x16r.mine.zergpool.com:3636 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,mc=HTH

Build/Unix/Hive/hivestats.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
GPU=11460
2+
GPU=11370
3+
GPU=11510
4+
GPU=11440
5+
GPU=11420
6+
GPU=11800
7+
RAW=63901280
8+
KHS=63901.28
9+
ACC=14
10+
RJ=0
11+
ALGO=x16r

Build/Unix/Hive/logstats.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
GPU=11460
2+
GPU=11370
3+
GPU=11510
4+
GPU=11440
5+
GPU=11420
6+
GPU=11800
7+
RAW=63901280
8+
KHS=63901.28
9+
ACC=14
10+
RJ=0
11+
ALGO=x16r

Build/Unix/Hive/mineractive.sh

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,29 @@
22

33
Status: Running
44

5-
Speed Active Launched Command
6-
----- ------ -------- -------
7-
0.00 PH/s 00 Days 00 Hours 00 Minutes Once cpuminer 3 -a Lyra2rev2 -o stratum+tcp://lyra2rev2.usa.nicehash.com:3347 -b 0.0.0.0:4048 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p x
5+
Speed Active Launched Command
6+
----- ------ -------- -------
7+
0.00 PH/s 00 Days 00 Hours 00 Minutes Once t-rex 3,4,5,7,8,11,12 -a x16r -o stratum+tcp://x16r.mine.zergpool.com:3636 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,mc=HTH
8+
0.00 PH/s 00 Days 00 Hours 00 Minutes Once t-rex 0,1,2,6,9,10 -a x16r -o stratum+tcp://x16r.mine.zergpool.com:3636 -b 0.0.0.0:4068 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,mc=HTH
89

910

1011
Status: Idle
1112

12-
Speed Active Launched Command
13-
----- ------ -------- -------
14-
32.48 H/s 00 Days 00 Hours 02 Minutes Once cpuminer 3 -a Cryptonight -o stratum+tcp://cryptonight.usa.nicehash.com:3355 -b 0.0.0.0:4048 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p x
13+
Speed Active Launched Command
14+
----- ------ -------- -------
15+
38.22 MH/s 00 Days 00 Hours 05 Minutes Once t-rex 3,4,5,7,8,11,12 -a x16r -o stratum+tcp://blockmasters.co:3636 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
16+
9.99 MH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 3,4,5,7,8,11,12 -a Lyra2z -o stratum+tcp://blockmasters.co:4553 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
17+
123.60 MH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 3,4,5,7,8,11,12 -a Lyra2v2 -o stratum+tcp://blockmasters.co:4533 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
18+
79.06 MH/s 00 Days 00 Hours 02 Minutes Once t-rex 0,1,2,6,9,10 -a x16s -o stratum+tcp://blockmasters.co:3663 -b 0.0.0.0:4068 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
19+
51.30 MH/s 00 Days 00 Hours 02 Minutes Once t-rex 3,4,5,7,8,11,12 -a c11 -o stratum+tcp://c11.mine.zergpool.com:3573 -b 0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
20+
270.97 MH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 0,1,2,6,9,10 -a Lyra2v2 -o stratum+tcp://blockmasters.co:4533 -b 0.0.0.0:4068 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
21+
121.77 MH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 3,4,5,7,8,11,12 -a lyra2v2 -o stratum+tcp://lyra2rev2.usa.nicehash.com:3347 -b 0.0.0.0:4069 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p x
22+
271.60 MH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 0,1,2,6,9,10 -a lyra2v2 -o stratum+tcp://lyra2rev2.usa.nicehash.com:3347 -b 0.0.0.0:4068 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p x
23+
2.42 KH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 3,4,5,7,8,11,12 -a Cryptonightv7 -o stratum+tcp://cryptonightv7.usa.nicehash.com:3363 -b 0.0.0.0:4069 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop
24+
-p x
25+
4.50 KH/s 00 Days 00 Hours 02 Minutes Once CryptoDredge 0,1,2,6,9,10 -a Cryptonightv7 -o stratum+tcp://cryptonightv7.usa.nicehash.com:3363 -b 0.0.0.0:4068 -u 3JfBiUZZV17DTjAFCnZb97UpBgtLPLLDop -p
26+
x
27+
27.95 MH/s 00 Days 00 Hours 02 Minutes Once ccminer GTX1050ti#1,GTX1050ti#2,GTX1050ti#3,GTX1050ti#4,GTX1050ti#5,GTX1050ti#6,GTX1050ti#7 -a sib -o stratum+tcp://sib.mine.zergpool.com:5033 -b
28+
0.0.0.0:4069 -u RKirUe978mBoa2MRWqeMGqDzVAKTafKh8H -p c=RVN,ID=MMHash
1529

16-
Time Left Until Database Starts: 30
30+
Time Left Until Database Starts: 219

Build/Unix/Hive/mineref.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cryptozeny
1+
trex

Build/Unix/Hive/minerstats.sh

Lines changed: 82 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,90 @@
11

2-
Tuesday, September 4, 2018 10:33:07 PM
2+
Wednesday, September 5, 2018 12:59:48 AM
33

44

55

66

7-
Type: CPU
7+
Type: NVIDIA2
88

9-
Miner Coin Speed BTC/Day RVN/Day USD/Day Algorithm Pool
10-
----- ---- ----- ------- ------- ------- --------- ----
11-
Cryptozeny-RaspPi-CPU lyra2REv2 Bench Bench Bench Bench lyra2REv2 nicehash
12-
Cryptozeny-RaspPi-CPU lyra2z Bench Bench Bench Bench lyra2z blockmasters_algo
13-
Cryptozeny-RaspPi-CPU skein Bench Bench Bench Bench skein blockmasters_algo
14-
Cryptozeny-RaspPi-CPU x16r Bench Bench Bench Bench x16r blockmasters_algo
15-
Cryptozeny-RaspPi-CPU x16s Bench Bench Bench Bench x16s blockmasters_algo
16-
Cryptozeny-RaspPi-CPU x17 Bench Bench Bench Bench x17 blockmasters_algo
17-
Cryptozeny-RaspPi-CPU xevan Bench Bench Bench Bench xevan zergpool_algo
18-
JayDDee-CPU cryptonightv7 Bench Bench Bench Bench cryptonightv7 nicehash
19-
JayDDee-CPU lyra2z Bench Bench Bench Bench lyra2z blockmasters_algo
20-
JayDDee-CPU m7m Bench Bench Bench Bench m7m zergpool_algo
21-
JayDDee-CPU yescrypt Bench Bench Bench Bench yescrypt blockmasters_algo
22-
JayDDee-CPU yescryptr16 Bench Bench Bench Bench yescryptr16 zergpool_algo
9+
Miner Coin Speed BTC/Day RVN/Day USD/Day Algorithm Pool
10+
----- ---- ----- ------- ------- ------- --------- ----
11+
TRex-CCDevices2 HTH 47.86 MH/s 0.00049 164.19454 3.612 x16r zergpool_coin
12+
TRex-CCDevices2 RVN 47.86 MH/s 0.00048 160.21310 3.525 x16r zergpool_coin
13+
TRex-CCDevices2 x17 36.64 MH/s 0.00046 154.12124 3.391 x17 blockmasters_algo
14+
TRex-CCDevices2 STONE 47.86 MH/s 0.00043 142.53551 3.136 x16r zergpool_coin
15+
TRex-CCDevices2 x16s 35.89 MH/s 0.00042 141.53102 3.114 x16s blockmasters_algo
16+
TRex-CCDevices2 GRV 47.86 MH/s 0.00040 132.66154 2.919 x16r zergpool_coin
17+
CryptoDredge-CCDevices2 neoscrypt 3.37 MH/s 0.00035 118.56742 2.608 neoscrypt blockmasters_algo
18+
TRex-CCDevices2 polytimos 77.29 MH/s 0.00035 118.30888 2.603 polytimos zergpool_algo
19+
CryptoDredge-CCDevices2 allium 20.24 MH/s 0.00034 115.22176 2.535 allium zergpool_algo
20+
CryptoDredge-CCDevices2 lyra2z 9.99 MH/s 0.00033 110.88984 2.440 lyra2z blockmasters_algo
21+
TRex-CCDevices2 c11 51.30 MH/s 0.00032 108.41280 2.385 c11 zergpool_algo
22+
EWBF-EWBFDevices2 equihash144 110.00 H/s 0.00032 105.76091 2.327 equihash144 zergpool_algo
23+
CryptoDredge-CCDevices2 cryptonightheavy 2.75 KH/s 0.00031 102.82222 2.262 cryptonightheavy nicehash
24+
CryptoDredge-CCDevices2 lyra2v2 123.60 MH/s 0.00029 96.65475 2.126 lyra2v2 zergpool_algo
25+
Enemy-CCDevices2 sonoa 5.45 MH/s 0.00029 95.58483 2.103 sonoa zergpool_algo
26+
TRex-CCDevices2 skunk 95.44 MH/s 0.00028 92.73675 2.040 skunk zergpool_algo
27+
EWBF-EWBFDevices2 equihash192 57.00 H/s 0.00027 91.48528 2.013 equihash192 zergpool_algo
28+
Claymore-ClayDevices2 daggerhashimoto 98.32 MH/s 0.00027 90.37889 1.988 daggerhashimoto nicehash
29+
TRex-CCDevices2 balloon 94.14 KH/s 0.00027 89.28345 1.964 balloon zergpool_algo
30+
CryptoDredge-CCDevices2 lyra2rev2 121.77 MH/s 0.00024 80.44484 1.770 lyra2rev2 nicehash
31+
EWBF-EWBFDevices2 equihash96 58.23 KH/s 0.00023 78.35294 1.724 equihash96 zergpool_algo
32+
CryptoDredge-CCDevices2 cryptonightv7 2.42 KH/s 0.00023 77.97301 1.715 cryptonightv7 nicehash
33+
TRex-CCDevices2 phi 68.53 MH/s 0.00023 77.96538 1.715 phi blockmasters_algo
34+
Enemy-CCDevices2 hex 30.00 MH/s 0.00022 74.02270 1.628 hex zergpool_algo
35+
TRex-CCDevices2 tribus 229.23 MH/s 0.00022 73.23213 1.611 tribus zergpool_algo
36+
Tpruvot-CCDevices2 hmq1725 12.10 MH/s 0.00022 72.97339 1.605 hmq1725 zergpool_algo
37+
TRex-CCDevices2 bitcore 59.89 MH/s 0.00021 70.54974 1.552 bitcore zergpool_algo
38+
DSTM-DSTMDevices2 equihash 1.34 KH/s 0.00019 63.33144 1.393 equihash nicehash
39+
CryptoDredge-CCDevices2 skein 1.33 GH/s 0.00017 58.22841 1.281 skein zergpool_algo
40+
Enemy-CCDevices2 xevan 9.24 MH/s 0.00017 55.57275 1.223 xevan zergpool_algo
41+
Tpruvot-CCDevices2 keccakc 1.97 GH/s 0.00012 39.84157 0.877 keccakc zergpool_algo
42+
Enemy-CCDevices2 aergo 14.25 MH/s 0.00008 28.17288 0.620 aergo zergpool_algo
43+
CryptoDredge-CCDevices2 blake2s 10.84 GH/s 0.00007 24.31008 0.535 blake2s blockmasters_algo
44+
Tpruvot-CCDevices2 keccak 1.99 GH/s 0.00006 19.78141 0.435 keccak zergpool_algo
45+
Enemy-CCDevices2 timetravel 65.41 MH/s 0.00005 15.45364 0.340 timetravel zergpool_algo
2346

2447

25-
Currently Mining lyra2REv2
48+
Type: NVIDIA1
49+
50+
Miner Coin Speed BTC/Day RVN/Day USD/Day Algorithm Pool
51+
----- ---- ----- ------- ------- ------- --------- ----
52+
TRex-CCDevices1 HTH 106.65 MH/s 0.00109 365.90447 8.050 x16r zergpool_coin
53+
TRex-CCDevices1 RVN 106.65 MH/s 0.00107 357.03191 7.855 x16r zergpool_coin
54+
TRex-CCDevices1 x17 80.41 MH/s 0.00101 338.29140 7.442 x17 blockmasters_algo
55+
TRex-CCDevices1 STONE 106.65 MH/s 0.00095 317.63773 6.988 x16r zergpool_coin
56+
TRex-CCDevices1 x16s 79.06 MH/s 0.00093 311.75389 6.859 x16s blockmasters_algo
57+
TRex-CCDevices1 GRV 106.65 MH/s 0.00088 295.63377 6.504 x16r zergpool_coin
58+
CryptoDredge-CCDevices1 Phi2 29.57 MH/s 0.00086 287.14543 6.317 Phi2 blockmasters_algo
59+
TRex-CCDevices1 polytimos 168.07 MH/s 0.00077 257.27461 5.660 polytimos zergpool_algo
60+
EWBF-EWBFDevices1 equihash144 264.00 H/s 0.00076 253.82619 5.584 equihash144 zergpool_algo
61+
CryptoDredge-CCDevices1 neoscrypt 7.20 MH/s 0.00076 253.68579 5.581 neoscrypt blockmasters_algo
62+
TRex-CCDevices1 c11 111.86 MH/s 0.00071 236.37304 5.200 c11 zergpool_algo
63+
CryptoDredge-CCDevices1 lyra2v2 270.97 MH/s 0.00063 211.90714 4.662 lyra2v2 zergpool_algo
64+
Enemy-CCDevices1 sonoa 11.61 MH/s 0.00061 203.79726 4.484 sonoa zergpool_algo
65+
EWBF-EWBFDevices1 equihash192 125.00 H/s 0.00060 200.62561 4.414 equihash192 zergpool_algo
66+
TRex-CCDevices1 skunk 202.44 MH/s 0.00059 196.71636 4.328 skunk zergpool_algo
67+
TRex-CCDevices1 balloon 200.54 KH/s 0.00057 190.19442 4.184 balloon zergpool_algo
68+
CryptoDredge-CCDevices1 cryptonightheavy 5.04 KH/s 0.00056 188.44509 4.146 cryptonightheavy nicehash
69+
CryptoDredge-CCDevices1 allium 32.04 MH/s 0.00055 182.42108 4.013 allium zergpool_algo
70+
CryptoDredge-CCDevices1 lyra2rev2 271.60 MH/s 0.00054 179.42558 3.947 lyra2rev2 nicehash
71+
EWBF-EWBFDevices1 equihash96 125.76 KH/s 0.00051 169.23675 3.723 equihash96 zergpool_algo
72+
Claymore-ClayDevices1 daggerhashimoto 183.40 MH/s 0.00050 168.58384 3.709 daggerhashimoto nicehash
73+
TRex-CCDevices1 phi 144.45 MH/s 0.00049 164.32352 3.615 phi blockmasters_algo
74+
TRex-CCDevices1 tribus 501.35 MH/s 0.00048 160.16215 3.524 tribus zergpool_algo
75+
Tpruvot-CCDevices1 hmq1725 26.01 MH/s 0.00047 156.95369 3.453 hmq1725 zergpool_algo
76+
TRex-CCDevices1 bitcore 124.55 MH/s 0.00044 146.72231 3.228 bitcore zergpool_algo
77+
CryptoDredge-CCDevices1 cryptonightv7 4.50 KH/s 0.00043 144.99113 3.190 cryptonightv7 nicehash
78+
DSTM-DSTMDevices1 equihash 2.91 KH/s 0.00041 137.67718 3.029 equihash nicehash
79+
Enemy-CCDevices1 hex 54.39 MH/s 0.00040 134.19243 2.952 hex zergpool_algo
80+
CryptoDredge-CCDevices1 skein 2.88 GH/s 0.00038 126.07311 2.774 skein zergpool_algo
81+
Enemy-CCDevices1 xevan 19.63 MH/s 0.00035 118.01848 2.596 xevan zergpool_algo
82+
Tpruvot-CCDevices1 keccakc 4.18 GH/s 0.00025 84.71219 1.864 keccakc zergpool_algo
83+
Enemy-CCDevices1 aergo 26.59 MH/s 0.00016 52.55190 1.156 aergo zergpool_algo
84+
CryptoDredge-CCDevices1 blake2s 23.21 GH/s 0.00016 52.04037 1.145 blake2s blockmasters_algo
85+
Enemy-CCDevices1 timetravel 179.63 MH/s 0.00013 42.44185 0.934 timetravel zergpool_algo
86+
Tpruvot-CCDevices1 keccak 4.15 GH/s 0.00012 41.19984 0.906 keccak zergpool_algo
87+
Tpruvot-CCDevices1 sib 56.47 MH/s 0.00001 4.50977 0.099 sib zergpool_algo
88+
89+
90+
Currently Mining HTH HTH

Build/Unix/Hive/port.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4048
1+
4068

0 commit comments

Comments
 (0)