|
1 year ago | |
---|---|---|
build | 2 years ago | |
docs | 2 years ago | |
src | 1 year ago | |
.eslintrc.json | 2 years ago | |
.gitignore | 1 year ago | |
LICENSE.md | 2 years ago | |
README.md | 2 years ago | |
afterPackLinux.js | 2 years ago | |
bower.json | 2 years ago | |
build.sh | 1 year ago | |
check.sh | 2 years ago | |
main.js | 1 year ago | |
no_git_ssl.sh | 2 years ago | |
package-lock.json | 1 year ago | |
package.json | 1 year ago | |
package_apkdeb.json | 2 years ago | |
runwalletd.sh | 2 years ago | |
zip.sh | 2 years ago |
WalletShell is a GUI wallet for FED Coin.
This wallet contains the basic functions required to manage your FED Coin assets:
WalletShell relies on service
to manage wallet container & rpc communication.
Release installer & packaged archived includes a ready to use service
binary, which is unmodified copy FED Coin release archive.
On first launch, WalletShell will try to detect location/path of bundled service
binary, but if it’s failed, you can manually set path to the service
binary on the Settings screen.
If you don’t trust the bundled service
file, you can compare the checksum (sha256sum) against one from the official release, or simply download and use the binary from official FED Coin release, which is available here: https://github.com/jojapoppa/fedoragold-release. Then, make sure to update your service
path setting.
walletshell-<version>-win-setup.exe
) and follow the installation wizard.chmod +x walletshell-<version>-linux.AppImage
See: https://docs.appimage.org/user-guide/run-appimages.html
WalletShell.app/Contents/MacOs/WalletShell
) ??You need to have Node.js
and npm
installed, go to https://nodejs.org and find out how to get it installed on your platform.
Once you have Node+npm installed:
# first, download service binary for each platform
# from FED Coin official repo
# extract the service executable somewhere
# clone the repo
$ git clone https://github.com/jojapoppa/fedoragold-wallet-electron
$ cd fedoragold-wallet-electron
# install dependencies
$ npm install
# create build+dist directory
$ mkdir -p ./build && mkdir -p ./dist
# copy/symlink icons from assets, required for packaging
$ cp ./src/assets/icon.* ./build/
# build GNU/Linux package
$ mkdir -p ./bin/lin
$ cp /path/to/linux-version-of/service ./bin/lin/
$ npm run dist-lin
# build Windows package
$ mkdir -p ./bin/win
$ cp /path/to/win-version-of/service.exe ./bin/win/
$ npm run dist-win
# build OSX package
$ mkdir -p ./bin/osx
$ cp /path/to/osx-version-of/service ./bin/osx/
$ npm run dist-mac
Resulting packages or installer can be found inside dist/
directory.
Please see this guide if you want to adapt WalletShell to be use for your own Coin fork.