sudo apt update
sudo apt install build-essential jq wget git -y
wget https://go.dev/dl/go1.19.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.19.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
git clone https://github.com/BounceBit-Labs/node.git
cd node
bbcored init <your_moniker> --chain-id bouncebit_6000-1
wget -O $HOME/.bouncebit/config/genesis.json https://raw.githubusercontent.com/BounceBit-Labs/node/main/network_files/genesis.json
sed -i 's/minimum-gas-prices = ""/minimum-gas-prices = "10000000000bit"/g' $HOME/.bouncebit/config/app.toml
bbcored tx staking create-validator \
--amount=1000000000000000000bit \
--pubkey=$(bbcored tendermint show-validator) \
--moniker="<your_moniker>" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1000000" \
--gas="auto" \
--gas-prices="10000000000bit" \
--from=<your_wallet_name>