# Namada Housefire

<https://x.com/namada>\
<https://discord.gg/namada>

### Chain ID housefire-cotton.d3c912fee7462

## Public Endpoints

```
RPC: https://namada-housefire-rpc.validatorvn.com/
```

## Snapshots (Daily at 2AM UTC)

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

sudo cp $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/cometbft/data/priv_validator_state.json $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/cometbft/priv_validator_state.json.backup

sudo rm -rf $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/db
sudo rm -rf $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/cometbft/data

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

sudo cp $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/cometbft/priv_validator_state.json.backup $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/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/housefire-cotton.d3c912fee7462/cometbft/config/addrbook.json
```

## Live Peers

```
URL="https://namada-housefire-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/.zrchain/config/config.toml
```

### Seeds

```bash
SEEDS=tcp://44d83ff9667826aee0c68d6256898a0c23bb2d16@namada-housefire-rpc.validatorvn.com:47656

sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/" $HOME/.local/share/namada/housefire-cotton.d3c912fee7462/config.toml

```

### &#x20;<a href="#state-sync" id="state-sync"></a>


---

# 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-housefire.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.
