Earn Qweercoin by helping power the network — complete beginner's guide
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.
⌘ Command + Space to open Spotlight SearchEnterA dark window with a blinking cursor appears — that's Terminal. You're ready.
⌘ Command + V to paste into Terminal.Download the macOS version from the releases page:
Download for macOSThen paste these commands into Terminal one at a time, pressing Enter after each:
↓ PASTE — then press Entercd ~/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/
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
This starts the Qweercoin software in the background:
↓ PASTE — press Enterqweercoind -daemon
You should see: Qweercoin Core starting
Wait 30 seconds, then check it's running:
qweercoin-cli getblockchaininfo
Before you can receive mining rewards, you need a wallet:
↓ PASTE — press Enterqweercoin-cli createwallet "main"
Now get an address where your rewards will be sent:
↓ PASTE — press Enterqweercoin-cli getnewaddress
Copy that address — it starts with qwr1. You'll need it in the next step.
Replace YOUR_ADDRESS_HERE with the address you just copied, then paste this entire block into Terminal:
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.
Control + C.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.
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:
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
Download the Windows version from the releases page:
Download for Windows.zip file and choose Extract AllC:\Qweercoin and click ExtractNow 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
Start the Qweercoin software in a hidden background window:
↓ PASTE INTO POWERSHELL — press EnterStart-Process qweercoind.exe -WindowStyle Hidden
Wait 30 seconds, then check it's running:
qweercoin-cli getblockchaininfo
Create a wallet to receive your mining rewards:
↓ PASTE — press Enterqweercoin-cli createwallet "main"
Now get an address where your rewards will be sent:
↓ PASTE — press Enterqweercoin-cli getnewaddress
Copy that address — it starts with qwr1. You'll need it next.
Replace YOUR_ADDRESS_HERE with the address you copied, then paste the whole block into PowerShell:
$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.
Control + C inside the PowerShell window.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.
Make Qweercoin start automatically when you log into Windows:
Windows key + R, type shell:startup, and press Enter — a folder opensC:\Qweercoin\qweercoind.exePress Ctrl + Alt + T, or search for Terminal in your applications menu.
Ctrl + Shift + V to paste into most Linux terminals.Download the Linux version from the releases page:
Download for LinuxThen paste these commands into Terminal one at a time:
↓ PASTE — press Enter after each linecd ~/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/
sudo command will ask for your password. Type it and press Enter.Check the install worked:
qweercoind --version
qweercoind -daemon
You should see: Qweercoin Core starting
Wait 30 seconds, then check it's running:
qweercoin-cli getblockchaininfo
qweercoin-cli createwallet "main"
Now get an address where your rewards will be sent:
↓ PASTE — press Enterqweercoin-cli getnewaddress
Copy that address — it starts with qwr1. You'll need it next.
Replace YOUR_ADDRESS_HERE with the address you copied, then paste the whole block into Terminal:
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.
Control + C.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.
Create a systemd service so Qweercoin starts automatically with your Linux session:
↓ PASTE THE WHOLE BLOCK INTO TERMINALmkdir -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
Check it: systemctl --user status qweercoin
View logs: journalctl --user -u qweercoin -f
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.