• Stars
    star
    127
  • Rank 273,899 (Top 6 %)
  • Language
  • Created about 2 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

bsc daily snapshot

bsc-snapshots

Geth

Geth fast node

Field Value
Version v1.2.11
Block 31267694 (Aug-29-2023 05:41:45 AM +UTC)
Link https://snapshots.48.club/geth.fast.31267694.tar.zst
Size 382.94G <-> 418.86G
SHA256 8cd38578ccbb542ee1d5e5addbde1869f367eb3abc7d1f9a86d4e57d65511c30
Flags --txlookuplimit=0 --syncmode=full --tries-verify-mode=none --pruneancient=true
Disk Suggestion Minimum(NVMe ≥ 500G), Suggestion(NVMe ≥ 1T)

Back to TOC

Geth full node

Field Value
Version v1.2.11
Block 31271683 (Aug-29-2023 09:01:42 AM +UTC)
Link https://snapshots.48.club/geth.full.31271683.tar.zst
Size 821.12G <-> 882.09G
SHA256 bc67827b22390aee34d5bbb5a94002ed73bb9c259167211a75e89f2686392be4
Flags --txlookuplimit=0 --syncmode=full --tries-verify-mode=local
Disk Suggestion Minimum(NVMe ≥ 1T), Suggestion(NVMe ≥ 2T)

Back to TOC

Erigon

Erigon torrents files

Field Value
Usage #82
Link https://snapshots.48.club/erigon.torrents.20230830.tar.zst
Size 629.45G <-> 774.94G
SHA256 f0aa102ee88bd15a9247df2f00023ed5e0b949402bb77af396e758995008599f

Erigon fast node

Field Value
Version v1.1.9
Block 31306137 (Aug-30-2023 01:52:39 PM +UTC)
Link https://snapshots.48.club/erigon.fast.31306137.tar.zst
Size 390.01G <-> 818.00G
SHA256 dab42346af7cabb59a99d85855d8f805393988b0520b3268ccf98e89cf3a5e6d
Flags --chain=bsc --prune=hrtc --db.pagesize=16k
Disk Suggestion Minimum(NVMe ≥ 1.7T), Suggestion(NVMe ≥ 2.5T)

Back to TOC

Erigon archive node

BSC mainnet

Field Value
Version v1.1.7
Block 30452140 (Jul-31-2023 07:29:14 PM +UTC)
List erigon_archive.list
Size 1600.01G <-> 6794.00G
SHA256 8df2389ef95d990aa1e00885cb5cce778e648f17d88d13379fef2f83cc40c495
Flags --chain=bsc --db.pagesize=16k
Disk Suggestion Minimum(NVMe ≥ 7.5T), Suggestion(NVMe ≥ 9T)

Back to TOC

BSC testnet

Field Value
Version v1.1.4
Block 31436344 (Jul-10-2023 04:04:58 PM +UTC)
Link https://snapshots.48.club/erigon.testnet.31436344.tar.zst
Size 160.59G <-> 594.00G
SHA256 e8a8484177753c16bfc5711fb06d69dc9bc0c51ed41280cee074ae4554a71e60
Flags --chain=chapel --db.pagesize=16k
Disk Suggestion Minimum(NVMe ≥ 700G), Suggestion(NVMe ≥ 1T)

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

download in parts

mkdir parts && cd parts
wget $List -O url.list
aria2c -s4 -x4 -k1024M -i url.list # multithreaded download
## or
# wget -i url.list
## checksum verification, optional
# cat erigon.$TYPE.$BLOCK.tar.zst.part_* | openssl sha256
## if checksum is not matched, try to check parts one by one
## you can get checksum of parts from list/erigon_$TYPE.sha256
cat erigon.$TYPE.$BLOCK.tar.zst.part_* | zstd -cd | tar xf -

Back to TOC