Skip to content

48Club/bsc-snapshots

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

bsc-snapshots

Geth

Geth fast node

Field Value
Version v1.4.15
Block 44014252 (Nov-14-2024 10:31:32 PM +UTC)
Link https://snapshots.48.club/geth.fast.44014252.tar.zst
Size 325.51G <-> 358.57G
SHA256 4e475f5c84787e81550dfbf08010150cb3b405c12018d79a42f777ac4dcaf07a
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 44031603 (Nov-15-2024 12:59:08 PM +UTC)
Link https://snapshots.48.club/geth.full.44031603.tar.zst
Size 888.61G <-> 971.56G
SHA256 4e475f5c84787e81550dfbf08010150cb3b405c12018d79a42f777ac4dcaf07a
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 v1.3.0-alpha5
Block 44093268 (Nov-17-2024 04:22:28 PM +UTC)
Chaindata https://snapshots.48.club/erigon.44093268.tar.zst
Size 346.31G <-> 545.46G
SHA256 798303e8a9a760bb82ef920ee706ab3dc7725ed35c44008396db83f439c979d3
Flags --prune.mode=archive --prune.distance.blocks=90000 --prune.distance=90000 --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