Solo Mining Guide for RXD

What is Solo Mining?

Solo mining is the process of mining cryptocurrency without joining a mining pool. Instead of contributing hash power to a shared pool, miners work independently to solve blocks and receive the full block reward. In the case of RXD (Radiant), solo mining means running a full node, directly interacting with the blockchain, and attempting to find valid blocks on your own.

Advantages and Disadvantages

Advantages

  • No Pool Fees – You keep 100% of the block rewards.
  • More Decentralization – Helps reduce reliance on large mining pools.
  • Full Control – You manage your own node and transactions.

Disadvantages

  • Inconsistent Rewards – Finding a block can take a long time.
  • Requires High Hashrate – Needs powerful mining hardware.
  • Technical Complexity – You must set up and maintain a full node.

Who Should Mine Solo?

Solo mining is not for everyone. It is most suitable for:

  • Miners with high hashrate – Powerful ASIC miners increase the chance of success.
  • Tech-savvy users – Setting up and maintaining a node requires some technical knowledge.
  • Supporters of network decentralization – Solo miners contribute to a more distributed blockchain.
  • People who can afford irregular payouts – Unlike pool mining, solo mining rewards are unpredictable.

Basic Requirements

Hardware

ASIC miners are recommended for efficient RXD mining.

Internet Speed

A stable high-speed internet connection (at least 10 Mbps) is ideal.

Full Node

A dedicated computer is needed to run the RXD full node.

Instructions for Running Radiant Node on Linux


Step 1: Update Your System

Ensure your system is up-to-date before installing dependencies.

sudo apt update && sudo apt upgrade -y

Step 2: Install Required Dependencies

Install the necessary build tools and libraries.

sudo apt install build-essential cmake git libboost-chrono-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libevent-dev libminiupnpc-dev libssl-dev libzmq3-dev help2man ninja-build python3 -y



    

Step 3: Install BerkeleyDB (Wallet Requirement)

If you plan to use the wallet feature, install BerkeleyDB:

sudo apt install libdb-dev libdb++-dev -y

Step 4: Install Qt5 (For GUI)

Install Qt5 and QR code libraries for the GUI version.

sudo apt install libqrencode-dev libprotobuf-dev protobuf-compiler qttools5-dev -y

Step 5: Clone the Radiant Node Repository

Download the source code from GitHub:

git clone https://github.com/radiantblockchain/radiant-node.git
cd radiant-node
    

Step 6: Create a Build Directory

mkdir build
cd build
    

Step 7: Configure the Build

Choose the appropriate build option:

A) Build Only the Node (No Wallet, No GUI)
cmake -GNinja .. -DBUILD_RADIANT_WALLET=OFF -DBUILD_RADIANT_QT=OFF
B) Build Node with Wallet (No GUI)
cmake -GNinja .. -DBUILD_RADIANT_QT=OFF
C) Build Node with GUI (Full Version)
cmake -GNinja ..

Step 8: Compile the Code

ninja

Step 9: Run Tests (Optional)

ninja check

Step 10: Install (Optional)

sudo ninja install

Step 11: Create Configuration File

echo -e "server=1\nrpcuser=worker1\nrpcpassword=worker1pass\nlisten=1\ndisablewallet=1\ntxindex=1\nrpcport=9332\nserver=1\ndaemon=1" > "$HOME/.radiant/radiant.conf"
chmod 600 "$HOME/.radiant/radiant.conf"
    

Step 12: Start Radiant Node

./src/radiantd -daemon

Step 13: Verify if the Node is Running

tail -f ~/.radiant/debug.log

Additional Commands

Get Your Machine ip for LAN:

ip a

Check available commands:

./src/radiant-cli --help

List available RPC commands (when daemon is running):

./src/radiant-cli help

Node Synchronization Process

Before you can start solo mining, your node must fully synchronize with the blockchain. This process downloads and verifies the entire blockchain history, ensuring your node is up-to-date.

  • Time Required: Synchronization can take several hours or even days, depending on your internet speed and system performance.
  • Storage Usage: The blockchain data grows over time, so ensure you have sufficient disk space.
  • Stable Connection: A reliable internet connection is necessary to maintain sync with the network.

Once the synchronization is complete, your node will be fully operational, allowing you to mine blocks independently.

Sync in Progress...

Node Setup on Windows 10 +

Follow these steps to set up WSL2 with Ubuntu 20.04 on Windows before installing the node.

