EOS Rio
Loading…
Rio Blocks

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.

Chains
Objects
Catalog

How to use

  1. Stream-download and decompress in one step (pipe curl into zstd -d).
  2. Optional: fetch the sidecar .sha256 and verify before trust.
  3. Boot nodeos from the resulting .bin with --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