# Namada

### Chain ID namada.5f5de2dd1b88cba30586420

## Public Endpoints

```
RPC: https://namada-rpc.validatorvn.com/
Indexer: https://namada-indexer.validatorvn.com/
MASP Indexer: https://namada-masp-indexer.validatorvn.com/
```

### Namada Interface

```
https://namadillo.validatorvn.com/
```

## Snapshots (Daily at 2AM UTC)

```
sudo systemctl stop namadad #or equivalent to your service names

sudo cp $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/data/priv_validator_state.json $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/priv_validator_state.json.backup

sudo rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/db
sudo rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/data

curl -L https://snapshot.validatorvn.com/namada/data.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420

sudo cp $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/priv_validator_state.json.backup $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/data/priv_validator_state.json

sudo systemctl start namadad #or equivalent to your service names
```

## Addrbook files

```
curl -L https://snapshot.validatorvn.com/namada/addrbook.json > $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/config/addrbook.json
```

## Live Peers

```
URL="https://namada-rpc.validatorvn.com//net_info"

response=$(curl -s $URL)

PEERS=$(echo $response | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):" + (.node_info.listen_addr | capture("(?<ip>.+):(?<port>[0-9]+)$").port)' | paste -sd "," -)

echo "PEERS=\"$PEERS\""

sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/config.toml
```

### Seeds

```bash
SEEDS=tcp://a8c3e801917e8a5d02da4184b076c11f4da30a1e@14.243.91.37:16656

sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/" $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/config.toml
namada.5f5de2dd1b88cba30586420
```


---

# 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://services.validatorvn.com/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.
