Service operations ⚙️
Check logs
sudo journalctl -u celestia-appd -fo cat
Start service
sudo systemctl start celestia-appd
Stop service
sudo systemctl stop celestia-appd
Restart service
sudo systemctl restart celestia-appd
Check service status
sudo systemctl status celestia-appd
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable celestia-appd
Disable Service
sudo systemctl disable celestia-appd
Node info
celestia-appd status 2>&1 | jq
Your node 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/".*//')
Key management
Add New Wallet
celestia-appd keys add $WALLET
Restore executing wallet
celestia-appd keys add $WALLET --recover
List All Wallets
celestia-appd keys list
Delete wallet
celestia-appd keys delete $WALLET
Check Balance
celestia-appd q bank balances $WALLET_ADDRESS
Export Key (save to wallet.backup)
celestia-appd keys export $WALLET
View EVM Prived Key
celestia-appd keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
celestia-appd keys import $WALLET wallet.backup
Tokens
To valoper address
To wallet address
Amount, utia
Withdraw all rewards
celestia-appd tx distribution withdraw-all-rewards --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia
Withdraw rewards and commission from your validator
celestia-appd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Check your balance
celestia-appd query bank balances $WALLET_ADDRESS
Delegate to Yourself
celestia-appd tx staking delegate $(celestia-appd keys show $WALLET --bech val -a) 1000000utia --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Delegate
celestia-appd tx staking delegate <TO_VALOPER_ADDRESS> 1000000utia --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Redelegate Stake to Another Validator
celestia-appd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000utia --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Unbond
celestia-appd tx staking unbond $(celestia-appd keys show $WALLET --bech val -a) 1000000utia --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Transfer Funds
celestia-appd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000utia --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Validator operations
Moniker
Identity
Details
Amount, utia
Commission rate
Commission max rate
Commission max change rate
Create New Validator
celestia-appd tx staking create-validator \
--amount 1000000utia \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(celestia-appd tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--chain-id mocha-4 \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
-y
Edit Existing Validator
celestia-appd tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--from $WALLET \
--chain-id mocha-4 \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
-y
Validator info
celestia-appd status 2>&1 | jq
Validator Details
celestia-appd q staking validator $(celestia-appd keys show $WALLET --bech val -a)
Jailing info
celestia-appd q slashing signing-info $(celestia-appd tendermint show-validator)
Slashing parameters
celestia-appd q slashing params
Unjail validator
celestia-appd tx slashing unjail --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y
Active Validators List
celestia-appd q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nl
Check Validator key
[[ $(celestia-appd q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(celestia-appd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"
Signing info
celestia-appd q slashing signing-info $(celestia-appd tendermint show-validator)
Governance
Title
Description
Deposit, utia
Create New Text Proposal
celestia-appd tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000utia \
--type Text \
--from $WALLET \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
-y
Proposals List
celestia-appd query gov proposals
Proposal ID
Proposal option
View proposal
celestia-appd query gov proposal 1
Vote
celestia-appd tx gov vote 1 yes --from $WALLET --chain-id mocha-4 --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia -y