Skip to content

Commit 9bb4251

Browse files
committed
Added support for WildRig miner app
1 parent bdc2b60 commit 9bb4251

16 files changed

Lines changed: 279 additions & 2 deletions

File tree

BitPoolMiner/BitPoolMiner.csproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
<Compile Include="Formatter\WhatToMineDataFormatter.cs" />
158158
<Compile Include="Formatter\MinerMonitorStatsFormatter.cs" />
159159
<Compile Include="Miners\Ccminer.cs" />
160+
<Compile Include="Miners\WildRig.cs" />
160161
<Compile Include="Miners\TRex.cs" />
161162
<Compile Include="Miners\CCMinerForkRaven.cs" />
162163
<Compile Include="Miners\CCMinerForkNanashi.cs" />
@@ -184,6 +185,7 @@
184185
<Compile Include="Models\MinerPayments\MinerPaymentsGroupedByDay.cs" />
185186
<Compile Include="Models\MinerPayments\MinerPaymentSummary.cs" />
186187
<Compile Include="Models\Profitability\ProfitabilityData.cs" />
188+
<Compile Include="Models\RPCResponse\WildRigTemplate.cs" />
187189
<Compile Include="Models\RPCResponse\TRexTemplate.cs" />
188190
<Compile Include="Models\RPCResponse\ClaymoreTemplate.cs" />
189191
<Compile Include="Models\RPCResponse\DSTMTemplate.cs" />
@@ -333,6 +335,9 @@
333335
<Content Include="MinerApps\t-rex-0.7.2-win-cuda10.0\t-rex.exe">
334336
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
335337
</Content>
338+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\wildrig.exe">
339+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
340+
</Content>
336341
<Content Include="Resources\Images\etc.png">
337342
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
338343
</Content>
@@ -565,6 +570,27 @@
565570
<Content Include="MinerApps\t-rex-0.7.2-win-cuda10.0\RVN-gos.cx.bat">
566571
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
567572
</Content>
573+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\kernel-baffin.bin">
574+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
575+
</Content>
576+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\kernel-ellesmere.bin">
577+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
578+
</Content>
579+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\kernel-fiji.bin">
580+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
581+
</Content>
582+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\kernel-gfx900.bin">
583+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
584+
</Content>
585+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\kernel-tonga.bin">
586+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
587+
</Content>
588+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\start-help.bat">
589+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
590+
</Content>
591+
<Content Include="MinerApps\wildrig-multi-0.12.7-beta\start.bat">
592+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
593+
</Content>
568594
<None Include="NLog.xsd">
569595
<SubType>Designer</SubType>
570596
</None>

BitPoolMiner/Enums/MinerBaseType.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public enum MinerBaseType
1111
LyclMiner,
1212
EWBF_NO_ASIC,
1313
CCMinerRaven,
14-
TRex
14+
TRex,
15+
WildRig
1516
}
1617
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@echo off
2+
3+
:loop
4+
wildrig.exe --algo=x16r --opencl-threads 3 --opencl-launch 20x128 --url=stratum+tcp://europe.rvn.bitpoolmining.com:3172 --user=RQAJU3nWpA3tE2uomV54UnkDhvXQrME3LK.DSRIG05 --pass=x --api-port=2883 --opencl-devices=0 --print-full
5+
if ERRORLEVEL 1000 goto custom
6+
timeout /t 5
7+
goto loop
8+
9+
:custom
10+
echo Custom command here
11+
timeout /t 5
12+
goto loop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wildrig.exe -help
2+
pause
3+
4+
--opencl-devices=0,1
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@echo off
2+
3+
:loop
4+
wildrig.exe --algo=x16r --opencl-threads 3 --opencl-launch 20x128 --url=europe.rvn.bitpoolmining.com:3172 --user=RQAJU3nWpA3tE2uomV54UnkDhvXQrME3LK.RIG5 --pass=x --api-port=2883
5+
if ERRORLEVEL 1000 goto custom
6+
timeout /t 5
7+
goto loop
8+
9+
:custom
10+
echo Custom command here
11+
timeout /t 5
12+
goto loop

0 commit comments

Comments
 (0)