From d712035a9e386cfd138bcf5b1371d0ccb278c761 Mon Sep 17 00:00:00 2001 From: Centaur AI Date: Wed, 6 May 2026 11:25:14 +0000 Subject: [PATCH 1/4] docs: remove snapshots.tempoxyz.dev link from installation guide Amp-Thread-ID: https://ampcode.com/threads/T-019dfd08-9757-749f-8da5-da7052bfb83a --- src/pages/guide/node/installation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/guide/node/installation.mdx b/src/pages/guide/node/installation.mdx index bbe84e93..1e240048 100644 --- a/src/pages/guide/node/installation.mdx +++ b/src/pages/guide/node/installation.mdx @@ -60,7 +60,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 From 4e2e4c71ac691c2c44248f34a5a4c527a42c7276 Mon Sep 17 00:00:00 2001 From: Centaur AI Date: Wed, 6 May 2026 11:26:38 +0000 Subject: [PATCH 2/4] docs: simplify snapshot download to just tempo download --chain MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove minimal/archive snapshot options from docs — not ready for partner use yet. All snapshot references now use the single command: tempo download --chain Amp-Thread-ID: https://ampcode.com/threads/T-019dfd08-9757-749f-8da5-da7052bfb83a --- src/pages/cli/download.mdx | 24 +++++------------------- src/pages/guide/node/installation.mdx | 14 ++------------ src/pages/guide/node/rpc.mdx | 2 +- 3 files changed, 8 insertions(+), 32 deletions(-) diff --git a/src/pages/cli/download.mdx b/src/pages/cli/download.mdx index ef0bc727..9aa2de21 100644 --- a/src/pages/cli/download.mdx +++ b/src/pages/cli/download.mdx @@ -22,27 +22,19 @@ tempo download [flags] | `-u, --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 -Download the latest archive snapshot (for RPC nodes): +Download a snapshot: ```bash -tempo download --archive +tempo download --chain mainnet ``` -Download the latest minimal snapshot (for validators): +Download a snapshot for testnet: ```bash -tempo download --minimal -``` - -Download a snapshot for a specific chain: - -```bash -tempo download --archive --chain moderato +tempo download --chain moderato ``` List available snapshots: @@ -51,16 +43,10 @@ List available snapshots: tempo download --list ``` -List available snapshots for a specific chain: - -```bash -tempo download --list --chain moderato -``` - Resume an interrupted download: ```bash -tempo download --archive --resumable +tempo download --chain mainnet --resumable ``` Then start your node with [`tempo node`](/cli/node). diff --git a/src/pages/guide/node/installation.mdx b/src/pages/guide/node/installation.mdx index 1e240048..01bbf6c1 100644 --- a/src/pages/guide/node/installation.mdx +++ b/src/pages/guide/node/installation.mdx @@ -48,19 +48,9 @@ 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 -``` -```bash [Archive (indexers / RPC providers)] -tempo download --chain mainnet --archive +```bash +tempo download --chain ``` -:::: - -For testnet, replace `mainnet` with `moderato`. ## Verifying Releases diff --git a/src/pages/guide/node/rpc.mdx b/src/pages/guide/node/rpc.mdx index 95c6e1c1..5e56ac41 100644 --- a/src/pages/guide/node/rpc.mdx +++ b/src/pages/guide/node/rpc.mdx @@ -12,7 +12,7 @@ RPC nodes provide API access to the Tempo network without participating in conse ```bash /dev/null/quickstart.sh#L1-15 # Download snapshot (this will help you sync much faster) -tempo download --archive +tempo download --chain mainnet # Run node tempo node \ From 9aafad9db66880b185cb36f96831cbb9e08b0abf Mon Sep 17 00:00:00 2001 From: Centaur AI Date: Wed, 6 May 2026 11:28:05 +0000 Subject: [PATCH 3/4] Revert "docs: simplify snapshot download to just tempo download --chain " This reverts commit 4e2e4c71ac691c2c44248f34a5a4c527a42c7276. --- src/pages/cli/download.mdx | 24 +++++++++++++++++++----- src/pages/guide/node/installation.mdx | 14 ++++++++++++-- src/pages/guide/node/rpc.mdx | 2 +- 3 files changed, 32 insertions(+), 8 deletions(-) diff --git a/src/pages/cli/download.mdx b/src/pages/cli/download.mdx index 9aa2de21..ef0bc727 100644 --- a/src/pages/cli/download.mdx +++ b/src/pages/cli/download.mdx @@ -22,19 +22,27 @@ tempo download [flags] | `-u, --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 -Download a snapshot: +Download the latest archive snapshot (for RPC nodes): ```bash -tempo download --chain mainnet +tempo download --archive ``` -Download a snapshot for testnet: +Download the latest minimal snapshot (for validators): ```bash -tempo download --chain moderato +tempo download --minimal +``` + +Download a snapshot for a specific chain: + +```bash +tempo download --archive --chain moderato ``` List available snapshots: @@ -43,10 +51,16 @@ List available snapshots: tempo download --list ``` +List available snapshots for a specific chain: + +```bash +tempo download --list --chain moderato +``` + Resume an interrupted download: ```bash -tempo download --chain mainnet --resumable +tempo download --archive --resumable ``` Then start your node with [`tempo node`](/cli/node). diff --git a/src/pages/guide/node/installation.mdx b/src/pages/guide/node/installation.mdx index 01bbf6c1..1e240048 100644 --- a/src/pages/guide/node/installation.mdx +++ b/src/pages/guide/node/installation.mdx @@ -48,9 +48,19 @@ 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. -```bash -tempo download --chain +::::code-group +```bash [Minimal (validators)] +tempo download --chain mainnet --minimal +``` +```bash [Full (RPC / dApp backends)] +tempo download --chain mainnet ``` +```bash [Archive (indexers / RPC providers)] +tempo download --chain mainnet --archive +``` +:::: + +For testnet, replace `mainnet` with `moderato`. ## Verifying Releases diff --git a/src/pages/guide/node/rpc.mdx b/src/pages/guide/node/rpc.mdx index 5e56ac41..95c6e1c1 100644 --- a/src/pages/guide/node/rpc.mdx +++ b/src/pages/guide/node/rpc.mdx @@ -12,7 +12,7 @@ RPC nodes provide API access to the Tempo network without participating in conse ```bash /dev/null/quickstart.sh#L1-15 # Download snapshot (this will help you sync much faster) -tempo download --chain mainnet +tempo download --archive # Run node tempo node \ From 944529e1f6876b36856002e38ef96aedae598142 Mon Sep 17 00:00:00 2001 From: Centaur AI Date: Wed, 6 May 2026 11:28:37 +0000 Subject: [PATCH 4/4] docs: remove minimal snapshot references Not ready for partner use yet. Archive and full snapshot options remain. Amp-Thread-ID: https://ampcode.com/threads/T-019dfd08-9757-749f-8da5-da7052bfb83a --- src/pages/cli/download.mdx | 7 ------- src/pages/guide/node/installation.mdx | 3 --- 2 files changed, 10 deletions(-) diff --git a/src/pages/cli/download.mdx b/src/pages/cli/download.mdx index ef0bc727..76fdb6fd 100644 --- a/src/pages/cli/download.mdx +++ b/src/pages/cli/download.mdx @@ -22,7 +22,6 @@ tempo download [flags] | `-u, --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 @@ -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 diff --git a/src/pages/guide/node/installation.mdx b/src/pages/guide/node/installation.mdx index 1e240048..53dab41a 100644 --- a/src/pages/guide/node/installation.mdx +++ b/src/pages/guide/node/installation.mdx @@ -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 ```