> For the complete documentation index, see [llms.txt](https://service.block-pro.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://service.block-pro.net/testnet/celestia/light-node/useful-commands.md).

# 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
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://service.block-pro.net/testnet/celestia/light-node/useful-commands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
