Public Node
Public Node Blockchain Snapshots for Cronos Mainnet
Introduction
Public Node Snapshots, provided by blockchain infrastructure company Allnodes, offer a streamlined solution for Cronos node operators looking to quickly sync with the Cronos EVM network.
Available as one-time bulk downloads, the snapshots significantly reduce initial setup time and bandwidth requirements for new nodes. It provides pruned snapshots for both Cronos EVM and Cronos POS mainnet blockchains.
This guide walks you through the step-by-step process of performing a Cronosd
s synchronization using Public Node Snapshots. The snapshots provided are pruned for optimize file size and download speed.
If a complete blockchain history to operate a full archive node is needed, Native Snapshots or Quicksync archive snapshot are the recommended alternatives.
Step 1: Download Public Node Snapshot
Download the latest Cronos EVM snapshot from Public Node Page.
Step 2: Cronosd Setup
Download the latest version of Cronosd Binary files from Cronos Chain Github based on your preferred operating system.
Extract the downloaded file (cronos_1.4.5_Darwin_arm64.tar.gz
is used as an example). After you download and unzip the cronosd
to the location you desire. In terminal, change directory to the bin
folder, where cronosd
is located.
Follow the step from Step 2-1 Initialize and Step 2-2 Configure cronosd to initialize and setup cronosd
.
Example CLI sequence:
mkdir cronos-node
cd cronos-node
tar -zxvf cronos_1.4.9_Darwin_arm64.tar.gz
cd bin
./cronosd version
Expected output:
1.4.9
Make sure you also implement the changes from Step 0 : Notes on Network Upgrade, and add these config items from v0.7.0
into app.toml
before upgrade:
### JSON RPC Configuration ###
[json-rpc]
feehistory-cap = 100
logs-cap = 10000
block-range-cap = 10000
http-timeout="30s"
http-idle-timeout="120s"
### EVM Configuration ###
[evm]
max-tx-gas-wanted=500000
Run Everything, Cronosd
should be able to sync.
Step 3: Extract Data from the Public Node Sync Snapshot
After you successfully initialized cronosd
, you should find a new folder named .cronos
under /Users/<username>.
Move the .lz4
snapshot file (e.g., cronos-pruned-18949418-18949428.tar.lz4
) into the .cronos
directory.
Decompress with tar
by:
tar -zxvf Users/<username>/.cronos/cronos-pruned-18949418-18949428.tar.lz4
Step 4: Run Cronosd
Now your cronosd
is updated to the latest height as the Public Node Sync file, you can run the node now with cronosd start
.
That's it! You are now running a synced node on Cronos mainnet.
Last updated
Was this helpful?