Bifrost node chain data snapshots for fast node synchronization.
| Network | Mode | Compressed | Extracted | Download |
|---|---|---|---|---|
| Mainnet | Archive | 833 GB | 1.7 TB | mainnet.archive.33408325.tar.zst |
| Mainnet | Full | 80 GB | 94 GB | mainnet.full.33407302.tar.zst |
| Testnet | Archive | 329 GB | 472 GB | testnet.archive.36069834.tar.zst |
| Testnet | Full | 23 GB | 28 GB | testnet.full.36069539.tar.zst |
Node Version: v2.1.0
sudo apt install -y aria2 zstdDownloads and extracts simultaneously, saving disk space.
LINK="<DOWNLOAD_URL>" # Copy from table above
cd /var/lib/bifrost-data
wget -q -O - $LINK | zstd -cd | tar xf -Faster download with parallel connections. Requires extra disk space for the compressed file.
LINK="<DOWNLOAD_URL>" # Copy from table above
OUTFILE="bifrost-snapshot.tar.zst"
aria2c -s14 -x14 -k1024M $LINK -o $OUTFILE
zstd -cd $OUTFILE | tar xf -
rm $OUTFILE # Optional: remove compressed file after extraction