| Latest Snapshot | Size | Version |
|---|---|---|
| May-12-2026 2207 UTC | 376G | 0.7.0 |
The instructions below will fully install Heimdall's data folder by downloading each file individually instead of working with zipped archives. In short, download the file that will tell aria2c which files to download and which directory to save them to. Then, use aria2c to download all of the Heimdall files. Last, modify the ownership of the files so Heimdall can access them.
Our snapshot is pruned to provide a smaller option for node operators who don’t need a to query Heimdall. Below are the settings we changed to prune:
# /var/lib/heimdall/data/config/config.toml
[storage]
discard_abci_responses = true
compact = true
compaction_interval = 1000
[storage.pruning]
interval = "2h"
indexer_pruning_enabled = true
# /var/lib/heimdall/data/config/app.toml
min-retain-blocks = 2500000
data folder in it, then download the file containing which files to download. You might need to do this as the root user.cd /var/lib/heimdall
rm -r ./data
wget <https://snapshots-eu.vaultstaking.com/polygon/heimdall-mainnet-files.txt>
tmux or use screen/nohup to keep downloading after you close your connection.tmux
sudo aria2c -j 4 -x 4 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ./heimdall-mainnet-files.txt
heimdall and the nogroup groupsudo chown -R heimdall:nogroup /var/lib/heimdall
sudo service heimdalld start