🖥️Useful commands

Check light node wallet balance

celestia state balance --node.store ~/.celestia-light-mocha-4/

Get wallet address

cd $HOME/celestia-node
./cel-key list --node.type light --keyring-backend test  --p2p.network mocha

Restore an existing cel_key

KEY_NAME="my_celes_key"
cd ~/celestia-node
./cel-key add $KEY_NAME --keyring-backend test --node.type light  --recover --p2p.network mocha

Check light node status

celestia header sync-state --node.store ~/.celestia-light-mocha-4/

Get Node ID

celestia p2p info --node.store ~/.celestia-light-mocha-4/

(Optional) Add permissions for transferring keys to another server

chmod -R 700 ~/.celestia-light-mocha-4

Reset node

celestia light unsafe-reset-store --p2p.network mocha

Delete light node

sudo systemctl stop celestia-light
sudo systemctl disable celestia-light
sudo rm /etc/systemd/system/celestia-light*
rm -rf $HOME/celestia-node $HOME/.celestia-app $HOME/.celestia-light-mocha

Last updated