QuickSync SnapShots
Newest snapshots for the Cronos Proof Of Steak (POS) Blockchain
Introduction
Syncing Cronos POS Chain from genesis can be a time-consuming process. To make this more efficient for users, the Cronos team has partnered with Chainlayer to provide the "QuickSync" service, which offers pre-synchronized blockchain snapshots with different pruning configurations.
QuickSync snapshots are available with three different pruning settings to match your specific use case:
Pruned - Optimized for validators and sentry nodes with minimal storage requirements
Default - Balanced option suitable for most use cases including API nodes
Archive - Complete blockchain history for full API functionality
All snapshots use LevelDB and can be downloaded from: https://quicksync.io/cronos-pos
Snapshot Types
Crypto-org-chain-mainnet-1-pruned
The pruned snapshot is the fastest way to get a node running and is ideal for validator or sentry nodes. This option has transaction indexing disabled to reduce disk space and download size, which means API queries cannot work backward in time. If you need API functionality, you can enable transaction indexing after startup, but you won't be able to query historical data from before your node started.
Crypto-org-chain-mainnet-1-default
The default snapshot provides a good balance for most use cases, including validators, sentry nodes, and API nodes. It has transaction indexing enabled, allowing you to query historical blocks. However, it doesn't include the complete history from chain genesis or previous chain upgrades.
Crypto-org-chain-mainnet-1-archive
The archive snapshot contains complete blockchain data from chain start with full indexing, making it perfect for API nodes requiring access to entire chain history. Note that archive nodes grow quickly in size and may be slower to operate compared to other options.
Step 1: Chain-maind Setup
Download and Install Chain-maind
Download the latest
chain-maindbinary from the Cronos POS Chain GitHub repository based on your operating system.Extract the downloaded file:
tar -zxvf chain-main_4.2.9_Darwin_arm64.tar.gzVerify installation:
# check the version of chain-maind
cd bin
./chain-maind version
6.0.1Initialize and Configure
Initialize Chain-maind (refer to the initialization steps from the main documentation)
Configure the node in `config.toml`
nano ~/.chain-maind/config/config.tomlUpdate the seed nodes with the latest available seeds (check the official documentation for current seed list).
Start Chain-maind briefly to create the necessary directory structure:
./chain-maind startOnce you see the node syncing for a couple of blocks, terminate the process (Ctrl+C).
Step 2: Download QuickSync Snapshot
Visit the QuickSync page: https://quicksync.io/cronos-pos
Select your preferred snapshot type based on your use case requirements
Download the snapshot file (example filename:
crypto-org-chain-mainnet-1-pruned.20220323.2110.tar.lz4)
Step 3: QuickSync Setup
Optional: Download Address Book
For faster peer connections, you can download an address book:
Download the address book from the QuickSync page
Place the
addrbook.jsonfile in your~/.chain-maind/config/folderRestart your node to apply the new address book
Extract the Snapshot
Move the downloaded snapshot to your Chain-maind directory:
mv crypto-org-chain-mainnet-1-pruned.20220323.2110.tar.lz4 ~/.chain-maind/Navigate to the Chain-maind directory:
cd ~/.chain-maindExtract the snapshot:
lz4 -d crypto-org-chain-mainnet-1-pruned.20220323.2110.tar.lz4 | tar -xvExpected output during extraction:
x data/
x data/state.db/
x data/state.db/161915.ldb
x data/state.db/035015.ldb
...
x data/evidence.db/MANIFEST-000143
x data/evidence.db/000142.log
x data/priv_validator_state.jsonStep 4: Start Syncing with QuickSync
Navigate back to your Chain-maind binary directory
Start the node:
./chain-maind startYour node will start syncing from the snapshot height. Expected output:
12:28PM INF starting ABCI with Tendermint
12:28PM INF Starting multiAppConn service impl=multiAppConn module=proxy
12:28PM INF Starting localClient service connection=query impl=localClient module=abci-client
...
12:28PM INF ABCI Handshake App Info height=5055406 module=consensus
12:28PM INF ABCI Replay Blocks appHeight=5055406 module=consensus stateHeight=5055406 storeHeight=5055406Conclusion
Your Cronos POS Chain node is now running with QuickSync! The node will continue syncing from the snapshot height to the current network height, significantly reducing the time required compared to syncing from genesis.
Last updated