# Lave Wallet Setup

Warning!

Make sure your node is fully synced before proceeding.

### Adding a Key (Wallet) to Node

Ensure you understand the implications of storing your private key in your chosen keyring.

1. Substitute $ACCOUNT\_NAME with your desired account name:

```bash
current_lavad_binary="$HOME/.lava/cosmovisor/current/bin/lavad"
ACCOUNT_NAME="name_here"
$current_lavad_binary keys add $ACCOUNT_NAME
```

Securely store your mnemonic in a safe location, as it cannot be retrieved once lost.

2. Verify and locate your account in the keys list:

```bash
$current_lavad_binary keys show $ACCOUNT_NAME
$current_lavad_binary keys list
```

Pencils out 📝 Your public address begins with lava\@.

### Restore a Wallet

1. Recover an existing account using your mnemonic:

```bash
lavad keys add $NEW_NAME --recover
```

After entering your seed phrase:

```bash
$current_lavad_binary keys show $ACCOUNT_NAME
```


---

# Agent Instructions: 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:

```
GET https://node.z4ch.xyz/nodes-+-providers/lava/lava-node-wallet.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
