-
-
Notifications
You must be signed in to change notification settings - Fork 29
B09. Wallet | Using Zero Wallet
Binary distributions can be found here.
Select the appropriate file for the target platform (Windows, Mac, Linux).
Windows and Linux binaries are provided in .zip
format, while Mac binaries are provided in .dmg
format.
Extract the .zip
file (qwertycoin-zero-linux-v1.1.3.zip
).
Download the .dmg
file (qwertycoin-zero-macos-high-sierra-v1.1.3.dmg
).
Extract the .zip
file (qwertycoin-zero-win64-v1.1.3.zip
).
Double click qwertycoin-zero-linux-v1.1.3.zip
and run executable.
Double click qwertycoin-zero-macos-high-sierra-v1.1.3.dmg
.
If you have a blocking warning that says that this app comes from an unknown developer, right-click on the app, then click Open > Open.
Double click qwertycoin-zero-win64-v1.1.3.zip
and run the executable from the extracted files.
On the start screen you will have two options. Once is to create a new wallet and the second is to open an existing one. Click 'Create New Wallet'.
A popup will then appear with a mnemonic phrase.
Make sure to write down the mnemonic phrase and store it in a safe place because that is how you restore your wallet!
Once the wallet is created it will automatically start syncing from a remote node to ensure that you can connect with the network quickly without using excessive storage. The Zero wallet doesn't download the entire blockchain like the GUI wallet that requires you to download the entire blockchain before using the wallet.
You will not be able to use the zero wallet until it has finished syncing.
By default your wallet is not encrypted. To encrypt it with a password click the 'Set password' button under your wallet address at the top of the screen. Click 'OK' to confirm.
Your wallet address can be seen at the top of the wallet as a string of numbers and letters beginning with 'QWC'.
It is important to export your keys and save them in a safe place. In the event that your wallet crashes or becomes corrupted, the keys are the only way to restore a wallet and recover the funds that it holds.
To export, go to the 'Wallet' tab and click 'Export private key'. Copy your View and Spend secret keys and store them in a safe place.
Do not share these with anyone!
You can view your wallet balance by pressing the 'Overview' button on the left hand side of the wallet.
You can send QWC by clicking the 'Send' button on the left side of the wallet. To send QWC paste the wallet address of the person you are sending funds to in the 'Pay to' box.
Next enter the amount that you would like to send into the amount box.
(optional): You can also set the priority of the transaction (pay a higher fee to send it faster) or add more anonymity to it.
When you are done click the 'Send' button at the bottom left of the screen.
To safely close your wallet click the 'x' button at the top of the wallet.
You can easily restore your wallet with your private view and spend keys.
To restore, click on 'Wallet' tab and press 'Import private key'. Paste in your private key and enter where you would like to save the file and click 'OK'.
The wallet will be restored and begin syncing with the blockchain.
If you want to recover your wallet with your mnemonic phrase, it's pretty easy as well.
To restore, go to the 'Wallet' tab and click 'Restore from mnemonic seed'. Enter your phrase and indicate where you would like to save the new wallet file. Click 'OK' when you are finished.
The wallet will be restored and begin syncing with the blockchain.
- You will need the following packages: boost (1.64 or higher), QT Library (5.9.0 or higher) cmake (3.10 or higher), git, gcc (4.9 or higher), g++ (4.9 or higher), make, and python. Most of these should already be installed on your system.
- For example on ubuntu:
sudo apt-get install build-essential python-dev gcc g++ git cmake libboost-all-dev qtbase5-dev
- After this you can build your Qwertycoin Zero Wallet.
- After installing dependencies run simple script:
git clone --recurse-submodules https://github.com/qwertycoin-org/qwertycoin-zero
cd ./qwertycoin-zero
mkdir ./build
cd ./build
cmake ..
cmake --build . --config Release
- If all went well, it will complete successfully, and you will find all your binaries in the
./build/Release directory.
- Install Xcode and Developer Tools
- Install cmake. See here if you are unable to call
cmake
from the terminal after installing - Install git
- After installing dependencies run simple script:
git clone https://github.com/qwertycoin-org/qwertycoin-zero
cd ./qwertycoin-zero
mkdir ./build
cd ./build
cmake ..
cmake --build . --config Release
- If all went well, it will complete successfully, and you will find all your binaries in the ./build/Release directory.
- Install [Visual Studio 2017 Community Edition](Visual Studio 2017 Community Edition).
- When installing Visual Studio, it is required that you install Desktop development with C++ and the VC++ v140 toolchain when selecting features. The option to install the v140 toolchain can be found by expanding the "Desktop development with C++" node on the right. You will need this for the project to build correctly.
- Make sure that bundled cmake version is 3.10 or higher.
- From the start menu, open "x64 Native Tools Command Prompt for vs2017" and the run the following commands:
git clone https://github.com/qwertycoin-org/qwertycoin-zero
cd qwertycoin-zero
md build
cd build
cmake -G "Visual Studio 15 2017 Win64" ..
cmake --build . --config Release
- If all went well, it will complete successfully, and you will find all your binaries in the
.\build\Release
directory. - Additionally, a
.sln
file will have been created in thebuild
directory. If you wish to open the project in Visual Studio with this, you can.
- A01. | Contributing
- A02. | Getting Started
- A03. | Qwertycoin Community
- A04. | Qwertycoin Voting
- A05. | Qwertycoin API
- B01. | Generating a Wallet
- B02. | Making a Paper Wallet
- B03. | Wallet Backup
- B04. | Wallet Recovery
- B05. | Wallet Update
- B06. | Using CLI Wallet
- B07. | Using RPC Wallet
- B08. | Using GUI Wallet
- B09. | Using Zero Wallet
- B10. | Using Web Wallet
- B11. | Using Mobile Wallet
- B12. | RPC Wallet API
- B13. | Sign and verify messages
- C01. | Start Masternode
- C02. | Fix Sync Issues
- C03. | Load Checkpoints
- C04. | JSON RPC API
- C05. | HTTP RPC API
- D01. | XMR Stak Guide
- D02. | XMR Stak Linux Guide
- D03. | XMRIG Guide
- D04. | Mining with SBC
- D05. | Cloud Mining
- D06. | Mobile Mining
- D07. | Using a Mining Pool
- D08. | Creating a Mining Pool
- E01. | How to trade QWC on Crex24
- E02. | How to trade QWC on Bitexlive
- E03. | How to trade QWC on Bisq
- G01. | Hosting Block Explorer
- G02. | Hosting Faucet
- G03. | Hosting Web Wallet
- G04. | How to use the QWC Faucet