> 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/mainnet/namada-docs/services-snapshot.md).

# Services  Snapshot

## RPC endpoint

```
http://namada.rpc.block-pro.net/
```

## Peer

```
68638e10230cac341449fb09426a2574fa37bc33@namada-mainnet-peer.block-pro.net:60956
```

## Genesis

```
https://files.block-pro.net/mainnet/namada/genesis.json
```

## Addrbook (updated every hour)

```
https://files.block-pro.net/mainnet/namada/addrbook.json
```

## Add peers automatically

```
PEERS=$(curl -sS http://namada.rpc.block-pro.net/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}' | paste -sd, -)

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

sudo systemctl restart namadad
```

## Snapshot (updated every 4 hours)

#### Install required dependencies

```
sudo apt-get install wget lz4 -y
```

#### Stop your node

```
sudo systemctl stop namadad
```

#### Back up your validator state

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

#### Delete previous db and cometbft data

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

#### Download db and data snapshots

```
wget -O db.lz4 https://files.block-pro.net/mainnet/namada/db.lz4
wget -O data.lz4 https://files.block-pro.net/mainnet/namada/data.lz4
```

#### Decompress db and data snapshots

```
lz4 -c -d db.lz4 | tar -xv -C $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420
lz4 -c -d data.lz4 | tar -xv -C $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft
```

#### Delete downloaded db and data snapshots

```
sudo rm -v db.lz4
sudo rm -v data.lz4
```

#### Restore your validator state

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

#### Start your node

```
sudo systemctl start namadad
```


---

# 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://service.block-pro.net/mainnet/namada-docs/services-snapshot.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.
