Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: add snapshot reference for testnet #45

Merged
merged 1 commit into from
Dec 20, 2024
Merged
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
9 changes: 9 additions & 0 deletions pages/dev/testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ cargo run --release --bin pd -- network unsafe-reset-all
cargo run --release --bin pd -- network join http://testnet.plinfra.net:26657
```

That `network join` command will initialize node state directories locally.
Then fetch the most recent snapshot to backfill blocks from before the most
recent testnet chain upgrade:

```
curl -O https://artifacts.plinfra.net/penumbra-testnet-phobos-2/penumbra-node-archive-latest.tar.gz
tar -xzf penumbra-node-archive-latest.tar.gz -C ~/.penumbra/network_data/node0/
```

After that, if you've set up the [Penumbra developer environment](./dev-env.md),
you can run a fullnode locally via:

Expand Down
Loading