Skip to content

Commit a969650

Browse files
authored
docs: recommend archive snapshot downloads (#388)
* docs: recommend archive snapshot downloads * Update src/pages/cli/download.mdx * Update src/pages/guide/node/rpc.mdx * Update src/pages/guide/node/installation.mdx
1 parent 0317f87 commit a969650

3 files changed

Lines changed: 12 additions & 24 deletions

File tree

src/pages/cli/download.mdx

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,20 @@ tempo download [flags]
2222
| `-u, --url <url>` | Download a specific snapshot URL |
2323
| `--list` | List available snapshots |
2424
| `--resumable` | Resume an interrupted download |
25-
| `--minimal` | Download minimal snapshot (pruned state, suitable for validators) |
26-
| `--archive` | Download full archive snapshot (suitable for RPC nodes) |
25+
| `--archive` | Download an archive snapshot. Recommended for partner validators and RPC nodes. |
2726

2827
## Examples
2928

30-
Download the latest archive snapshot (for RPC nodes):
29+
Download the latest recommended mainnet snapshot:
3130

3231
```bash
33-
tempo download --archive
32+
tempo download --chain mainnet --archive
3433
```
3534

36-
Download the latest minimal snapshot (for validators):
35+
Download the latest recommended testnet snapshot:
3736

3837
```bash
39-
tempo download --minimal
40-
```
41-
42-
Download a snapshot for a specific chain:
43-
44-
```bash
45-
tempo download --archive --chain moderato
38+
tempo download --chain moderato --archive
4639
```
4740

4841
List available snapshots:

src/pages/guide/node/installation.mdx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,14 @@ docker logs tempo
4949
Downloading a snapshot lets your node skip syncing from genesis and start participating much faster. This is recommended for both RPC nodes and validators.
5050

5151
::::code-group
52-
```bash [Minimal (validators)]
53-
tempo download --chain mainnet --minimal
54-
```
55-
```bash [Full (RPC / dApp backends)]
56-
tempo download --chain mainnet
57-
```
58-
```bash [Archive (indexers / RPC providers)]
52+
```bash [Mainnet]
5953
tempo download --chain mainnet --archive
6054
```
55+
```bash [Testnet]
56+
tempo download --chain moderato --archive
57+
```
6158
::::
6259

63-
For testnet, replace `mainnet` with `moderato`. See [snapshots.tempoxyz.dev](https://snapshots.tempoxyz.dev/) for detailed component sizes and download options.
64-
6560
## Verifying Releases
6661

6762
All release artifacts are cryptographically signed. We recommend verifying signatures before running any binary.

src/pages/guide/node/validator-setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,16 @@ Once the Tempo team adds your validator on-chain, it will enter the active set i
8383

8484
## Running the validator
8585

86-
The process for running a validator node is very similar to [running a full node](/guide/node/rpc).
86+
The process for running a validator node is very similar to [running a full node](/guide/node/rpc).
8787

8888
You should start by downloading the latest snapshot. Downloading the snapshot allows your validator to start participating in consensus much faster.
8989

9090
::::code-group
9191
```bash [Mainnet]
92-
tempo download --chain mainnet
92+
tempo download --chain mainnet --archive
9393
```
9494
```bash [Testnet]
95-
tempo download --chain moderato
95+
tempo download --chain moderato --archive
9696
```
9797
::::
9898

0 commit comments

Comments
 (0)