Mezo

Block Height
Snapshot Size
Snapshot Age
Database
GoLevelDB
Snapshot Type
Archive
Compression
.tar.lz4
Retention
Last 3 snapshots

Mezo is a Bitcoin-backed economic network and layer-2 rollup that brings productive BTC to decentralized finance. It is built with the Cosmos SDK and offers full EVM compatibility for smart contracts.

These are archive snapshots taken from a full-history node (pruning = nothing). They contain the complete state and block history since genesis, which makes them suitable for archive nodes, full-history RPC endpoints and historical state queries – not only for fast node sync. Snapshots are produced daily and our servers always keep the last 3 available.

Because this is a full archive, the download is considerably larger than a pruned snapshot. Make sure the target volume has enough free space for the extracted database before you start.

Chain Details

  • Chain ID (consensus): mezo_31612-1
  • EVM chain ID: 31612 (0x7b7c)
  • Software: mezod v11.0.1, managed via Cosmovisor
  • Database: GoLevelDB (Cosmos SDK default)
  • Compression: .tar.lz4

Download Instructions

To download and restore the Mezo snapshot, use the following commands:

sudo systemctl stop mezod
rm -rf /var/lib/mezod/data
curl -o - https://snapshot.pathrocknetwork.org/snapshots/mezo/latest.tar.lz4 | lz4 -dc - | tar -xf - -C /var/lib/mezod
sudo chown -R mezo:mezo /var/lib/mezod
sudo systemctl restart mezod && sudo journalctl -u mezod -f

You can verify the download integrity using the SHA256 checksum:

curl -s https://snapshot.pathrocknetwork.org/snapshots/mezo/latest.tar.lz4.sha256