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
572 B

5 years ago
# SilentDragonLite
5 years ago
SilentDragonLite is a GUI wallet for the Hush cryptocoin, which does not require you to download the full blockchain!
5 years ago
## Compiling from source
5 years ago
* SilentDragonLite is written in C++ 14, and can be compiled with g++/clang++/visual c++.
5 years ago
* It also depends on Qt5, which you can get from [here](https://www.qt.io/download).
* You'll need Rust v1.37 +
5 years ago
### Building on Linux
```
5 years ago
git clone https://github.com/MyHush/SilenDragonLite.git
5 years ago
cd silentdragonlite
/path/to/qt5/bin/qmake silentdragon-lite.pro CONFIG+=debug
5 years ago
make -j$(nproc)
5 years ago
./silentdragonlite
5 years ago
```