← Back to Qweercoin

Start Mining QWR

Earn Qweercoin by helping power the network — complete beginner's guide

What is mining?

Mining is how new Qweercoins are created. Your computer does a small amount of work to help confirm and record transactions on the network, and in return it earns 69 QWR per block.

You don't need special equipment — Qweercoin's mining is lightweight and runs fine on a normal laptop or desktop.

Pick your operating system above to jump straight to your guide — all the instructions for your system are together in one place.

Rewards mature after 100 blocks. After you mine a block, you need 100 more blocks mined on top before the coins appear in your balance. This is normal and takes a few hours.
🍎

macOS Guide

1 Open Terminal
  1. Press ⌘ Command + Space to open Spotlight Search
  2. Type Terminal and press Enter

A dark window with a blinking cursor appears — that's Terminal. You're ready.

Terminal — zsh
yourname@Mac ~ %
Pasting: use ⌘ Command + V to paste into Terminal.
2 Download & Install

Download the macOS version from the releases page:

Download for macOS

Then paste these commands into Terminal one at a time, pressing Enter after each:

↓ PASTE — then press Enter
cd ~/Downloads
↓ PASTE — then press Enter
tar xzf qweercoin-v0.1.0-macos-arm64.tar.gz
↓ PASTE — then press Enter (your Mac will ask for your password)
sudo cp qwr-v0.1.0-macos/qweercoind qwr-v0.1.0-macos/qweercoin-cli /usr/local/bin/
When the sudo command runs, type your Mac login password and press Enter. Nothing will appear as you type — this is normal.

Check the install worked:

qweercoind --version
If you see Qweercoin Core v0.1.0 — installation is complete!
3 Start Qweercoin

This starts the Qweercoin software in the background:

↓ PASTE — press Enter
qweercoind -daemon

You should see: Qweercoin Core starting

Wait 30 seconds, then check it's running:

qweercoin-cli getblockchaininfo
If you get "Could not connect to server", the node is still starting up. Wait 30 more seconds and try again.
4 Create Your Wallet

Before you can receive mining rewards, you need a wallet:

↓ PASTE — press Enter
qweercoin-cli createwallet "main"

Now get an address where your rewards will be sent:

↓ PASTE — press Enter
qweercoin-cli getnewaddress
Terminal
% qweercoin-cli getnewaddress
qwr1qd8ufzdsrs7lkzt3llq3gj74fksmj228q28fg3g

Copy that address — it starts with qwr1. You'll need it in the next step.

5 Start Mining!

Replace YOUR_ADDRESS_HERE with the address you just copied, then paste this entire block into Terminal:

↓ REPLACE YOUR_ADDRESS_HERE — then paste the whole block and press Enter
ADDR="YOUR_ADDRESS_HERE"
while true; do
  BLOCKS=$(qweercoin-cli getblockchaininfo | python3 -c "import sys,json; print(json.load(sys.stdin)['blocks'])")
  echo "Mining... block: $BLOCKS"
  qweercoin-cli generatetoaddress 1 "$ADDR" > /dev/null
done

You'll see Mining... block: 248 repeating. Leave this running.

To stop mining: click inside the Terminal window and press Control + C.
6 Check Your Balance

Open a new Terminal tab (⌘ Command + T) and run:

qweercoin-cli getbalance

It shows 0.00000000 at first — normal! Rewards appear after 100 more blocks are mined on top of yours.

Each block earns 69 QWR. Keep mining and your balance will grow!
7 Auto-start at Login

Make Qweercoin start automatically whenever your Mac turns on. First, find your username:

whoami

Then paste the block below into Terminal, replacing YOUR_USERNAME with the result:

↓ REPLACE YOUR_USERNAME — then paste the whole block
cat > ~/Library/LaunchAgents/org.qweercoin.node.plist <<'PLIST'
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
  "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
  <key>Label</key><string>org.qweercoin.node</string>
  <key>ProgramArguments</key><array>
    <string>/usr/local/bin/qweercoind</string>
  </array>
  <key>RunAtLoad</key><true/>
  <key>KeepAlive</key><true/>
  <key>StandardOutPath</key>
  <string>/Users/YOUR_USERNAME/Library/Logs/qweercoin.log</string>
  <key>StandardErrorPath</key>
  <string>/Users/YOUR_USERNAME/Library/Logs/qweercoin.log</string>
</dict></plist>
PLIST
launchctl load ~/Library/LaunchAgents/org.qweercoin.node.plist
Qweercoin will now start automatically every time you log into your Mac.
🪟

Windows Guide

1 Open PowerShell
  1. Click the Start menu and search for PowerShell
  2. Right-click Windows PowerShell and choose Run as Administrator
  3. Click Yes if a security prompt appears
Windows PowerShell
PS C:\Windows\system32>
Pasting into PowerShell: right-click inside the window to paste.
2 Download & Install

Download the Windows version from the releases page:

Download for Windows
  1. Right-click the downloaded .zip file and choose Extract All
  2. When asked where to extract, type C:\Qweercoin and click Extract

Now add Qweercoin to your PATH so you can run it from anywhere. Paste this into PowerShell:

↓ PASTE INTO POWERSHELL — press Enter
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Qweercoin", "Machine")

Close PowerShell and open it again (as Administrator). Then check the install worked:

qweercoind --version
If you see Qweercoin Core v0.1.0 — installation is complete!
3 Start Qweercoin

Start the Qweercoin software in a hidden background window:

↓ PASTE INTO POWERSHELL — press Enter
Start-Process qweercoind.exe -WindowStyle Hidden

Wait 30 seconds, then check it's running:

