Skip to content
Merged
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
12 changes: 11 additions & 1 deletion src/pages/cli/download.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ tempo download [flags]

## Examples

<!--
This is broken:

Download the latest mainnet snapshot:

```bash
Expand All @@ -37,11 +40,18 @@ Download to a specific directory:
```bash
tempo download --chain mainnet --datadir /data/tempo
```
!-->

Download a snapshot from https://snapshots.tempoxyz.dev:

```bash
tempo download -u $SNAPSHOT_URL
```

Resume an interrupted download:

```bash
tempo download --chain mainnet --resumable
tempo download -u $SNAPSHOT_URL --resumable
```

Then start your node with [`tempo node`](/cli/node).
4 changes: 3 additions & 1 deletion src/pages/guide/node/rpc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ 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
#
# See https://snapshots.tempoxyz.dev/ for snapshots.
tempo download -u $SNAPSHOT_URL

# Run node
tempo node \
Expand Down
Loading