Setup the miner and configure the settings.
Quickstart Connection Details
- URL: stratum+ssl://rtm-stratum.pukkapool.com:3053 (port 3052 for non ssl)
- User: your_wallet_address.worker_name
- Password: x
- Algo: gr (ghostrider)
Before you can start the miner, you need to add the connection details either with a configuration file or alternatively you
can simply start the miner using the command line as shown below. These instructions are specific to using XMRig but will be
very similar for any mining software you choose.
Start miner with config file
Windows:
To run the config file on a Windows machine, copy the config file to your xmrig folder (usually stored in C:\program files) to replace the default config, then click the start.cmd file to run XMRig.
Mac / Unix:
To run the config file on a Mac, copy the config file to your xmrig folder (usually stored in your applications folder) to replace the default config, then double click XMRig to start the miner.
SSL Connection
{
"autosave": true,
"donate-level": 1,
"cpu": true,
"opencl": false,
"cuda": false,
"pools": [
{
"coin": "raptoreum",
"algo": "gr",
"url": "stratum+ssl://rtm-stratum.pukkapool.com:3053",
"user": "RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug.worker_name",
"pass": "x",
"tls": true,
"keepalive": true,
}
]
}
Non SSL Connection
{
"autosave": true,
"donate-level": 1,
"cpu": true,
"opencl": false,
"cuda": false,
"pools": [
{
"coin": "raptoreum",
"algo": "gr",
"url": "rtm-stratum.pukkapool.com:3052",
"user": "RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug.worker_name",
"pass": "x",
"tls": false,
"keepalive": true,
}
]
}
Dont forget to change the example wallet address to your own wallet address.
Start miner with command line
To start the miner on a Windows machine using the command line interface (CLI), you need to open a terminal window by typing ‘cmd’ into the Windows search box
(bottom left, next to the Windows icon) and pressing enter (or opening launchpad on mac and searching for terminal). Next you need to navigate the terminal to the location of your
xmrig folder (click here for help navigating). Once your terminal is in the correct location, you can simply paste the following line of code to start your miner.
Windows
xmrig.exe -a gr -o stratum+ssl://rtm-stratum.pukkapool.com:3053 -u RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug.worker_name -p x
Mac
sudo ./xmrig -a gr -o stratum+ssl://rtm-stratum.pukkapool.com:3053 -u RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug.worker_name -p x
Windows
xmrig.exe -a gr -o rtm-stratum.pukkapool.com:3052 -u RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug -p worker_name
Mac
sudo ./xmrig -a gr -o rtm-stratum.pukkapool.com:3052 -u RYXeEUbM6wQ2hfcpBRgVPbDothXbh1Ywug -p worker_name
Dont forget to change the example wallet address to your own wallet address.