Skip to content

bifrost-platform/bifrost-snapshots

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

bifrost-snapshots

Bifrost node chain data snapshots for fast node synchronization.

Available Snapshots

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

Prerequisites

sudo apt install -y aria2 zstd

Usage

Option 1: Stream directly (recommended)

Downloads 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 -

Option 2: Multithreaded download

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors