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.

21 lines
701 B

5 years ago
ZecWallet-lite is z-Addr first, Sapling compatible wallet lightwallet for Zcash
6 years ago
## Compiling from source
5 years ago
* ZecWallet 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).
* You'll need Rust v1.37 +
6 years ago
### Building on Linux
```
5 years ago
git clone https://github.com/adityapk/zecwallet-lite.git
cd zecwallet
5 years ago
/path/to/qt5/bin/qmake zecwallet-lite.pro CONFIG+=debug
6 years ago
make -j$(nproc)
5 years ago
./zecwallet
6 years ago
```
5 years ago
Right now, you'll also need to run `lightwalletd` on your local machine for Zecwallet to connect to.
6 years ago
_PS: ZecWallet is NOT an official wallet, and is not affiliated with the Electric Coin Company in any way._