# Commands

### Implicit accounts <a href="#implicit-accounts" id="implicit-accounts"></a>

**GENERATE A NEW KEY**

```
namada wallet key gen --hd-path default --alias wallet
```

**RECOVER AN EXISTING KEY FROM MNEMONIC**

```
namada wallet key restore --hd-path default --alias wallet
```

**LIST KEYS**

```
namada wallet key list

# list the implicit account address
namada wallet address find --alias wallet
```

### Established accounts <a href="#established-accounts" id="established-accounts"></a>

**INITIALIZE A NEW ACCOUNT**

```
// 
namada client init-account \
  --public-keys wallet \
  --signing-keys wallet \
  --threshold 1 \
  --alias account
```

### Service Management <a href="#service-management" id="service-management"></a>

**ENABLE SERVICE START ON BOOT**

```
// 
sudo systemctl enable namada.service
```

**DISABLE SERVICE START ON BOOT**

```
// 
sudo systemctl disable namada.service
```

**START SERVICE**

```
// 
sudo systemctl start namada.service
```

**STOP SERVICE**

```
// 
sudo systemctl stop namada.service
```

**RESTART SERVICE**

```
// 
sudo systemctl restart namada.service
```

**CHECK SERVICE STATUS**

```
// 
sudo systemctl status namada.service
```

**CHECK SERVICE LOGS**

```
//
sudo journalctl -u namada.service -f --no-hostname -o cat
```


---

# 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://docs.mewcrypto.com/testnet/namada/commands.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.
