📕Commands

📚Useful commands📚

⚙️Service

Info

genesisd status 2>&1 | jq .NodeInfo
genesisd  status 2>&1 | jq .SyncInfo
genesisd status 2>&1 | jq .ValidatorInfo

Check node logs

sudo journalctl -fu genesisd -o cat

Check service status

sudo systemctl status genesisd 

Restart service

sudo systemctl restart genesisd 

Stop service

sudo systemctl stop genesisd 

Start service

sudo systemctl start genesisd  

reload/disable/enable

sudo systemctl daemon-reload
sudo systemctl disable genesisd 
sudo systemctl enable genesisd 

Your Peer

echo $(genesisd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.genesis/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')

🥅Working with keys

New Key or Recover Key

genesisd keys add Wallet_Name
      OR
genesisd keys add Wallet_Name --recover

Check all keys

genesisd keys list

Check Balance

genesisd query bank balances addressjkl1yjgn7z09ua9vms259j

Delete Key

genesisd keys delete Wallet_Name

Export Key

genesisd keys export wallet

Import Key

genesisd keys import wallet wallet.backup

🚀Validator Management

Edit Validator

genesisd tx staking edit-validator \
--new-moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security-contact "Your_Email" \
--chain-id genesis_29-2 \
--commission-rate 0.05 \
--from Wallet_Name \
--gas 350000 -y

Your Valoper-Address

genesisd keys show Wallet_Name --bech val

Your Valcons-Address

genesisd tendermint show-address

Your Validator-Info

genesisd query staking validator valoperaddress......

Jail Info

genesisd query slashing signing-info $(genesisd tendermint show-validator)

Unjail

genesisd tx slashing unjail --from Wallet_name --chain-id genesis_29-2 --gas 350000 -y

Active Validators List

genesisd 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 | nl

Inactive Validators List

genesisd 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 | nl

Check that your key matches the validator (Win - Good. Lose - )

VALOPER=Enter_Your_valoper_Here
[[ $(genesisd q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(genesisd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"

Withdraw all rewards from all validators

genesisd tx distribution withdraw-all-rewards --from Wallet_Name --chain-id genesis_29-2 --gas 350000 -y

Withdraw and commission from your Validator

genesisd tx distribution withdraw-rewards valoper1amx.......g85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --chain-id=genesis_29-2 --commission -y

Delegate tokens to your validator

genesisd tx staking delegate Your_valpoer........ "100000000"el1 --from Wallet_Name --gas 350000 --chain-id=genesis_29-2 -y

Delegate tokens to different validator

genesisd tx staking delegate valpoer........ "100000000"el1 --from Wallet_Name --gas 350000 --chain-id=genesis_29-2 -y

Redelegate tokens to another validator

genesisd tx staking redelegate Your_valpoer........ valpoer........ "100000000"el1 --from Wallet_Name --gas 350000  --chain-id=genesis_29-2 -y

Unbond tokens from your validator or different validator

genesisd tx staking unbond Your_valpoer........ "100000000"el1 --from Wallet_Name --gas 350000 --chain-id=genesis_29-2 -y
genesisd tx staking unbond valpoer........ "100000000"el1 --from Wallet_Name --gas 350000 --chain-id=genesis_29-2 -y

Transfer tokens from wallet to wallet

genesisd tx bank send Your_address............ address........... "1000000000000000000"el1 --gas 350000 --chain-id=genesis_29-2 -y

📝Governance

View all proposals

genesisd query gov proposals

View specific proposal

genesisd query gov proposal 1

Vote yes

genesisd tx gov vote 1 yes --from Wallet_Name --gas 350000  --chain-id=genesis_29-2 -y

Vote no

genesisd tx gov vote 1 no --from Wallet_Name --gas 350000  --chain-id=genesis_29-2 -y

Vote abstain

genesisd tx gov vote 1 abstain --from Wallet_Name --gas 350000  --chain-id=genesis_29-2 -y

Vote no_with_veto

genesisd tx gov vote 1 no_with_veto --from Wallet_Name --gas 350000  --chain-id=genesis_29-2 -y

📡IBC transfer

  • for exapmle - GenesisL1 -> Osmosis

genesisd tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "100000"el1 --from Your_GenesisL1_Wallet_Name ---gas 350000 --fees "7000"el1 --chain-id=genesis_29-2 -y

Last updated