GUI wallet for Danicoin
Go to file
2017-12-30 22:53:05 +01:00
danicoin@a6bb9525fe Add DaniCoin submodule 2017-12-30 22:48:09 +01:00
src Fix runtime wallet error on Windows 2016-04-12 13:42:34 +00: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 CryptoNoteWallet update 2015-09-18 12:37:30 +00:00
CryptoNoteWallet.cmake Actually, let's call it Danicoin rather than DaniCoin 2017-12-30 22:53:05 +01:00
README.md Improve CryptoNoteCoin settings usage 2015-04-30 15:11:48 +03:00

1. Clone wallet sources

git clone https://github.com/cryptonotefoundation/cryptonotewallet.git

2. Modify CryptoNoteWallet.cmake

set(CN_PROJECT_NAME "furiouscoin")
set(CN_CURRENCY_DISPLAY_NAME "FuriousCoin")
set(CN_CURRENCY_TICKER "XFC")

3. Set symbolic link to coin sources at the same level as src. For example:

ln -s ../cryptonote cryptonote

Alternative way is to create git submodule:

git submodule add https://github.com/cryptonotefoundation/cryptonote.git cryptonote

Replace URL with git remote repository of your coin.

4. Build

mkdir build && cd build && cmake .. && make