Snapshot/
testnet/
injective

Services/

Snapshot/

injective

Rpc status: Active
pruned
latest pruned snapshot

name:

injective-testnet-64702366

height:

64702366

size:

84.0 GB

time:

3 hours ago

url:

https://download.dteam.tech/injective/testnet/pruned/latest-snapshot
past pruned snapshot

name:

injective-testnet-64678070

height:

64678070

size:

83.4 GB

time:

8 hours ago

url:

https://download.dteam.tech/injective/testnet/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/.injectived/config/config.toml

Stop Node and Reset Data

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

Download PRUNED Snapshot

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

Restart Node and Check Logs

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