Node CLI Cheatsheet

  • Network Type: Testnet
  • Chain-id: kiichain
  • Current Node version: v2.0.0
  • CLI Cheatsheet

    • Always be careful with the capitalized words
    • Specify --chain-id

    Wallet Management

    Add Wallet Specify the value <wallet> with your own wallet name

    kiichaind keys add wallet

    Recover Wallet

    kiichaind keys add wallet --recover

    List Wallet

    kiichaind keys list

    Delete Wallet

    kiichaind keys delete wallet

    Check Wallet Balance

    kiichaind q bank balances $(kiichaind keys show wallet -a)

    Validator Management

    Please adjust <wallet> , MONIKER , YOUR_KEYBASE_ID , YOUR_DETAILS , YOUUR_WEBSITE_URL

    Create Validator (Staking)

    kiichaind tx staking create-validator \
    --amount=1000000ukii \
    --pubkey=$(kiichaind tendermint show-validator) \
    --moniker="MONIKER" \
    --identity="KEYBASE_ID" \
    --website="" \
    --details="" \
    --chain-id=kiichain3 \
    --commission-rate=0.05 \
    --commission-max-rate=0.25 \
    --commission-max-change-rate=0.05 \
    --min-self-delegation=1 \
    --gas="auto" \
    --gas-adjustment 1.3 \
    --gas-prices="0.02ukii" \
    --from=wallet

    Edit Validator

    kiichaind tx staking edit-validator \
    --new-moniker="" \
    --identity="" \
    --details="" \
    --website="" \
    --chain-id=kiichain3 \
    --gas="auto" \
    --gas-adjustment 1.3 \
    --gas-prices="0.02ukii" \
    --from=wallet

    Unjail Validator

    kiichaind tx slashing unjail --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Check Jailed Reason

    kiichaind query slashing signing-info $(kiichaind tendermint show-validator)

    Token Management

    Withdraw Rewards

    kiichaind tx distribution withdraw-all-rewards --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Withdraw Rewards with Comission

    kiichaind tx distribution withdraw-rewards $(kiichaind keys show wallet --bech val -a) --commission --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Delegate Token to your own validator

    kiichaind tx staking delegate $(kiichaind keys show wallet --bech val -a) 1000000ukii --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Delegate Token to other validator

    kiichaind tx staking redelegate $(kiichaind keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000ukii --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Unbond Token from your validator

    kiichaind tx staking unbond $(kiichaind keys show wallet --bech val -a) 1000000ukii --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Send Token to another wallet

    kiichaind tx bank send wallet <TO_WALLET_ADDRESS> 1000000ukii --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Governance

    Vote You can change the value of yes to no,abstain,nowithveto

    kiichaind tx gov vote 1 yes --from wallet --chain-id kiichain3 --gas auto --gas-adjustment 1.3 --gas-prices=0.02ukii

    Other

    Set Your own Custom Ports You can change value CUSTOM_PORT=44 To any other ports

    PORT=19
    kiichaind config node tcp://localhost:${PORT}657
    sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${PORT}658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${PORT}657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${PORT}060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${PORT}656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${PORT}660\"%" $HOME/.kiichain3/config/config.toml
    sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${PORT}317\"%; s%^address = \":8080\"%address = \":${PORT}080\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${PORT}090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${PORT}091\"%" $HOME/.kiichain3/config/app.toml

    Enable Indexing usually enabled by default

    sed -i 's|^indexer *=.*|indexer = "kv"|' $HOME/.kiichain3/config/config.toml

    Disable Indexing

    sed -i 's|^indexer *=.*|indexer = "null"|' $HOME/.kiichain3/config/config.toml

    Reset Chain Data

    kiichaind tendermint unsafe-reset-all --home $HOME/.kiichain3

    Delete Node

    WARNING! Use this command wisely Backup your key first it will remove Defund from your system

    sudo systemctl stop kiichaind
    sudo systemctl disable kiichaind
    sudo rm /etc/systemd/system/kiichaind.service
    sudo systemctl daemon-reload
    rm -rf $(which kiichaind)
    rm -rf .kiichain3
    rm -rf kiichain