From b510206509ab66fa873bdcfe37209ea24ea3b2b0 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Fri, 20 Dec 2024 20:43:53 +0000 Subject: [PATCH] feat: add snapshot reference for mainnet (#47) Now that the `penumbra-1` chain has been upgraded to `v0.81.0`, newly joining nodes will need to use a snapshot. This was actually true as soon as that chain started running `v0.80.x`, but we weren't previously pointing to snapshots in the docs. --- pages/node/pd/join-network.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pages/node/pd/join-network.md b/pages/node/pd/join-network.md index 9812217..d36f636 100644 --- a/pages/node/pd/join-network.md +++ b/pages/node/pd/join-network.md @@ -36,6 +36,15 @@ configs to a network data directory (by default, `~/.penumbra/network_data`). If any data exists in the network data directory, this command will fail. See the section above on resetting node state. +Finally, if the network you're joining has undergone a chain upgrade before, +you'll need to fetch historical blocks from an archive. Here's an example for +how to do that for the `penumbra-1` chain: + +```shell +curl -O https://artifacts.plinfra.net/penumbra-1/penumbra-node-archive-latest.tar.gz +tar -xzf penumbra-node-archive-latest.tar.gz -C ~/.penumbra/network_data/node0/ +``` + ### Running `pd` and `cometbft` Copy the systemd service configs into place from the [project git repo](https://github.com/penumbra-zone/penumbra):