Public mesh · own fleet · zstd
Chainbase snapshots
Fresh nodeos snapshots from EOS Rio infrastructure. Full tiered history, SHA-256 verified, served over HTTPS. Creates every 6 hours on a staggered grid per chain.
How to use
- Stream-download and decompress in one step (pipe
curlintozstd -d). - Optional: fetch the sidecar
.sha256and verify before trust. -
Boot nodeos from the resulting
.binwith--snapshot(or your usual restore path).
# stream decompress during download (no intermediate .zst on disk)
curl -fL 'https://snaps.eosrio.io/c/{chain}/….bin.zst' | zstd -d -o snapshot.bin
# optional integrity check first
# curl -fLO '…bin.zst' && curl -fLO '…bin.zst.sha256' && sha256sum -c *.sha256 && zstd -d *.bin.zst