> 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/stargaze/services-or-sync.md).

# Services | Sync

## Chain Explorer

* [Mainnet](https://mainnet.block-pro.net/stargaze)

## **Public Tools (Mainnet)**

{% tabs %}
{% tab title="RPC" %}
<https://stargaze-mainnet-rpc.block-pro.net/>
{% endtab %}

{% tab title="API" %}
<https://stargaze-mainnet-api.block-pro.net/>
{% endtab %}
{% endtabs %}

## Address Book - updated every 12 hours

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

## Genesis

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

## Peer

```
cb4b4a5b9876b7b36c52e299833c7e4f896499cd@stargaze-mainnet-peer.block-pro.net:60556
```

## Snapshot

```
wget -O stargaze_17363997.tar.lz4 https://snapshots.stargaze-apis.com/stargaze_17363997.tar.lz4 --inet4-only

sudo systemctl stop starsd

# backup if validator node
cp ~/.starsd/data/priv_validator_state.json  ~/.starsd/priv_validator_state.json

# reset
starsd tendermint unsafe-reset-all --home $HOME/.starsd --keep-addr-book

# delete old wasm 
rm -r ~/.starsd/wasm

# decompress the snapshot
lz4 -c -d stargaze_17363997.tar.lz4  | tar -x -C $HOME/.starsd

# restore state if applies
cp ~/.starsd/priv_validator_state.json  ~/.starsd/data/priv_validator_state.json
# start the node
sudo systemctl restart starsd && sudo journalctl -fu starsd -o cat
```
