Choose a Mining Pool
Select a mining pool from the following list:
Choose a Mining Pool
Explore the following FuerteCoin mining pools to get started:
CPU Miner (xmrig) – Run in a .bat file
Download the CPU miner (xmrig) and save it in the same directory as your .bat file.
@echo off
title FuerteCoin CPU
cd %~dp0 xmrig.exe -a gr -o latinminers.com:6866 -u FDrn4tRxTrwubpvXs1UFxZMuXqhn5rDDSy -p c=FUEC
pause
GPU Miner (wildrig-multi) – Run in a .bat file
Download the GPU miner (wildrig-multi) and save it in the same directory as your .bat file.
@echo off
title FuerteCoin GPU
cd %~dp0 :loop wildrig.exe --multiple-instance --print-full --algo ghostrider --url latinminers.com:6866 --user FDrn4tRxTrwubpvXs1UFxZMuXqhn5rDDSy --pass c=FUEC
if ERRORLEVEL 1000 goto custom timeout /t 5 goto loop :custom
echo Custom command here timeout /t 5 goto loop