← Back to Qweercoin

Fund Your Wallet

How to send QWR from your desktop to your phone wallet

Sending QWR to your phone wallet is done from the command line on your desktop computer. It takes about 60 seconds. Pick your operating system below for the exact commands to paste.

📱

Step 1 — Get Your Phone Wallet Address

Before you send anything, you need your phone wallet's Q address. Do this on your phone:

  1. Open the QWR Wallet on your phone
  2. Tap the Receive button on the home screen
  3. Tap Copy Address — your address is now on your clipboard
Your address starts with the letter Q and looks like: QQx1wN5LVfGXmotsC8Tvgo8sQ582VYswcd

Now go to your desktop and follow the steps for your operating system below.

macOS

1 Open Terminal

Press Cmd + Space, type Terminal, and press Enter to open it.

2 Check your balance

Paste this command and press Enter:

PASTE INTO TERMINAL
qweercoin-cli -datadir="$HOME/Library/Application Support/Qweercoin" getbalance

It will print a number — your spendable QWR balance.

3 Send to your phone wallet

Paste the command below, but first replace YOUR_Q_ADDRESS with your phone wallet address and AMOUNT with how much QWR you want to send (e.g. 10 for 10 QWR):

PASTE INTO TERMINAL — REPLACE THE TWO PLACEHOLDERS FIRST
qweercoin-cli -datadir="$HOME/Library/Application Support/Qweercoin" sendtoaddress "YOUR_Q_ADDRESS" AMOUNT

If it works, it prints a long string of letters and numbers — that is your transaction ID, confirming your send is on its way.

Full example:
qweercoin-cli -datadir="$HOME/Library/Application Support/Qweercoin" sendtoaddress "QQx1wN5LVfGXmotsC8Tvgo8sQ582VYswcd" 10
🪟

Windows

1 Open Command Prompt

Press Windows Key + R, type cmd, and press Enter to open the Command Prompt.

2 Check your balance

Paste this command and press Enter:

PASTE INTO COMMAND PROMPT
qweercoin-cli.exe -datadir="%APPDATA%\Qweercoin" getbalance

It will print a number — your spendable QWR balance.

3 Send to your phone wallet

Paste the command below, replacing YOUR_Q_ADDRESS with your phone wallet address and AMOUNT with how much QWR you want to send:

PASTE INTO COMMAND PROMPT — REPLACE THE TWO PLACEHOLDERS FIRST
qweercoin-cli.exe -datadir="%APPDATA%\Qweercoin" sendtoaddress "YOUR_Q_ADDRESS" AMOUNT

If it works, it prints a long string of letters and numbers — that is your transaction ID, confirming your send is on its way.

Full example:
qweercoin-cli.exe -datadir="%APPDATA%\Qweercoin" sendtoaddress "QQx1wN5LVfGXmotsC8Tvgo8sQ582VYswcd" 10
If Windows says "qweercoin-cli.exe is not recognized", navigate to your Qweercoin install folder first:
cd "C:\Program Files\Qweercoin"
Then run the command again.
🐧

Linux

1 Open a Terminal

Open your terminal application (e.g. GNOME Terminal, Konsole, or xterm).

2 Check your balance

Paste this command and press Enter:

PASTE INTO TERMINAL
qweercoin-cli -datadir="$HOME/.qweercoin" getbalance

It will print a number — your spendable QWR balance.

3 Send to your phone wallet

Paste the command below, replacing YOUR_Q_ADDRESS with your phone wallet address and AMOUNT with how much QWR you want to send:

PASTE INTO TERMINAL — REPLACE THE TWO PLACEHOLDERS FIRST
qweercoin-cli -datadir="$HOME/.qweercoin" sendtoaddress "YOUR_Q_ADDRESS" AMOUNT

If it works, it prints a long string of letters and numbers — that is your transaction ID, confirming your send is on its way.

Full example:
qweercoin-cli -datadir="$HOME/.qweercoin" sendtoaddress "QQx1wN5LVfGXmotsC8Tvgo8sQ582VYswcd" 10

After Sending

  1. Go back to your phone wallet and tap the refresh button (↻) on the home screen
  2. Your balance will update once the transaction is confirmed in a block
  3. This usually takes a few minutes depending on mining activity
If your balance still shows 0 after refreshing, the transaction may still be pending. Wait a minute and try refreshing again.