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