Chainlayer
Contact
Chainlayer
Contact
Terms and ConditionsMedia kit
Blockchain Association
backgroundbackground
Cronos Chain

Cronos Chain

Download the latest Cronos Chain snapshots to accelerate node setup and maintain sync with current network data.

LinkChain IDTypeSoftwareVersionDatabaseSizeDate↓
Copy linkcronosmainnet_25-1prunedcronosdv1.4.6rocksdb283.2G11 hours ago
Copy linkcronosmainnet_25-1prunedcronosdv1.4.6goleveldb213.1G11 hours ago
Copy linkcronosmainnet_25-1defaultcronosdv1.4.6rocksdb769.4G15 hours ago
Copy linkcronosmainnet_25-1archivecronosdv1.4.6versiondb2.4T4 days ago
Copy linkcronosmainnet_25-1archivecronosdv1.4.6rocksdb3.7T4 days ago
Copy linkcronosmainnet_25-1archivecronosdv1.4.6goleveldb4.4T6 days ago

How to download and extract the snapshot?

Pick a snapshot from the list above and copy the link. Take note of the file extension which is either .zstd or .lz4.

Single-threaded

# Set the URL of the snapshot
URL="<paste the URL of the snapshot>"

# Download and extract the snapshot
wget -O- $URL | lz4 -dc | tar -xaf -  # For lz4-compressed archives
wget -O- $URL | zstd -dc | tar -xaf - # For zstd-compressed archives

Multi-threaded

# Install aria2c
sudo apt update && sudo apt install aria2

# Set the URL of the snapshot, take note of the file extension
URL="<paste the URL of the snapshot>"
FILENAME=$(basename $URL)

# Download and extract the snapshot
aria2c -x 8 -s 8 $URL

# Decompress and extract the snapshot
lz4 -dc $FILENAME | tar -xaf -      # For lz4-compressed archives
zstd -dc $FILENAME -T0 | tar -xaf - # For zstd-compressed archives
The aria2c -x flag specifies the number of connections, and the -s flag specifies the number of segments per connection. You can adjust these values based on your network speed and the server's capabilities.

What is QuickSync?

Quicksync significantly reduces node re-sync time by delivering highly optimized, compressed blockchain archives through high-performance servers. Our service is crucial for validators and service providers who require rapid deployments, efficient scaling, and swift recovery of existing services. By ensuring fast, reliable access to the latest blockchain data, we empower users to keep their nodes in sync with minimal downtime and enhanced performance, enabling continuous network participation.