Join our telegram Visit our website
Deploy your VPS using our referral link to get 20€ bonus
Deploy your VPS using our referral link to get 100$ free bonus for 60 days
Deploy your VPS using our referral link to get 100$ free bonus
Here you have to put name of your moniker (validator) that will be visible in explorer
NODENAME=<YOUR_MONIKER_NAME_GOES_HERE>
Save and import variables into system
echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
echo "export WALLET=wallet" >> $HOME/.bash_profile
echo "export CHAIN_ID=quicksilver-1" >> $HOME/.bash_profile
source $HOME/.bash_profile
sudo apt update && sudo apt upgrade -y
sudo apt-get install make build-essential gcc git jq chrony -y
ver="1.18.2"
cd $HOME
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
git clone https://github.com/ingenuity-build/quicksilver && cd quicksilver
git fetch origin --tags
git checkout v1.0.0
make install
quicksilverd config chain-id $CHAIN_ID
quicksilverd config keyring-backend test
quicksilverd init $NODENAME --chain-id $CHAIN_ID
Option 1 - generate new wallet
quicksilverd keys add $WALLET
Option 2 - recover existing wallet
quicksilverd keys add $WALLET --recover
WALLET_ADDRESS=$(quicksilverd keys show $WALLET -a)
quicksilverd add-genesis-account $WALLET_ADDRESS 51000000uqck
quicksilverd gentx $WALLET 50000000uqck \
--chain-id $CHAIN_ID \
--moniker=$NODENAME \
--commission-max-change-rate=0.01 \
--commission-max-rate=0.20 \
--commission-rate=0.05 \
--identity=1C5ACD2EEF363C3A \
--website="http://kjnodes.com" \
--details="Providing professional staking services with high performance and availability"
12 word mnemonic
of your generated wallet- contents of
$HOME/.quicksilver/config/*
- Copy the contents of ${HOME}/.quicksilverd/config/gentx/gentx-XXXXXXXX.json.
- Fork https://github.com/ingenuity-build/mainnet
- Create a file <VALIDATOR_NAME>.json under the
gentxs
folder in the forked repo, paste the copied text into the file. - Create a Pull Request to the main branch of the repository