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.
-
Windows - https://friendshipcoin.com/download/FriendshipCoinWin64.zip
-
Mac - https://friendshipcoin.com/download/FriendshipCoinOSX.dmg
You need the following prerequisites to be able to build and develop the project on your local machine.
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
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.
npm install -g vue-cli
git clone https://github.com/friendshipCoin/friendshipcoin-gui.git
CD into the newly created directory
cd friendshipcoin-gui
Install Dependencies
yarn
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 in development mode
yarn run dev
To Build
yarn run build
This project is licensed under the MIT License - see the LICENSE file for details