diff --git a/docs/docs/users/filecoin_services.md b/docs/docs/users/filecoin_services.md index b6de40f2075..0eebdf996ff 100644 --- a/docs/docs/users/filecoin_services.md +++ b/docs/docs/users/filecoin_services.md @@ -71,13 +71,10 @@ Mainnet bootstrap nodes' status can be checked at [probelab.io/bootstrappers/fil The latest snapshots are required for new nodes to sync with the network. The snapshots are updated hourly and are available on [this site](https://forest-archive.chainsafe.dev/). -To download the latest snapshots (`v2` by default), use [`mainnet-latest`](https://forest-archive.chainsafe.dev/latest/mainnet) and [`calibnet-latest`](https://forest-archive.chainsafe.dev/latest/calibnet). +To download the latest snapshots (`v2` by default, as outlined in [`FRC-108`](https://github.com/filecoin-project/FIPs/blob/master/FRCs/frc-0108.md)) use: -To download the latest `v1` snapshots, use [`mainnet-latest-v1`](https://forest-archive.chainsafe.dev/latest-v1/mainnet) and [`calibnet-latest-v1`](https://forest-archive.chainsafe.dev/latest-v1/calibnet). - -To download the latest `v2` snapshots (same as latest), use [`mainnet-latest-v2`](https://forest-archive.chainsafe.dev/latest-v2/mainnet) and [`calibnet-latest-v2`](https://forest-archive.chainsafe.dev/latest-v2/calibnet). - -A `v2` snapshot contains F3 data while a `v1` snapshot does not. For details, checkout [`FRC-0108`](https://github.com/filecoin-project/FIPs/blob/master/FRCs/frc-0108.md). +- [`mainnet-latest`](https://forest-archive.chainsafe.dev/latest/mainnet) +- [`calibnet-latest`](https://forest-archive.chainsafe.dev/latest/calibnet) ## Filecoin Archive diff --git a/scripts/tests/calibnet_export_check.sh b/scripts/tests/calibnet_export_check.sh index 8309cd49739..5febab15d53 100755 --- a/scripts/tests/calibnet_export_check.sh +++ b/scripts/tests/calibnet_export_check.sh @@ -12,7 +12,7 @@ source "$(dirname "$0")/harness.sh" forest_init "$@" retries=10 -sleep_interval=0.1 +sleep_interval=0.5 echo "Cleaning up the initial snapshot" rm --force --verbose ./*.{car,car.zst,sha256sum} diff --git a/src/cli_shared/snapshot.rs b/src/cli_shared/snapshot.rs index ad59ebc491c..f3a06bb40a0 100644 --- a/src/cli_shared/snapshot.rs +++ b/src/cli_shared/snapshot.rs @@ -134,7 +134,7 @@ macro_rules! define_urls { define_urls!( const FOREST_MAINNET_COMPRESSED: &str = "https://forest-archive.chainsafe.dev/latest/mainnet/"; const FOREST_CALIBNET_COMPRESSED: &str = - "https://forest-archive.chainsafe.dev/latest-v1/calibnet"; + "https://forest-archive.chainsafe.dev/latest/calibnet/"; ); pub fn stable_url(vendor: TrustedVendor, chain: &NetworkChain) -> anyhow::Result {