> ## Documentation Index
> Fetch the complete documentation index at: https://sidiorresearchlabs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Snapshots archives

# Snapshots & Archive Nodes

Quickly sync your node with HyperPaxeer using a snapshot or serve queries for prev versions using archive nodes

## List of Snapshots and Archives

Below is a list of publicly available snapshots that you can use to sync with the HyperPaxeer mainnet and
archived [9001-1 mainnet](https://github.com/Paxeer-Network/mainnet/tree/main/Paxeer-Network_9001-1):

### Snapshots

\| Name            | URL                                                                                                                                                                                                                                                                                              |
\| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --- |
\| `Staketab`      | [github.com/staketab/nginx-cosmos-snap](https://github.com/staketab/nginx-cosmos-snap/blob/main/docs/Paxeer-Network.md)                                                                                                                                                                                   |
\| `Polkachu`      | [polkachu.com](https://www.polkachu.com/tendermint_snapshots/Paxeer-Network)                                                                                                                                                                                                                              |     |
\| `Notional`      | [mainnet/pruned/Paxeer-Network\_9001-2(pebbledb)](https://snapshot.notional.ventures/Paxeer-Network/) <br /> [mainnet/archive/Paxeer-Network\_9001-2(pebbledb)](https://snapshot.notional.ventures/Paxeer-Network-archive/) <br /> [testnet/archive/hyperpax\_125-4(pebbledb)](https://snapshot.notional.ventures/Paxeer-Network-testnet-archive/) |
\| `GalaxyStaking` | [galaxystaking.space](https://tools.galaxystaking.space/Paxeer-Network/)                                                                                                                                                                                                                                  |
\| `Allnodes` | [publicnode.com/snapshots](https://www.publicnode.com/snapshots#HyperPaxeer)                                                                                                                                                                                                                                  |

### Archives

| Name             | URL                                                                                      |
| ---------------- | ---------------------------------------------------------------------------------------- |
| `Windpowerstake` | [mainnet/archive/Paxeer-Network\_9001-2(goleveldb)](http://backup03.windpowerstake.com/) |

### HyperPaxeer Core Team Snapshots

Altiplanic (HyperPaxeer Core team) provides pruned and archive snapshots. They can be downloaded using the BackBlaze CLI tool:

* Steps for pruned snapshots (goleveldb)

1. Install the [B2 command-line tool](https://www.backblaze.com/docs/cloud-storage-command-line-tools)
2. Authenticate using the following command:

```bash theme={null}
b2 authorize-account 004d09b92c841240000000007 K004+SV4bZKkBuwjdwnjtFidMdISWf4
```

1. Download the data using the following command:

```bash theme={null}
b2 sync b2://Paxeer-Network-pruned-mainnet-snapshot <destination_path>
```

* Steps for archive snapshots (PebbleDB)

1. Install the [B2 command-line tool](https://www.backblaze.com/docs/cloud-storage-command-line-tools)
2. Authenticate using the following command:

```bash theme={null}
b2 authorize-account 004d09b92c841240000000006 K0048Rp2re6yLYzsTCKzrMYZmoWOgEM
```

1. Download the data using the following command:

```bash theme={null}
b2 sync b2://Paxeer-Network-archive-mainnet-snapshot <destination_path>
```

### PebbleDB

To use PebbleDB instead of GoLevelDB when using snapshots from Notional:

The build instructinos are in the [alternative dbs](/protocol/Paxeer-Network-cli/alternative-dbs) section.

Download snapshot:

```bash theme={null}
cd $HOME/.hyperpaxd/
URL_SNAPSHOT="https://snapshot.notional.ventures/Paxeer-Network/data_20221024_193254.tar.gz"
wget -O - "$URL_SNAPSHOT" |tar -xzf -
```

Start:

Set `db_backend = "pebbledb"` in `config.toml` or start with `--db_backend=pebbledb`

```bash theme={null}
hyperpaxd start --db_backend=pebbledb
```

**Note**: use this [workaround](https://github.com/notional-labs/cosmosia/blob/main/docs/pebbledb.md) when upgrading a node running PebbleDB.