Step 1: Enable Windows Features

Open PowerShell as Administrator and run:

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

Step 2: Enable Virtualization in BIOS

Restart your computer and enter the BIOS/UEFI settings by pressing DEL, F2, or F12 (depending on your system). Find Virtualization Technology (VT-x/AMD-V) and enable it. Then, save and exit.

Step 3: Download & Install WSL2 Kernel Update

Download the WSL2 Kernel Update from: https://aka.ms/wsl2kernel, install it, and restart your computer.

Step 4: Set WSL2 as Default

wsl --set-default-version 2

Step 5: Install Ubuntu 20.04

Install Ubuntu 20.04 from the Microsoft Store or run:

wsl --install -d Ubuntu-20.04

Step 6: Open Ubuntu

wsl

Once installed, proceed to the Linux node setup instructions above.**

Linux Ready

You are now inside Ubuntu on Windows. Follow the next steps to set up your node.

Linux Node Setup

Now Follow Linux Node Setup Process explained in the above sections

BFGMiner Setup

To mine Radiant (RXD) using BFGMiner, follow these steps carefully. BFGMiner should run on the same device as the node to ensure optimal mining performance.

Step 1: Install Required Dependencies

sudo apt update && sudo apt upgrade -y
sudo apt install -y build-essential autoconf automake libtool pkg-config libcurl4-openssl-dev libncurses5-dev uthash-dev libjansson-dev
        

Step 2: Clone the BFGMiner Repository

git clone https://github.com/RadiantBlockchain/rad-bfgminer.git
cd rad-bfgminer
        

Step 3: Clone Additional Required Libraries

git clone https://github.com/KnCMiner/knc-asic.git
git clone https://github.com/luke-jr/libbase58.git
git clone https://github.com/bitcoin/libblkmaker.git
        

Step 4: Configure Git for HTTPS (if needed)

git config --global url.https://github.com/.insteadOf git://github.com/
        

Step 5: Build BFGMiner

./autogen.sh
./configure --enable-opencl
make
        

Notes for Ubuntu 20.04

  • This method works for Ubuntu 20.04, as it is compatible with both 18.04 and 22.04.
  • Use sudo only if necessary; avoid using it with make unless permission issues arise.
  • If OpenCL support is not needed, remove --enable-opencl from the ./configure command.

🚀 Now your Radiant BFGMiner should be ready to run!

Start the Pool & Connect Your ASIC

Now that BFGMiner is built, you can start a mining pool and connect your ASIC miner. Run the following command to launch your local mining pool:

./bfgminer --stratum-port=3333 -o http://127.0.0.1:9332 -u youruser -p yourpass --coinbase-addr=YOUR_RXD_WALLET_ADDRESS --no-getwork
        

Once your pool is running, configure your ASIC miner to connect to:

  • Pool Address: stratum+tcp://YOUR_SERVER_IP:3333
  • Username: youruser
  • Password: yourpass

Your ASIC miner will now start submitting shares and mining Radiant (RXD). 🚀

Get Your Machine ip for LAN:

ip a

Hashrate

Hashrate is the computational power used by miners to solve cryptographic puzzles and secure the blockchain. It is measured in hashes per second (H/s)**, such as KH/s, MH/s, GH/s, or TH/s**.

A higher hashrate means stronger network security and faster block validation. The more powerful the hardware, the higher the hashrate.

Block Reward

The block reward is the amount of cryptocurrency that miners receive for successfully adding a new block to the blockchain. In the case of RXD, this reward is given to the miner who solves the block’s cryptographic puzzle.

This reward typically includes both newly minted coins and transaction fees collected from the transactions within the block. The block reward decreases over time as the network's supply diminishes.

Maturity Time

Maturity time refers to the amount of time a block reward takes before it becomes spendable. For RXD, it typically takes 100 blocks before the reward from a mined block can be spent.

This delay is necessary to ensure that the block is fully validated and accepted by the network. It helps to prevent double-spending and secures the integrity of the blockchain.

Miner Fee

Miner fee is the fee paid to miners for including a transaction in a block. It incentivizes miners to prioritize transactions, helping to maintain a healthy and fast transaction network.

The miner fee is optional, but higher fees can make transactions more likely to be included in the next block. For RXD, miners typically include transactions with higher fees first.

Support Our Fundraiser – Help Us Grow the RXD Network!

Donate Now