GUI wallet for Danicoin
Go to file
Kumi 88f28893af Merge branch 'master' of kumig.it:kumitterer/danicoinwallet 2017-12-31 09:35:21 +01:00
danicoin@a6bb9525fe Add DaniCoin submodule 2017-12-30 22:48:09 +01:00
src Fix app name 2017-12-31 00:16:34 +01:00
.gitignore Initial commit 2015-04-29 20:15:01 +03:00
.gitmodules Add DaniCoin submodule 2017-12-30 22:48:09 +01:00
CMakeLists.txt Fix strings 2017-12-30 23:41:21 +01:00
CryptoNoteWallet.cmake Fix paths 2017-12-30 23:41:00 +01:00
Makefile Add install option to Makefile 2017-12-31 09:35:12 +01:00
README.md Add README.md 2017-12-31 00:18:33 +01:00

README.md

Danicoin Wallet

This is the graphical user interface for Danicoin, the best cryptocurrency ever.

Building

There are currently no pre-built binaries available for Danicoin Wallet. To build it on Ubuntu Linux, let's first install all dependencies:

sudo apt install git build-essential cmake libboost-all-dev qt5-default

The next step is to download the source code for Danicoin Wallet and Danicoin itself:

git clone https://kumig.it/kumitterer/danicoinwallet.git
cd danicoinwallet
git submodule init
git submodule update

We are now ready to build the wallet:

mkdir build
cd build
cmake ..
make

When the build is finished, the only thing left to do is installing it to /usr/bin so you can easily run it from the terminal:

sudo install danicoin /usr/bin/

Running

Running Danicoin Wallet is as simple as it gets - just run it from your terminal:

danicoin

It will use the ".danicoin" subdirectory of your user directory to store its data, including a full copy of the blockchain. If you want to change any of its settings, you can pass them as command line arguments. To find all available arguments, execute:

danicoin --help