watchonly=true addresses show up as OWN addresses currently! You have been warned. Some automated software like BarterDEX create these.
HUSH Desktop GUI Wallet
Graphical user interface wrapper for the HUSH (formerly Zdash) command line tools
This program provides a Graphical User Interface (GUI) for the HUSH (formerly Zdash) client tools that acts as a wrapper and presents the information in a user-friendly manner.
New/Experimental: HUSH Desktop GUI Wallet for Windows is available
Before installing the Desktop GUI Wallet you need to have HUSH up and running. The following guide explains how to set up HUSH (formerly Zdash).
For security reasons it is recommended to always build the GUI wallet program from GitHub source. The details of how to build it are described below (easy to follow).
-
Operating system and tools
As of May 2017 (HUSH v1.0.9) this program is mostly tested on Linux. The Linux tools you need to build and run the Wallet GUI are Git, Java (JDK7 or later) and Ant. If using Ubuntu Linux, they may be installed via command:
user@ubuntu:~/build-dir$ sudo apt-get install git default-jdk ant
For RedHat/CentOS/Fedora-type Linux systems the command is (like):
user@centos:~/build-dir$ sudo yum install java-1.8.0-openjdk git ant
The name of the JDK package (
java-1.8.0-openjdk
) may vary depending on the Linux system, so you need to check it, if namejava-1.8.0-openjdk
is not accepted. If you have some other Linux distribution, please check your relevant documentation on installing Git, JDK and Ant. The commandsgit
,java
,javac
andant
need to be startable from command line before proceeding with build. -
Building from source code
As a start you need to clone the hush-swing-wallet-ui Git repository:
user@ubuntu:~/build-dir$ git clone https://github.com/vaklinov/hush-swing-wallet-ui.git
Change the current directory:
user@ubuntu:~/build-dir$ cd hush-swing-wallet-ui/
Issue the build command:
user@ubuntu:~/build-dir/hush-swing-wallet-ui$ ant -buildfile ./src/build/build.xml
This takes a few seconds and when it finishes, it builds a JAR file
./build/jars/HUSHSwingWalletUI.jar
. You need to make this file executable:user@ubuntu:~/build-dir/hush-swing-wallet-ui$ chmod u+x ./build/jars/HUSHSwingWalletUI.jar
At this point the build process is finished the built GUI wallet program is the JAR file
./build/jars/HUSHSwingWalletUI.jar
-
Installing the built HUSH GUI wallet
3.1. If you have built HUSH from source code:
Assuming you have already built it from source code in directory /home/user/hush/src
(for
example - this is the typical build dir. for HUSH v1.0.8) which contains the command line tools hush-cli
and hushd
you need to take the created file ./build/jars/HUSHSwingWalletUI.jar
and copy it
to directory /home/user/hush/src
(the same dir. that contains hush-cli
and hushd
). Example copy command:
user@ubuntu:~/build-dir/hush-swing-wallet-ui$ cp ./build/jars/HUSHSwingWalletUI.jar /home/user/hush/src
-
Running the installed HUSH GUI wallet
Before running the GUI you need to start hushd (e.g.
hushd --daemon
). The wallet GUI is a Java program packaged as an executable JAR file. It may be run from command line or started from another GUI tool (e.g. file manager). Assuming you have already installed HUSH and the GUI WalletHUSHSwingWalletUI.jar
in directory/home/user/hush/src
one way to run it from command line is:user@ubuntu:~/build-dir/hush-swing-wallet-ui$ java -jar /home/user/hush/src/HUSHSwingWalletUI.jar
If you are using Ubuntu (or similar ;) Linux you may instead just use the file manager and right-click on the
HUSHSwingWalletUI.jar
file and choose the option "Open with OpenJDK 8 Runtime". This will start the HUSH GUI wallet.Important: the HUSH configuration file
~/.hush/hush.conf
needs to be correctly set up for the GUI wallet to work. Specifically the RPC user and password need to be set in it like:rpcuser=username rpcpassword=wjQOHVDQFLwztWp1Ehs098LKJHAXjd4E
At the present time this project is non-commercial in nature and developed by volunteers. If you find the GUI Wallet useful, please consider making a donation for its further development. Your contribution matters! Donations are accepted at HUSH T address:
t1UDhNq2aEqvxEbPzcRM8n2QJV8YJ664rXJ
This program is distributed under an MIT License.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.