Raptoreum Mining Guide

Setting up your miner can seem like a scary task, but with some guidance it's a fairly straight-forward process.
This guide aims to be get you mining with a quick and simple set-up, but there are of course many different ways of doing things for advanced users.
If you'd like to dive deeper and learn more about mining in general,
you're welcome to join the Cyber Nilssen Discord to ask questions, or just to hang out and chat or play games!

-- CPU and GPU Mining --

Raptoreum is most effectively mined with your CPU. GPU mining is also possible, but it is less effective.

You can do both (cpu+gpu mining) to get the most raptoreum out of your PC.
Be aware, however, that there may be other coins that get you more "bang for your buck" in terms of GPU mining.
If you still want to mine Raptoreum with your GPU, there is a GPU mining guide below the cpu mining guide. Scroll down if you want to use it!
Make sure you also check the front page to see your mining options, and decide what makes sense for you!

Disclaimer: The programs linked in this guide are made by 3rd parties. Always be mindful of your IT security, and use at your own risk.
Mining can be heavy on your hardware. Make sure you have sufficient cooling. Norpool and/or its associates cannot be held liable for any damages.

-- Wallet --

If you need a wallet for Raptoreum, you can use the Komodo wallet.
To enable Raptoreum in the Komodo wallet, you'll need to click the "Add Crypto" button in the lower left side and search for "Raptoreum".
Make sure you click on the "UTXO" one, and *NOT* the "BEP-2.0" one, at least for mining purposes!

-- CPU Mining Setup --

* Download the xmrig cpu miner
* Input your wallet address here (for the config):
To get your wallet address, open your wallet program for this coin and click "receive" -- You should see an address that looks similar to this: RDoPCfRaZ8rhGHQmXrND1RbBNgMAeXyQUA
* Input your desired worker name here (for the config):
* Copy the config below:
* Paste into notepad, save it as a .bat file (e.g. mine-raptoreum-cpu.bat), and run the .bat file to start your miner!
Make sure your .bat file is in the same folder as your xmrig.exe file
cd /d "%~dp0"

start xmrig.exe -a gr -o rtm.norpool.net:3007 -u yourWallet.yourWorker -p x

-- GPU Mining Setup -- (not recommended)

* Download and extract the Wildrig miner
* Input your wallet address here (for the config):
* Input your desired worker name here (for the config):
* Copy your generated config:
* Paste into notepad, save it as a .bat file (e.g. mine-raptoreum-gpu.bat), and run the .bat file to start your miner!
Make sure your .bat file is in the same folder as your wildrig.exe file
@echo off
:loop
wildrig.exe --algo ghostrider --url stratum+tcp://rtm.norpool.net:3007 --user yourWallet.yourWorker --pass x
echo ....Cancelling job....
echo Press ctrl+C again to exit.
echo Press anything else, or wait, to restart the miner.
timeout /t 5
goto loop