Skip to content

friendshipCoin/friendshipcoin-gui

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

FriendshipCoin

FriendshipCoinWebsite ContributorsWelcome LICENSE Discord

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

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