stake-house / wagyu-key-gen

GNU General Public License v3.0
60 stars 42 forks source link

Wagyu Key Gen

gitpoap badge

Wagyu Key Gen is a GUI application providing functionality to the staking-deposit-cli. It is a React app running in Electron. See src/electron/ for the simple electron app and src/react/ for where the magic happens.

Download wagyu at https://wagyu.gg

Wagyu Audit by HashCloak Wagyu Key Gen Audit Report

Environment Configuration & Dependencies

Prior to running Wagyu Key Gen a few dependencies need to be installed.

Ubuntu 20.04 and later

Execute all those commands in your terminal to setup your dev environment.

sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -

sudo apt install -y build-essential nodejs git python3-distutils python3-dev

PATH="$HOME/.local/bin:$PATH"

curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
pip3 install pyinstaller

sudo npm install -g yarn

git clone https://github.com/stake-house/wagyu-key-gen
cd wagyu-key-gen

yarn install
yarn buildcli

Ubuntu 18.04

Even if Ubuntu 18.04 is somewhat old, it is a great OS to build our releases on for the Linux target because it has an older GLIBC which makes it more compatible. More details here.

Execute all those commands in your terminal to build a distribution for release.

sudo apt update && sudo apt -y upgrade

sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -

sudo apt install -y python3.10-dev python3.10-distutils zlib1g-dev build-essential nodejs git

PATH="$HOME/.local/bin:$PATH"

curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
alias python3=python3.10
echo -e "\nalias python3=python3.10" >> ~/.bash_aliases
python3 get-pip.py
pip3 install pyinstaller

sudo corepack enable

git clone https://github.com/stake-house/wagyu-key-gen
cd wagyu-key-gen

yarn install
yarn build
yarn buildcli
yarn dist

Windows 10

npm install -g yarn

git clone https://github.com/stake-house/wagyu-key-gen cd wagyu-key-gen

yarn install yarn buildcliwin


### macOS 10.15.1 and later
Execute all those commands in your terminal to setup your dev environment.  You may be prompted to install "command line developer tools" at some point and please do it.

```console
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/$USER/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

git --version

// If git is not found, run the following
brew install git

python3 --version
pip3 --version

// If either python3 or pip3 are not found, run the following
brew install python3

brew install node
pip3 install pyinstaller
npm install -g yarn

git clone https://github.com/stake-house/wagyu-key-gen
cd wagyu-key-gen

yarn install
yarn buildcli

Start Wagyu Key Gen

Run the following commands in the repository directory:

To run diagnostics

To open dev tools when in Wagyu Key Gen use Ctrl + Shift + I

Bundling

We use electron-builder to create executable bundles for Wagyu Key Gen. Run the following to create a bundle:

Your assets will be in the dist/ folder.

Design

Current designs: https://www.figma.com/file/jcF78fVjndvM2hOPvifl0N/Wagyu-Key?node-id=1%3A4

Funding

If you would like to help us with funding this project, you can donate with our Gitcoin grant or you can send your funds directly to wagyutools.eth.

Support

Reach out to the EthStaker community:

License

GPL