Skip to content

anoncoinonline/anontech-wallet-go

 
 

Repository files navigation

AnonTech Nest

The universal desktop GUI wallet for AnonTech

Logo

Installation

Windows - Mac - Linux

Windows

  1. Go here and download the latest release called AnonCoin-Nest-x.xx-Windows.zip
  2. Unzip the folder and launch AnonCoin-Nest.exe. (Make sure you leave everything as is in the folder)

Important notes:

  • Make sure Anon-service.exe is not running before you start AnonCoin-Nest

Mac

  1. Go here and download the latest release called AnonCoin-Nest-x.xx-Mac.zip.
  2. Unzip it and move the folder wherever you want or drag the application AnonCoin-Nest into /Applications or any other folder.
  3. Launch the application. (If your mac complains that the app comes from an unindentified developer and does not want to open it, just right-click (or ctrl-click) on the app, and choose open > open)

Important notes:

  • The wallets you create or generate will be saved to your home folder. You can keep them there or move them wherever you want.
  • Make sure Anon-service is not running before you start AnonCoin-Nest.
  • If you encounter crashes, open the activity monitor (in your app > utilities), and force quit Anon-service (if it is running) before opening a wallet.
  • The log files will be saved in ~/Library/Application Support/AnonCoin-Nest/.

Linux

  1. Go here and download the latest release called AnonCoin-Nest-x.xx-Linux.tar.gz
  2. extract it $ tar xvzf AnonCoin-Nest-x.xx-Linux.tar.gz
  3. run AnonCoin-Nest.sh. (Make sure you leave everything as is in the folder)

Important notes:

  • Make sure Anon-service is not running before you start AnonCoin-Nest
  • If you want the copy address to clipboard button to work, install xclip or xsel (on Debian/Ubuntu: $ sudo apt install xclip).
  • If you encounter crashes, open an activity monitor (e.g. $ htop), and quit Anon-service (if it is running) before opening a wallet. (this bug is being worked on)

Upgrade

Just download the new release and follow the same steps as Installation. If you are on Windows or Linux, move your wallets (.wallet) and settings.db files from the old Nest folder to the new. Then you can delete the old folder. (on Mac, you do not need to move the settings.db file as it stays in ~/Library/Application Support/AnonCoin-Nest/).

Screenshots

Main Screen

Open Wallet

Donations

TRTLv3jzutiQwqHL3qFwsu5EVLWesxZr1AFQ4AuMR3SD56n3rkHDkwj79eKwvaiU1nYQWGydKoXM6fXyiiGKsPDnVCNXzNdusxx

Build - (for developers only)

Linux

  1. Download Go from here

  2. Use tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz to extract the downloaded go package.

  3. Add the following lines to .bashrc file, save the file and then execute the command source .bashrc in a terminal.

    export GOPATH=$HOME/go
    
    export GOBIN=$GOPATH/bin
    
    export GOROOT=/usr/local/go
    
    export PATH=$HOME/bin:$HOME/.local/bin:$PATH:$GOROOT/bin:$GOBIN
    
  4. Similarly add the following lines to .profile file, save the file and then execute the command source .profile in a terminal.

    CGO_CXXFLAGS_ALLOW=".*" 
    CGO_LDFLAGS_ALLOW=".*" 
    CGO_CFLAGS_ALLOW=".*" 
    
  5. Follow the instructions present here till Run the setup to install Qt which is the most important binding required to build Nest.

  6. Type the following commands to clone the Nest wallet, install dependencies and build the wallet.

    $ cd $HOME/go/src
    $ git clone https://github.com/AnonCoin/Anon-wallet-go.git AnonCoin-Nest
    $ go get -v github.com/atotto/clipboard github.com/dustin/go-humanize github.com/mattn/go-sqlite3 github.com/mcuadros/go-version github.com/mitchellh/go-ps github.com/pkg/errors
    $ cd AnonCoin-Nest
    $ qtdeploy build desktop
    
  7. The app folder is in deploy/linux/

  8. Include the latest turtle-service and AnonCoind builds in the app folder

Windows - Mac

  1. Install Go (https://golang.org/doc/install)

  2. Install this binding: https://github.com/therecipe/qt (installation instructions at https://github.com/therecipe/qt/wiki/Installation)

  3. Insall Go libraries (in console or terminal):

    $ go get github.com/atotto/clipboard github.com/dustin/go-humanize github.com/mattn/go-sqlite3 github.com/mcuadros/go-version github.com/mitchellh/go-ps github.com/pkg/errors
    
  4. Run qtdeploy build desktop

  5. The app folder is in deploy/your os/

  6. Include the latest turtle-service and AnonCoind builds in:

    • Windows: in the app folder
    • Mac: in AnonCoin-Nest.app/Contents/

About

A universal gui wallet for AnonTech

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • QML 57.6%
  • Go 41.8%
  • Shell 0.6%