sudo journalctl -f -u initiad
sudo systemnctl start initiad
sudo systemnctl restart initiad
initiad tx distribution withdraw-all-rewards --from $WALLET --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount>
Withdraw rewards and commission from your validator
initiad tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount> -y
initiad query bank balances $WALLET
Delegate to the validator itself
initiad tx mstaking delegate $(initiad keys show $WALLET --bech val -a) <amount> --from $WALLET --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount> -y
Redelegate to other validators
initiad tx mstaking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> <amount> --from $WALLET --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount> -y
initiad tx mstaking unbond $(initiad keys show $WALLET --bech val -a) <amount> --from $WALLET --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount> -y
initiad tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> <amount> --gas auto --gas-adjustment 1.5 --fees <amount> -y
initiad keys add $WALLET --recover
Check All Available Wallet
initiad q bank balances $WALLET_ADDRESS
initiad tx mstaking create-validator \--amount <amount> \--from $WALLET \--commission-rate 0.1 \--commission-max-rate 0.2 \--commission-max-change-rate 0.01 \--security-contact ""\--pubkey $(initiad tendermint show-validator) \--moniker $MONIKER \--identity "" \--details "a validator blockchain" \--chain-id initiation-1 \--gas auto \--gas-adjustment 1.5 \--fees <amount>
initiad tx mstaking edit-validator \--commission-rate 0.1 \--new-moniker $MONIKER \--identity "" \--details "a validator blockchain" \--from $WALLET \--chain-id initiation-1 \--gas auto \--gas-adjustment 1.5 \--fees <amount> \-y
initiad tx slashing unjail --from $WALLET --chain-id initiation-1 --gas auto --gas-adjustment 1.5 --fees <amount> -y