FriendshipCoin GUI Wallet
Cross Platform Desktop FSC Wallet built with Electron. This is alpha software so use at your own risk. Make sure you back up your FriendshipCoin wallet before running this.
If you have any questions or need assistance please join our discord and someone will help you.
Pre-built Downloads
-
Windows - https://friendshipcoin.com/download/FriendshipCoinWin64.zip
-
Mac - https://friendshipcoin.com/download/FriendshipCoinOSX.dmg
Prerequisites
You need the following prerequisites to be able to build and develop the project on your local machine.
Mac / Linux
NodeJS: Use NVM to install and manage your NodeJS installation - https://github.com/creationix/nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
or Wget
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
The script clones the nvm repository to /.nvm and adds the source line to your profile (/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc).
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
Windows
NodeJS:
Download the windows installer here:
https://nodejs.org/en/download/
Yarn (npm alternative)
npm install -g yarn
The application may work fine with npm
but yarn
is recommended.
Install Vue-Cli
npm install -g vue-cli
Get the Source
git clone https://github.com/friendshipCoin/friendshipcoin-gui.git
CD into the newly created directory
cd friendshipcoin-gui
Install Dependencies
yarn
Get the FriendshipCoin Daemon Binary
IMPORTANT - This GUI Wallet is basically a wrapper around the FriendshipCoin RPC so you need the daemon binary in order for this to function. Go to FriendshipCoin-Core and get the release for whichever platform you are running.
Copy the binary into the static
folder of the project. If that binary is not in the static
folder the project will not run correctly.
Run the application
Run in development mode
yarn run dev
To Build
yarn run build
Built With
License
This project is licensed under the MIT License - see the LICENSE file for details