GUI wallet for Danicoin
Go to file
2015-04-30 15:11:48 +03:00
src Improve CryptoNoteCoin settings usage 2015-04-30 15:11:48 +03:00
.gitignore Initial commit 2015-04-29 20:15:01 +03:00
CMakeLists.txt Initial commit 2015-04-29 20:15:01 +03:00
CryptoNoteWallet.cmake Initial commit 2015-04-29 20:15:01 +03: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