📕Commands
📚Useful commands📚
⚙️Service
Info
celestia-appd status 2>&1 | jq .NodeInfo
celestia-appd status 2>&1 | jq .SyncInfo
celestia-appd status 2>&1 | jq .ValidatorInfoCheck node logs
sudo journalctl -fu celestia-appd -o catCheck service status
sudo systemctl status celestia-appd Restart service
sudo systemctl restart celestia-appd Stop service
sudo systemctl stop celestia-appd Start service
sudo systemctl start celestia-appd reload/disable/enable
sudo systemctl daemon-reload
sudo systemctl disable celestia-appd
sudo systemctl enable celestia-appd Your Peer
echo $(celestia-appd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.celestia-app/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')🥅Working with keys
New Key or Recover Key
celestia-appd keys add Wallet_Name
OR
celestia-appd keys add Wallet_Name --recoverCheck all keys
celestia-appd keys listCheck Balance
celestia-appd query bank balances addressjkl1yjgn7z09ua9vms259jDelete Key
celestia-appd keys delete Wallet_NameExport Key
celestia-appd keys export walletImport Key
celestia-appd keys import wallet wallet.backup🚀Validator Management
Edit Validator
celestia-appd tx staking edit-validator \
--new-moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security-contact "Your_Email" \
--chain-id celestia \
--commission-rate 0.05 \
--from Wallet_Name \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -yYour Valoper-Address
celestia-appd keys show Wallet_Name --bech valYour Valcons-Address
celestia-appd tendermint show-addressYour Validator-Info
celestia-appd query staking validator valoperaddress......Jail Info
celestia-appd query slashing signing-info $(celestia-appd tendermint show-validator)Unjail
celestia-appd tx slashing unjail --from Wallet_name --chain-id celestia --gas 350000 -yActive Validators List
celestia-appd 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
celestia-appd 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 - )
VALOPER=Enter_Your_valoper_Here
[[ $(celestia-appd q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(celestia-appd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"Withdraw all rewards from all validators
celestia-appd tx distribution withdraw-all-rewards --from Wallet_Name --chain-id celestia --gas 350000 -yWithdraw and commission from your Validator
celestia-appd tx distribution withdraw-rewards valoper1amx.......g85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --chain-id=celestia --commission -yDelegate tokens to your validator
celestia-appd tx staking delegate Your_valpoer........ "100000000"utia --from Wallet_Name --gas 350000 --chain-id=celestia -yDelegate tokens to different validator
celestia-appd tx staking delegate valpoer........ "100000000"utia --from Wallet_Name --gas 350000 --chain-id=celestia -yRedelegate tokens to another validator
celestia-appd tx staking redelegate Your_valpoer........ valpoer........ "100000000"utia --from Wallet_Name --gas 350000 --chain-id=celestia -yUnbond tokens from your validator or different validator
celestia-appd tx staking unbond Your_valpoer........ "100000000"utia --from Wallet_Name --gas 350000 --chain-id=celestia -y
celestia-appd tx staking unbond valpoer........ "100000000"utia --from Wallet_Name --gas 350000 --chain-id=celestia -yTransfer tokens from wallet to wallet
celestia-appd tx bank send Your_address............ address........... "1000000000000000000"utia --gas 350000 --chain-id=celestia -y📝Governance
View all proposals
celestia-appd query gov proposalsView specific proposal
celestia-appd query gov proposal 1Vote yes
celestia-appd tx gov vote 1 yes --from Wallet_Name --gas 350000 --chain-id=celestia -yVote no
celestia-appd tx gov vote 1 no --from Wallet_Name --gas 350000 --chain-id=celestia -yVote abstain
celestia-appd tx gov vote 1 abstain --from Wallet_Name --gas 350000 --chain-id=celestia -yVote no_with_veto
celestia-appd tx gov vote 1 no_with_veto --from Wallet_Name --gas 350000 --chain-id=celestia -y📡IBC transfer
for exapmle - Celestia -> Osmosis
celestia-appd tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "100000"utia --from Celestia_Wallet_Name ---gas 350000 --chain-id=celestia -yLast updated
Was this helpful?