KiiChain
Explorer: https://coinsspor.com/kiichain/staking API: https://kiichain-testnet-api.coinsspor.com RPC: https://kiichain-testnet-rpc.coinsspor.com Auto Installer:https://cosmos-auto-install-script.coinsspor.com Valoper: kiivaloper1qwz5vh5xz8srjkt6a2snj8qvd8vw8s5suurlnm
🚀 Kiichain v2.0.0 Cosmovisor Upgrade Setup Commands
# 1. Create the Cosmovisor upgrade directory for v2.0.0
mkdir -p ~/.kiichain/cosmovisor/upgrades/v2.0.0/bin
# 2. Clean any previously cloned source
rm -rf ~/kiichain
# 3. Clone the Kiichain GitHub repository and checkout v2.0.0
cd ~
git clone https://github.com/KiiChain/kiichain.git
cd kiichain
git checkout v2.0.0
# 4. Build the v2.0.0 binary
make build
# 5. Copy the compiled binary to the upgrade directory
cp ./build/kiichaind ~/.kiichain/cosmovisor/upgrades/v2.0.0/bin/kiichaind
chmod +x ~/.kiichain/cosmovisor/upgrades/v2.0.0/bin/kiichaind
🚀Kiichain v3.0.0 – Cosmovisor Upgrade Setup Commands
mkdir -p ~/.kiichain/cosmovisor/upgrades/v3.0.0/bin
# 2. Remove any previously cloned source code (optional cleanup step)
rm -rf ~/kiichain
# 3. Clone the Kiichain GitHub repository and checkout the v3.0.0 release
cd ~
git clone https://github.com/KiiChain/kiichain.git
cd kiichain
git checkout v3.0.0
# 4. Build the v3.0.0 binary
make build
# 5. Copy the compiled binary into the appropriate Cosmovisor upgrade directory
cp ./build/kiichaind ~/.kiichain/cosmovisor/upgrades/v3.0.0/bin/kiichaind
chmod +x ~/.kiichain/cosmovisor/upgrades/v3.0.0/bin/kiichaind
Last updated