> For the complete documentation index, see [llms.txt](https://docs.validator247.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.validator247.com/testnet/namada.md).

# Namada

Install a quick installation:

```
wget -q -O namada.sh https://api.nodes.guru/namada.sh && chmod +x namada.sh && sudo /bin/bash namada.sh
```

next step:

```
source $HOME/.bash_profile
```

Create a user account:

```
namada wallet address gen --alias my-account
```

Find Wallet

```
namada wallet address find --alias my-account
```

Faucet token

> <https://faucet.heliax.click/>

Check balance, if everything is okay go to the next step:

```
namada client balance --token NAM --owner my-account
```

Initialising a validator account::

```
namada client init-validator \
--alias $VALIDATOR_ALIAS \
--email $EMAIL \
--account-keys my-account \
--signing-keys my-account \
--commission-rate 0.1 \
--max-commission-rate-change 0.1
```

Bond token to your validator:

```
namada client bond \
--validator $VALIDATOR_ALIAS \
--amount 999 \
--source my-account
```

Check logs:

```
journalctl -u namadad -f -o cat
```

Restart node:

```
systemctl restart namadad
```

Check Syn

```
curl -s localhost:26657/status | jq .result.sync_info.catching_up
```

Remove node:

```
systemctl stop namadad
systemctl disable namadad
rm -rf ~/namada ~/.local/share/namada /etc/systemd/system/namadad.service
```


---

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

```
GET https://docs.validator247.com/testnet/namada.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.
