Hush lite wallet https://faq.hush.is/sdl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
3.0 KiB

6 years ago
zec-qt-wallet is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS.
6 years ago
6 years ago
![Screenshot](docs/screenshot-main.png?raw=true)
![Screenshots](docs/screenshot-sub.png?raw=true)
6 years ago
# Installation
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zec-qt-wallet/releases
6 years ago
### Linux
6 years ago
Extract and run the binary.
```
6 years ago
tar -xvf zec-qt-wallet-v0.4.3.tar.gz
./zec-qt-wallet-v0.4.3/zec-qt-wallet
```
6 years ago
6 years ago
### Windows
Unzip the release binary and double click on zec-qt-wallet to start.
6 years ago
6 years ago
### macOS
Double-click on the .dmg file to open it, and drag zec-qt-wallet on to the Applications link to install.
6 years ago
## zcashd
zec-qt-wallet needs a Zcash node running zcashd. If you already have a zcashd node running, zec-qt-wallet will connect to it.
6 years ago
If you don't have one, zec-qt-wallet will start its embedded zcashd node.
6 years ago
Additionally, if this is the first time you're running zec-qt-wallet or a zcashd daemon, zec-qt-wallet will download the zcash params (~1.7 GB) and configure `zcash.conf` for you.
6 years ago
Pass `--no-embedded` to disable the embedded zcashd and force zec-qt-wallet to connect to an external node.
6 years ago
## Compiling from source
6 years ago
zec-qt-wallet is written in C++ 14, and can be compiled with g++/clang++/visual c++. It also depends on Qt5, which you can get from [here](https://www.qt.io/download)
6 years ago
See detailed build instructions [on the wiki](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Compiling-from-source-code)
6 years ago
6 years ago
### Building on Linux
6 years ago
```
git clone https://github.com/adityapk00/zec-qt-wallet.git
cd zec-qt-wallet
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
6 years ago
make -j$(nproc)
./zec-qt-wallet
6 years ago
```
6 years ago
### Building on Windows
6 years ago
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
From the VS Tools command prompt
```
git clone https://github.com/adityapk00/zec-qt-wallet.git
cd zec-qt-wallet
6 years ago
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -spec win32-msvc CONFIG+=debug
nmake
debug\zec-qt-wallet.exe
```
To create the Visual Studio project files so you can compile and run from Visual Studio:
```
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -tp vc CONFIG+=debug
6 years ago
```
6 years ago
### Building on macOS
6 years ago
You need to install the Xcode app or the Xcode command line tools first, and then install Qt.
6 years ago
```
git clone https://github.com/adityapk00/zec-qt-wallet.git
cd zec-qt-wallet
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
make
./zec-qt-wallet.app/Contents/MacOS/zec-qt-wallet
```
6 years ago
### [Troubleshooting Guide & FAQ](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ)
6 years ago
Please read the [troubleshooting guide](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ) for common problems and solutions.
6 years ago
For support or other questions, tweet at [@zecqtwallet](https://twitter.com/zecqtwallet) or [file an issue](https://github.com/ZcashFoundation/zec-qt-wallet/issues).
6 years ago
_PS: zec-qt-wallet is NOT an official wallet, and is not affiliated with the Zerocoin Electric Coin Company in any way._