Snapshot/
mainnet/
canto

mainnet
Rpc status: Active
pruned
latest pruned snapshot

name:

canto-mainnet-14470489

height:

14470489

size:

43.5 GB

time:

6 hours ago

url:

https://download.dteam.tech/canto/mainnet/pruned/latest-snapshot
past pruned snapshot

name:

canto-mainnet-14467695

height:

14467695

size:

43.3 GB

time:

11 hours ago

url:

https://download.dteam.tech/canto/mainnet/pruned/past-snapshot

Install Dependencies

sudo apt update
sudo apt-get install snapd lz4 -y

Disable State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" $HOME/.cantod/config/config.toml

Stop Node and Reset Data

sudo systemctl stop cantod
cp $HOME/.cantod/data/priv_validator_state.json $HOME/.cantod/priv_validator_state.json.backup
rm -rf $HOME/.cantod/data
cantod tendermint unsafe-reset-all --home $HOME/.cantod --keep-addr-book

Download PRUNED Snapshot

curl -o - -L https://download.dteam.tech/canto/mainnet/pruned/latest-snapshot | lz4 -c -d - | tar -x -C $HOME/.cantod
mv $HOME/.cantod/priv_validator_state.json.backup $HOME/.cantod/data/priv_validator_state.json

Restart Node and Check Logs

sudo systemctl restart cantod
sudo journalctl -u cantod -f -o cat