Hush full node GUI wallet
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.
 
 
 
 
 
 
Jonathan "Duke" Leto e5cb78592b Fix some warning messages 5 years ago
docs Remove qt references (#122) 5 years ago
res Update payment request image 5 years ago
singleapplication mingw compilation for singleapp 5 years ago
src Fix some warning messages 5 years ago
.gitignore Silent Dragon the build 5 years ago
.gitmodules mingw compilation for singleapp 5 years ago
.travis.yml Silent Dragon the build 5 years ago
LICENSE Add release script 6 years ago
README.md update readme about embedded node 5 years ago
application.qrc Pay payment requests 5 years ago
public_key.asc #106 - Add public key, verification procedure 5 years ago
silentdragon.png update screenshot 5 years ago
silentdragon.pro Silent Dragon the build 5 years ago

README.md

SilentDragon desktop wallet for HUSH ($HUSH) that runs on Linux, Windows and macOS.

Screenshots

Installation

Head over to the releases page and grab the latest installers or binary. https://github.com/MyHush/SilentDragon/releases

hushd

SilentDragon needs a Hush full node running hushd. If you already have a hushd node running, SilentDragon will connect to it.

If you don't have one, SilentDragon will start its embedded hushd node.

Additionally, if this is the first time you're running SilentDragon or a hushd daemon, SilentDragon will download the zcash params (~1.7 GB) and configure HUSH3.conf for you.

Pass --no-embedded to disable the embedded hushd and force SilentDragon to connect to an external node.

Compiling from source

SilentDragon 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. Note that if you are compiling from source, you won't get the embedded hushd by default. You can either run an external hushd, or compile hushd as well.

Building on Linux

sudo apt-get install qt5-default qt5-qmake libqt5websockets5-dev
git clone https://github.com/MyHush/SilentDragon.git
cd SilentDragon
qmake silentdragon.pro CONFIG+=debug
make -j$(nproc)

./silentdragon

Building on Windows

You need Visual Studio 2017 (The free C++ Community Edition works just fine).

From the VS Tools command prompt

git clone  https://github.com/MyHush/SilentDragon.git
cd SilentDragon
c:\Qt5\bin\qmake.exe silentdragon.pro -spec win32-msvc CONFIG+=debug
nmake

debug\SilentDragon.exe

To create the Visual Studio project files so you can compile and run from Visual Studio:

c:\Qt5\bin\qmake.exe silentdragon.pro -tp vc CONFIG+=debug

Building on macOS

You need to install the Xcode app or the Xcode command line tools first, and then install Qt.

git clone https://github.com/MyHush/SilentDragon.git
cd SilentDragon
qmake silentdragon.pro CONFIG+=debug
make

./SilentDragon.app/Contents/MacOS/SilentDragon

Emulating the embedded node

In binary releases, SilentDragon will use node binaries in the current directory to sync a node from scratch. It does not attempt to download them, it bundles them. To simulate this from a developer setup, you can symlink these four files in your Git repo:

    ln -s ../hush3/src/hushd
    ln -s ../hush3/src/hush-cli
    ln -s ../hush3/src/komodod
    ln -s ../hush3/src/komodo-cli

The above assumes silentdragon and hush3 git repos are in the same directory. File names on Windows will need to be tweaked.

Support

For support or other questions, Join Discord, or tweet at @MyHushTeam or file an issue.