Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/pages/cli/download.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ tempo download [flags]
| `-u, --url <url>` | Download a specific snapshot URL |
| `--list` | List available snapshots |
| `--resumable` | Resume an interrupted download |
| `--minimal` | Download minimal snapshot (pruned state, suitable for validators) |
| `--archive` | Download full archive snapshot (suitable for RPC nodes) |

## Examples
Expand All @@ -33,12 +32,6 @@ Download the latest archive snapshot (for RPC nodes):
tempo download --archive
```

Download the latest minimal snapshot (for validators):

```bash
tempo download --minimal
```

Download a snapshot for a specific chain:

```bash
Expand Down
5 changes: 1 addition & 4 deletions src/pages/guide/node/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ docker logs tempo
Downloading a snapshot lets your node skip syncing from genesis and start participating much faster. This is recommended for both RPC nodes and validators.

::::code-group
```bash [Minimal (validators)]
tempo download --chain mainnet --minimal
```
```bash [Full (RPC / dApp backends)]
tempo download --chain mainnet
```
Expand All @@ -60,7 +57,7 @@ tempo download --chain mainnet --archive
```
::::

For testnet, replace `mainnet` with `moderato`. See [snapshots.tempoxyz.dev](https://snapshots.tempoxyz.dev/) for detailed component sizes and download options.
For testnet, replace `mainnet` with `moderato`.

## Verifying Releases

Expand Down
Loading