Skip to content

myneworder/monaizetokenGUI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Desktop GUI Wallet for MonaizeToken®

Graphical user interface wrapper for the MonaizeToken® command line tools

This program provides a Graphical User Interface (GUI) for the MNZ client tools that acts as a wrapper and presents the information in a user-friendly manner.

Screenshot

Building, installing and running the Wallet GUI

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). Project snapshot tags named x.xx-SNAPSHOT have been signed with the following public key. Users who are less experienced with working on a command line, may instead use this quite-user-friendly installation guide and usage guide. The following video also explains how to set up the GUI wallet.

  1. Operating system and tools

    As of May 2017 (Komodo/Monaize Core v1.0.8) this program is mostly tested on Linux and Mac OS X (same limitation as ZCash) with experimental support for Windows. 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 name java-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 commands git, java, javac and ant need to be startable from command line before proceeding with build.

  2. Building from source code

    As a start you need to clone the monaizetokenGUI Git repository:

    user@ubuntu:~/build-dir$ git clone https://github.com/ca333/monaizetokenGUI.git
    

    Change the current directory:

    user@ubuntu:~/build-dir$ cd monaizetokenGUI/
    

    Issue the build command:

    user@ubuntu:~/build-dir/monaizetokenGUI$ ant -buildfile ./src/build/build.xml
    

    This takes a few seconds and when it finishes, it builds a JAR file ./build/jars/MonaizeWalletUI.jar. You need to make this file executable:

    user@ubuntu:~/build-dir/monaizetokenGUI$ chmod u+x ./build/jars/MonaizeWalletUI.jar
    

    At this point the build process is finished the built GUI wallet program is the JAR file ./build/jars/MonaizeWalletUI.jar

License

This program is distributed under an MIT License.

Disclaimer

This program is not officially endorsed by or associated with the ZCash project and the ZCash company. ZCash® and the ZCash® logo are trademarks of the Zerocoin Electric Coin Company.

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.

Known issues and limitations

  1. Issue: Wallet versions 0.58 and below, when running on systems with (typically non-western) locales that redefine the decimal point in the OS locale settings, have problems with updating the GUI wallet state. A workaround is to change the locale settings to have dot as decimal separator.
  2. Limitation: Wallet encryption has been temporarily disabled in ZCash due to stability problems. A corresponding issue #1552 has been opened by the ZCash developers. Correspondingly wallet encryption has been temporarily disabled in the ZCash Desktop GUI Wallet.
  3. Issue: the GUI wallet does not work correctly if mnzd is started with a custom data directory, like: mnzd -datadir=/home/data/whatever This will be fixed in later versions.
  4. Issue: GUI data tables (transactions/addresses etc.) allow copying of data via double click but also allow editing. The latter needs to be disabled.
  5. Limitation: The list of transactions does not show all outgoing ones (specifically outgoing Z address transactions). A corresponding issue #1438 has been opened for the ZCash developers.
  6. Limitation: The CPU percentage shown to be taken by zcashd on Linux is the average for the entire lifetime of the process. This is not very useful. This will be improved in future versions.

About

Desktop GUI Wallet for MonaizeToken

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.5%
  • Shell 0.5%