中文 / English
xhash-auto-staking-client is a fast staking program developed by XHash for eth2.0 staking on XHash(https://www.xhash.com). It is modified based on the Wagyu Key Gen which is the validators generator recommended by Ethereum.
Through this program, users can generate the validators, complete the deposit, upload the keystore file to XHash in one stop.
Document for use.
xhash-auto-staking-client support the wallet which support WalletConnect.Here's what we tested.
wallet |
---|
MateMask |
imToken |
Rainbow |
Argent |
Pillar |
Omni |
TokenPocket |
BitPay |
MathWallet |
Ellipal |
Prior to running xhash-auto-staking-client a few dependencies need to be installed.
- Download and install Node.js and npm from https://nodejs.org/en/download/ (Use LTS version and 64-bit .msi Installer).
- At the screen named Tools for Native Modules, make sure to check the option named Automatically install the necessary tools.. It will install chocolatey, Python 3 and VS build tools. Follow the instructions until the end.
- Open a command prompt window as admin (Press
⊞ Win
+R
, typecmd
, holdCtrl
+Shift
and press↵ Enter
)- Execute this command to install git. Follow the instructions on screen.
choco install git.install
- Open a normal command prompt window (Press
⊞ Win
+R
, typecmd
and press↵ Enter
).- Execute those commands to upgrade pip, install pyinstaller, Cython, install yarn, clone the repository and install the required packages.
python -m pip install --upgrade --user pip
python -m pip install --user pyinstaller
python -m pip install --user Cython
set PATH=%APPDATA%\python\Python310\Scripts;%PATH%
npm install -g yarn
git clone https://github.com/stake-house/wagyu-key-gen
cd wagyu-key-gen
yarn install
yarn buildcliwin
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
Run the following commands in the repository directory:
yarn build
yarn build:watch
(will reload build on changes)- In order to get them to show in the app press
ctrl+r
orcmd+r
once the app is started.
yarn start
To open dev tools when in XHash Staking Cli use Ctrl
+ Shift
+ I
We use electron-builder to create executable bundles for XHash Staking Cli. Run the following to create a bundle:
yarn run build
yarn run buildcli
(oryarn run buildcliwin
on Windows)yarn run dist
Your assets will be in the dist/
folder.