#check logs
sudo journalctl -u selfchaind -f
#start service
sudo systemctl start selfchaind
#stop service
sudo systemctl stop selfchaind
#restart service
sudo systemctl restart selfchaind
#service status
sudo systemctl status selfchaind
#enable service
sudo systemctl enable selfchaind
#disable service
sudo systemctl disable selfchaind
#reload all service files
sudo systemctl daemon-reload
#get node info
selfchaind status 2>&1 | jq -r
#get node id
selfchaind tendermint show-node-id
#add new wallet
selfchaind keys add <wallet-name>
#restore existing wallet
selfchaind keys add <wallet-name> --recover
#delete wallet
selfchaind keys delete <wallet-name>
#list all wallets
selfchaind keys list
#check balance
selfchaind q bank balances <wallet-address>
#withdraw all rewards
selfchaind tx distribution withdraw-all-rewards --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#withdraw rewards from specific validator
selfchaind tx distribution withdraw-rewards <validator-valoper-address> --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#delegate
selfchaind tx staking delegate <validator-valoper-address> ${10**network.other.denom_exponent}uslf --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#redelegate
selfchaind tx staking redelegate <from-validator-valoper-address> <to-validator-valoper-address> ${10**network.other.denom_exponent}uslf --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#unbond
selfchaind tx staking unbond <validator-valoper-address> ${10**network.other.denom_exponent}uslf --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#transfer
selfchaind tx bank send <wallet-name> <wallet-address> ${10**network.other.denom_exponent}uslf --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#vote "yes"
selfchaind tx gov vote <proposal-id> yes --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#vote "no"
selfchaind tx gov vote <proposal-id> no --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#vote "no with veto"
selfchaind tx gov vote <proposal-id> no_with_veto --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#vote "abstain"
selfchaind tx gov vote <proposal-id> abstain --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y
#view all proposals
selfchaind query gov proposals
#view proposal by ID
selfchaind query gov proposal <proposal-id>
#create validator
selfchaind tx staking create-validator \
--amount 1000000uslf \
--moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--pubkey $(selfchaind tendermint show-validator) \
--commission-rate 0.05 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--chain-id self-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 0.025uslf \
--node "https://rpc.selfchain.mainnet.dteam.tech:443" \
-y
#edit validator
selfchaind tx staking edit-validator \
--new-moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--commission-rate 0.05 \
--chain-id self-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 0.025uslf \
--node "https://rpc.selfchain.mainnet.dteam.tech:443" \
-y
#unjail validator
selfchaind tx slashing unjail --from <wallet-name> --chain-id self-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025uslf --node "https://rpc.selfchain.mainnet.dteam.tech:443" -y