qweercoin-cli getblockchaininfo
If you get "Could not connect to server", wait 30 more seconds and try again.
4 Create Your Wallet

Create a wallet to receive your mining rewards:

↓ PASTE — press Enter
qweercoin-cli createwallet "main"

Now get an address where your rewards will be sent:

↓ PASTE — press Enter
qweercoin-cli getnewaddress
PowerShell
PS> qweercoin-cli getnewaddress
qwr1qd8ufzdsrs7lkzt3llq3gj74fksmj228q28fg3g

Copy that address — it starts with qwr1. You'll need it next.

5 Start Mining!

Replace YOUR_ADDRESS_HERE with the address you copied, then paste the whole block into PowerShell:

↓ REPLACE YOUR_ADDRESS_HERE — then paste the whole block
$ADDR = "YOUR_ADDRESS_HERE"
while ($true) {
  $blocks = (qweercoin-cli getblockchaininfo | ConvertFrom-Json).blocks
  Write-Host "Mining... block: $blocks"
  qweercoin-cli generatetoaddress 1 $ADDR | Out-Null
}

You'll see Mining... block: 248 repeating. Leave this window open.

To stop mining: press Control + C inside the PowerShell window.
6 Check Your Balance

Open a new PowerShell window and run:

qweercoin-cli getbalance

It shows 0.00000000 at first — normal! Rewards appear after 100 more blocks are mined on top of yours.

Each block earns 69 QWR. Keep mining and your balance will grow!
7 Auto-start at Login

Make Qweercoin start automatically when you log into Windows:

  1. Press Windows key + R, type shell:startup, and press Enter — a folder opens
  2. Right-click inside that folder → New → Shortcut
  3. For the location, type: C:\Qweercoin\qweercoind.exe
  4. Click Next, name it Qweercoin, click Finish
Qweercoin will now start silently in the background every time you log into Windows.
🐧

Linux Guide

1 Open Terminal

Press Ctrl + Alt + T, or search for Terminal in your applications menu.

Terminal
user@linux:~$
Pasting: use Ctrl + Shift + V to paste into most Linux terminals.
2 Download & Install

Download the Linux version from the releases page:

Download for Linux

Then paste these commands into Terminal one at a time:

↓ PASTE — press Enter after each line
cd ~/Downloads
tar xzf qweercoin-v0.1.0-linux-x64.tar.gz
sudo cp qwr-v0.1.0-linux/qweercoind qwr-v0.1.0-linux/qweercoin-cli /usr/local/bin/
The sudo command will ask for your password. Type it and press Enter.

Check the install worked:

qweercoind --version
If you see Qweercoin Core v0.1.0 — installation is complete!
3 Start Qweercoin
↓ PASTE — press Enter
qweercoind -daemon

You should see: Qweercoin Core starting

Wait 30 seconds, then check it's running:

qweercoin-cli getblockchaininfo
If you get "Could not connect to server", wait 30 more seconds and try again.
4 Create Your Wallet
↓ PASTE — press Enter
qweercoin-cli createwallet "main"

Now get an address where your rewards will be sent:

↓ PASTE — press Enter
qweercoin-cli getnewaddress
Terminal
$ qweercoin-cli getnewaddress
qwr1qd8ufzdsrs7lkzt3llq3gj74fksmj228q28fg3g

Copy that address — it starts with qwr1. You'll need it next.

5 Start Mining!

Replace YOUR_ADDRESS_HERE with the address you copied, then paste the whole block into Terminal:

↓ REPLACE YOUR_ADDRESS_HERE — then paste the whole block
ADDR="YOUR_ADDRESS_HERE"
while true; do
  BLOCKS=$(qweercoin-cli getblockchaininfo | python3 -c "import sys,json; print(json.load(sys.stdin)['blocks'])")
  echo "Mining... block: $BLOCKS"
  qweercoin-cli generatetoaddress 1 "$ADDR" > /dev/null
done

You'll see Mining... block: 248 repeating. Leave this running.

To stop mining: press Control + C.
6 Check Your Balance

Open a new terminal tab or window and run:

qweercoin-cli getbalance

It shows 0.00000000 at first — normal! Rewards appear after 100 more blocks are mined on top of yours.

Each block earns 69 QWR. Keep mining and your balance will grow!
7 Auto-start at Login

Create a systemd service so Qweercoin starts automatically with your Linux session:

↓ PASTE THE WHOLE BLOCK INTO TERMINAL
mkdir -p ~/.config/systemd/user
cat > ~/.config/systemd/user/qweercoin.service <<'SERVICE'
[Unit]
Description=Qweercoin Node
After=network.target

[Service]
ExecStart=/usr/local/bin/qweercoind
Restart=always
RestartSec=5

[Install]
WantedBy=default.target
SERVICE
systemctl --user enable qweercoin
systemctl --user start qweercoin
Your node will now start automatically with your Linux session.

Check it: systemctl --user status qweercoin

View logs: journalctl --user -u qweercoin -f

Common Questions

My balance is still 0 — is something wrong?

No — rewards mature after 100 blocks are mined on top of yours. If the network is small this can take a few hours. Keep mining!

Terminal says "command not found"

Go back to Step 2 and re-run the install. On Mac/Linux make sure the sudo cp step completed. On Windows, make sure you added Qweercoin to PATH and reopened PowerShell.

The mining script stopped. What do I do?

If the node stopped, restart it first (Step 3), then paste the mining script again (Step 5).

Will this damage my computer?

No. Qweercoin mining is lightweight. If your fan gets loud, stop any time with Control + C.

Can I mine while doing other things?

Yes — just minimise the terminal window. Mining runs quietly in the background.