Skip to content

Commit

Permalink
feat: add snapshot reference for testnet (#45)
Browse files Browse the repository at this point in the history
Now that the `penumbra-testnet-phobos-2` chain has been upgraded to
`v0.81.0`, newly joining nodes will need to use a snapshot.
  • Loading branch information
conorsch authored Dec 20, 2024
1 parent a342c7d commit 05da3b7
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit 05da3b7

Please sign in to comment.