📕Commands
📚Useful commands📚
⚙️Service
Info
ojod status 2>&1 | jq .NodeInfo
ojod status 2>&1 | jq .SyncInfo
ojod status 2>&1 | jq .ValidatorInfoCheck node logs
sudo journalctl -fu ojod -o catCheck service status
sudo systemctl status ojod Restart service
sudo systemctl restart ojod Stop service
sudo systemctl stop ojod Start service
sudo systemctl start ojod reload/disable/enable
sudo systemctl daemon-reload
sudo systemctl disable ojod
sudo systemctl enable ojod Your Peer
echo $(ojod tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.ojo/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')🥅Working with keys
New Key or Recover Key
ojod keys add Wallet_Name
OR
ojod keys add Wallet_Name --recoverCheck all keys
ojod keys listCheck Balance
ojod query bank balances address....jkl1yjgn7z09ua9vms259jDelete Key
ojod keys delete Wallet_NameExport Key
ojod keys export walletImport Key
ojod keys import wallet wallet.backup🚀Validator Management
Edit Validator
ojod tx staking edit-validator \
--new-moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security-contact "Your_Email" \
--chain-id ojo-devnet \
--commission-rate 0.05 \
--from Wallet_Name \
--gas 350000 -yYour Valoper-Address
ojod keys show Wallet_Name --bech valYour Valcons-Address
ojod tendermint show-addressYour Validator-Info
ojod query staking validator valoperaddress......Jail Info
ojod query slashing signing-info $(ojod tendermint show-validator)Unjail
ojod tx slashing unjail --from Wallet_name --chain-id ojo-devnet --gas 350000 -yActive Validators List
ojod q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nlInactive Validators List
ojod q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nlCheck that your key matches the validator (Win - Good. Lose - Bad)
VALOPER=Enter_Your_valoper_Here
[[ $(ojod q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(ojod status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"Withdraw all rewards from all validators
ojod tx distribution withdraw-all-rewards --from Wallet_Name --chain-id ojo-devnet --gas 350000 -yWithdraw and commission from your Validator
ojod tx distribution withdraw-rewards valoper1amxp0k0hg4edrxg85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet --commission -yDelegate tokens to your validator
ojod tx staking delegate Your_valpoer........ "100000000"uojo --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yDelegate tokens to different validator
ojod tx staking delegate valpoer........ "100000000"uojo urce --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yRedelegate tokens to another validator
ojod tx staking redelegate Your_valpoer........ valpoer........ "100000000"uojo --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yUnbond tokens from your validator or different validator
ojod tx staking unbond Your_valpoer........ "100000000"uojo --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -y
ojod tx staking unbond valpoer........ "100000000"uojo --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yTransfer tokens from wallet to wallet
ojod tx bank send Your_address............ address........... "1000000000000000000"uojo --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -y📝Governance
View all proposals
ojod query gov proposalsView specific proposal
ojod query gov proposal 1Vote yes
ojod tx gov vote 1 yes --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yVote no
ojod tx gov vote 1 no --from Wallet_Name --gas 350000 --fees "7000"uojo ource --chain-id=ojo-devnet -yVote abstain
ojod tx gov vote 1 abstain --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -yVote no_with_veto
ojod tx gov vote 1 no_with_veto --from Wallet_Name --gas 350000 --fees "7000"uojo --chain-id=ojo-devnet -y📡IBC transfer
for exapmle - Ojo -> Osmosis
ojod tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "100000"uojo --from Ojo_Wallet_Name ---gas 350000 --fees "70000"uojo --chain-id=ojo-devnet -yLast updated
Was this helpful?