Skip to content

48Club/bsc-snapshots

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 

Repository files navigation

bsc-snapshots

Geth

Geth fast node

Field Value
Version v1.4.15
Block 42671994 (Sep-29-2024 07:43:02 AM +UTC)
Link https://snapshots.48.club/geth.fast.42671994.tar.zst
Size 322.47G <-> 355.73G
SHA256 52bac31ce84648fb799a6a73522a5682a30bee4b2281b0e9736db6a6b176b2cc
Flags --history.transactions=90000 --syncmode=full --db.engine=pebble --tries-verify-mode=none
Disk Suggestion Minimum(NVMe ≥ 500G), Suggestion(NVMe ≥ 1T)

Back to TOC

Geth full node

Field Value
Version v1.4.15
Block 42679211 (Sep-29-2024 01:43:53 PM +UTC)
Link https://snapshots.48.club/geth.full.42679211.tar.zst
Size 875.04G <-> 956.77G
SHA256 2d984093f67ec741165cc6f76d176be5d28945736e45fd0975c2154a4c4249f7
Flags --history.transactions=90000 --syncmode=full --db.engine=pebble
Disk Suggestion Minimum(NVMe ≥ 1.2T), Suggestion(NVMe ≥ 2T)

Back to TOC

Erigon

Erigon fast node

Field Value
Version Erigon3
Block 42677102 (Sep-29-2024 11:58:26 AM +UTC)
Chaindata https://snapshots.48.club/erigon.42677102.tar.zst
Size 403.40G <-> 661.40G
SHA256 c7a7dc91c237d84ed4392dd9165497250a89b3a7fa43e6ad42540f68066de174
Flags --prune.mode=minimal --chain=bsc
Disk Suggestion Minimum(NVMe ≥ 1T), Suggestions(NVMe ≥ 2T)

Back to TOC

Erigon archive node

Multi-threaded download via aria2, nothing more

# install dependencies
sudo apt-get install -y aria2 curl jq
# download snapshot
curl -skL https://raw.githubusercontent.com/48Club/bsc-snapshots/refs/heads/main/script/erigon_archive_download.sh | bash
mv snapshots /data/erigon
# start erigon
erigon3 --prune.mode=archive --chain=bsc --datadir=/data/erigon ...

Back to TOC

How to download

pipeline download and extract

wget $Link -O - | zstd -cd | tar xf -

multithreaded download

aria2c -s4 -x4 -k1024M $Link -o $save_path
zstd -cd $save_path | tar xf -
openssl sha256 $save_path # checksum verification, optional

Back to TOC