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
9 changes: 3 additions & 6 deletions docs/docs/users/filecoin_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/calibnet_export_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion src/cli_shared/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Url> {
Expand Down
Loading