Network Info

Algorithm
Scrypt
Block Reward
69 QWR
P2P Port
9444
RPC Port
9332
Seed Node
66.42.97.210
Source Code

⚡ Easiest: Pool Mining — No Node Required

Just point cpuminer at our pool. Your wallet address is your username — you get the full block reward when you find a block.

minerd --algo=scrypt \
  --url=stratum+tcp://pool.qweercoin.com:3333 \
  --user=YOUR_QWR_ADDRESS \
  --pass=x \
  --threads=$(nproc)

Get a wallet at qweercoin.com/wallet/ · Get cpuminer in Step 3 below.

1 Run a QWR Node (Solo Mining)

Download the pre-built binary or build from source:

Linux x86_64 (Ubuntu 22.04 LTS):

wget https://github.com/sacredsynergy/Qweercoin/releases/download/v1.0.0/qweercoind
wget https://github.com/sacredsynergy/Qweercoin/releases/download/v1.0.0/qweercoin-cli
chmod +x qweercoind qweercoin-cli
sudo mv qweercoind qweercoin-cli /usr/local/bin/
apt install -y build-essential libtool autotools-dev automake pkg-config \
  libssl-dev libevent-dev bsdmainutils python3 libboost-all-dev \
  libdb5.3++-dev libminiupnpc-dev libzmq3-dev

git clone https://github.com/sacredsynergy/Qweercoin.git
cd Qweercoin && ./autogen.sh
./configure --without-gui --disable-wallet
make -j$(nproc)
sudo cp src/qweercoind src/qweercoin-cli /usr/local/bin/
brew install autoconf automake libtool pkg-config openssl boost libevent
git clone https://github.com/sacredsynergy/Qweercoin.git
cd Qweercoin && ./autogen.sh
./configure --without-gui --disable-wallet \
  CPPFLAGS="-I/opt/homebrew/include" LDFLAGS="-L/opt/homebrew/lib"
make -j$(sysctl -n hw.ncpu)
sudo cp src/qweercoind src/qweercoin-cli /usr/local/bin/
# Install dependencies
apt install -y build-essential libtool autotools-dev automake pkg-config \
  libssl-dev libevent-dev bsdmainutils python3 libboost-all-dev \
  libdb5.3++-dev libminiupnpc-dev libzmq3-dev

# Clone and build
git clone https://github.com/sacredsynergy/Qweercoin.git
cd Qweercoin
./autogen.sh
./configure --without-gui --disable-wallet
make -j$(nproc)

# Install
cp src/qweercoind src/qweercoin-cli /usr/local/bin/
# Install dependencies (Homebrew required)
brew install autoconf automake libtool pkg-config openssl boost libevent

# Clone and build
git clone https://github.com/sacredsynergy/Qweercoin.git
cd Qweercoin
./autogen.sh
./configure --without-gui --disable-wallet \
  CPPFLAGS="-I/opt/homebrew/include" LDFLAGS="-L/opt/homebrew/lib"
make -j$(sysctl -n hw.ncpu)

# Install
cp src/qweercoind src/qweercoin-cli /usr/local/bin/

2 Configure the Node

Create your config file. On Linux: ~/.qweercoin/qweercoin.conf  |  On macOS: ~/Library/Application Support/Qweercoin/qweercoin.conf

rpcuser=miner
rpcpassword=changeme123
rpcallowip=127.0.0.1
server=1
daemon=1
addnode=66.42.97.210:9444

Then start the node and let it sync:

qweercoind

Check sync progress:

qweercoin-cli -rpcuser=miner -rpcpassword=changeme123 getblockcount

3 Install cpuminer

apt install -y libcurl4-openssl-dev libjansson-dev

git clone https://github.com/pooler/cpuminer.git
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make -j$(nproc)
brew install curl jansson openssl

git clone https://github.com/pooler/cpuminer.git
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3" \
  CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include -I/opt/homebrew/opt/jansson/include" \
  LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib -L/opt/homebrew/opt/jansson/lib"
make -j$(sysctl -n hw.ncpu)

4 Start Mining

Replace YOUR_QWR_ADDRESS with your address from the QWR Wallet:

./minerd \
  --algo=scrypt \
  --url=http://127.0.0.1:9332 \
  --user=miner \
  --pass=changeme123 \
  --coinbase-addr=YOUR_QWR_ADDRESS \
  --threads=$(nproc)

When you find a block you'll see:

[timestamp] accepted: 1/1 (100.00%), xx.xx khash/s (yay!!!)
⚡ Prefer pool mining? Skip the node — use stratum+tcp://pool.qweercoin.com:3333 with your QWR address as username

Need a QWR Wallet?

Create a non-custodial wallet in your browser — works on desktop and mobile, no app store needed.


Open Wallet
← Back to Qweercoin