Useful commands
Service operations ⚙️
Check logs
sudo journalctl -u sided -fStart service
sudo systemctl start sidedStop service
sudo systemctl stop sidedRestart service
sudo systemctl restart sidedCheck service status
sudo systemctl status sidedReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable sidedDisable Service
sudo systemctl disable sidedSync info
sided status 2>&1 | jq .SyncInfoNode info
sided status 2>&1 | jq .NodeInfoYour node peer
echo $(sided tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.side/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')Key management
Add New Wallet
sided keys add $WALLETRestore executing wallet
sided keys add $WALLET --recoverList All Wallets
sided keys listDelete wallet
sided keys delete $WALLETCheck Balance
sided q bank balances $(sided keys show $WALLET -a)Export Key (save to wallet.backup)
sided keys export $WALLETView EVM Prived Key
sided keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
sided keys import $WALLET wallet.backupTokens
To valoper addressTo wallet addressAmount, uside
Withdraw all rewards
sided tx distribution withdraw-all-rewards --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000usideWithdraw rewards and commission from your validator
sided tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id side-testnet-3 --gas auto --fees 1000uside -yCheck your balance
sided query bank balances $WALLET_ADDRESSDelegate to Yourself
sided tx staking delegate $(sided keys show $WALLET --bech val -a) 1000000uside --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000uside -yDelegate
sided tx staking delegate <TO_VALOPER_ADDRESS> 1000000uside --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000uside -yRedelegate Stake to Another Validator
sided tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uside --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000uside -yUnbond
sided tx staking unbond $(sided keys show $WALLET --bech val -a) 1000000uside --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000uside -yTransfer Funds
sided tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uside --gas auto --fees 1000uside -yValidator operations
MonikerIdentityDetailsAmount, usideCommission rateCommission max rateCommission max change rate
Create New Validator
sided tx staking create-validator \
--amount 1000000uside \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(sided tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--chain-id side-testnet-3 \
--gas auto --fees 1000uside \
-yEdit Existing Validator
sided tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--from $WALLET \
--chain-id side-testnet-3 \
--gas auto --fees 1000uside \
-yValidator info
sided status 2>&1 | jq .ValidatorInfoValidator Details
sided q staking validator $(sided keys show $WALLET --bech val -a)Jailing info
sided q slashing signing-info $(sided tendermint show-validator)Slashing parameters
sided q slashing paramsUnjail validator
sided tx slashing unjail --from $WALLET --chain-id side-testnet-3 --gas auto --fees 1000uside -yActive Validators List
sided q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " 	 " + .description.moniker' | sort -gr | nlCheck Validator key
[[ $(sided q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(sided status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"Signing info
sided q slashing signing-info $(sided tendermint show-validator)Governance
TitleDescriptionDeposit, uside
Create New Text Proposal
sided  tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000uside \
--type Text \
--from $WALLET \
--gas auto --fees 1000uside \
-y Proposals List
sided query gov proposalsProposal IDProposal optionYesNoNo with vetoAbstain
View proposal
sided query gov proposal 1Vote
sided tx gov vote 1 yes --from $WALLET --chain-id side-testnet-3  --gas auto --fees 1000uside -yLast updated