How to Mine Neurai (XNA)? Complete Beginner’s Guide
Neurai: A Peer-to-Peer Digital Asset System
What is Neurai?
Neurai is a decentralized open source protocol optimized to transfer cryptoassets from one party to another on Layer1. The project aims to integrate NFT and Tokens with IoT and artificial intelligence applications.
Network Details
Network Name: Neurai
Network Abbreviation: XNA
Mining Algorithm: KAWPOW Proof-of-work
Block Time: 1 minute
Initial Block Size: 8 MB
Block Reward Schedule: 50,000 XNA per block
Block Reward Micro-halvening: 10 days (5%)
Maximum Supply: 21,000,000,000 XNA
Decimal Places: 8
Launch Date: 2024–04–17 08:40 UTC
Genesis: Fortune 16/April/2023 Elon Musk agrees A.I. will hit people like an asteroid
Network Port: 19000
RPC Port: 19001
- Enjoy the Code: https://github.com/NeuraiProject
- Website: https://neurai.org
- Reddit: https://www.reddit.com/r/neuraiproject
- Discord: https://discord.com/invite/dxJSrSeXjF
- Telegram: https://t.me/neuraiproject
Now that we know the details about Neurai, let’s get to mining some XNA!
Neurai (XNA) Mining Pool: Those who have no idea about mining can easily start mining by watching this video.
Step 1 — Create Neurai (XNA) Wallet Address
Before you Start Mining, you need a wallet address. There are various options for having an XNA wallet.
QT Wallet: https://neurai.org/wallets/#neurai-qt
Web Wallet: https://neurai.org/wallets/#webwallet
Exchange Wallet: TradeOgre, Coinex
Step 2 — Download Mining Software
There are many miner applications where you can mining Neurai. Below we have explained in detail how to organize them.
Step 3 — Edit the bat File
SRBminer-Multi v2.4.1+ (Windows, Linux, CPU, AMD, NVIDIA)
Create start-mining-neurai.bat file and copy / paste example below.
setx GPU_MAX_HEAP_SIZE 100
setx GPU_MAX_USE_SYNC_OBJECTS 1
setx GPU_SINGLE_ALLOC_PERCENT 100
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_MAX_SINGLE_ALLOC_PERCENT 100
setx GPU_ENABLE_LARGE_ALLOCATION 100
setx GPU_MAX_WORKGROUP_SIZE 1024
@echo off
cd %~dp0
clsSRBMiner-MULTI.exe --disable-cpu --algorithm kawpow --pool de.neurai.herominers.com:1160 --wallet YOUR_NEURAI_WALLET_ADDRESS --password YOUR_WORKER_NAME
pause
XMRig v6.21.0+ (Windows, Linux, AMD, NVIDIA)
Create neurai-herominers.cmd file and copy / paste example below.
@echo off
xmrig.exe --donate-level 1 --opencl --cuda -o de.neurai.herominers.com:1160 -u YOUR_NEURAI_WALLET_ADDRESS -p YOUR_WORKER_NAME -a kawpow -k
pause
Add — opencl or — cuda for GPU mining.
Team Red Miner v0.10.14+ (Windows, Linux, AMD)
Create neurai-herominers.bat file and copy / paste example below.
set GPU_MAX_ALLOC_PERCENT=100
set GPU_SINGLE_ALLOC_PERCENT=100
set GPU_MAX_HEAP_SIZE=100
set GPU_USE_SYNC_OBJECTS=1
teamredminer.exe -a kawpow -o stratum+tcp://de.neurai.herominers.com:1160 -u YOUR_NEURAI_WALLET_ADDRESS -p YOUR_WORKER_NAME
pause
NBMiner v42.3+ (Windows, Linux, AMD, NVIDIA)
Create neurai-herominers.bat file and copy / paste example below.
nbminer -a kawpow -o stratum+tcp://de.neurai.herominers.com:1160 -u YOUR_NEURAI_WALLET_ADDRESS.YOUR_WORKER_NAME
pause
T-Rex v0.26.8+ (Windows, Linux, NVIDIA)
Create neurai-herominers.bat file and copy / paste example below.
t-rex.exe -a kawpow -o stratum+tcp://de.neurai.herominers.com:1160 -u YOUR_NEURAI_WALLET_ADDRESS.YOUR_WORKER_NAME -p x
pause
GMiner v3.42+ (Windows, Linux, NVIDIA)
Create neurai-herominers.bat file and copy / paste example below.
miner.exe --algo kawpow --server de.neurai.herominers.com:1160 --user YOUR_NEURAI_WALLET_ADDRESS --pass YOUR_WORKER_NAME
pause