AKNodes | Chain services
  • Links
    • Explorer
    • Website
  • 💻TESTNET NETWORKS
  • Pell network
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Arkeo network
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Andromeda
    • Installation
    • Upgarde
    • Sync
    • Useful commands
  • Axelar
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Evmos
    • Installation (PebbleDB)
    • Upgrade
    • Sync
    • Useful commands
  • Lava
    • Installation
    • Upgrade
    • Sync
    • Useful commands
    • Migrate validator
  • Ojo
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Axone
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Terp Network
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Mantra
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • SAO
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Artela
    • Installation
    • Upgrade
    • Sync
    • Useful commands
    • Migrate validator
  • Swisstronik
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Crossfi
    • Installation
    • Upgrade
    • Sync
    • Useful commands
    • Migrate validator
  • Hedge
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Warden
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Side Protocol
    • Installation
    • Upgrade
    • Sync
    • Useful commands
  • Galactica
    • Installation
    • Upgrade
    • Sync
    • Usefull Commands
  • Initia
    • Installation
    • Upgrade
    • Sync
    • Useful Commands
  • Airchains
    • Installation
    • Upgrade
    • Sync
    • Useful Commands
    • Migrate Validator
  • Symphony
    • Installation
    • Upgrade
    • Sync
    • Useful Commands
  • Prysm
    • Installation
    • Upgrade
    • Sync
    • Useful Commands
  • 💻MAINNET NETWORKS
    • Nibiru
      • Installation
      • Upgrade
      • Sync
      • Useful commands
    • Entangle
      • Installation
      • Upgrade
      • Sync
      • Useful commands
      • Migrate Validator
    • Axelar
      • Installation (PebbleDB)
      • Upgrade
      • Sync
      • Useful commands
    • Evmos
      • Installation (PebbleDB)
      • Upgrade
      • Sync
      • Useful commands
    • Planq
      • Installation
      • Upgrade
      • Sync
      • Useful commands
    • Haqq
      • Installation
      • Upgrade
      • Sync
      • Useful commands
    • Terp Network
      • Installation
      • Upgrade
      • Sync
      • Useful commands
    • Gitopia
      • Installation
      • Upgrade
      • Sync
      • Useful Commands
    • Lava
      • Installation
      • Upgrade
      • Sync
      • Useful commands
    • Arkeo
      • Installation
      • Upgrade
      • Sync
      • Useful commands
  • 💻OTHER PROJETCS
    • Avail mainnet
      • Installation
      • Sync
      • Upgrade
    • Massa Labs
      • Installation
    • Avail turing
      • Installation
      • Sync
      • Upgrade
    • Nulink
    • MOI
Powered by GitBook
On this page
  • Snapshot
  • State-Sync
  1. Initia

Sync

Snapshot

Update every 6 hours

sudo systemctl stop initiad

cp $HOME/.initia/data/priv_validator_state.json $HOME/.initia/priv_validator_state.json.backup 

initiad tendermint unsafe-reset-all --home $HOME/.initia --keep-addr-book 
curl https://snapshots.aknodes.net/snapshots/initia/snapshot-initia.AKNodes.lz4 | lz4 -dc - | tar -xf - -C $HOME/.initia

mv $HOME/.initia/priv_validator_state.json.backup $HOME/.initia/data/priv_validator_state.json 

sudo systemctl restart initiad
sudo journalctl -u initiad -f --no-hostname -o cat

State-Sync

sudo systemctl stop initiad

cp $HOME/.initia/data/priv_validator_state.json $HOME/.initia/priv_validator_state.json.backup
initiad tendermint unsafe-reset-all --home $HOME/.initia

peers="f52406af9d63b32434db1b3625b414c1cd89aaf1@167.235.14.83:11256"  
SNAP_RPC="https://rpc.initia.aknodes.net:443"

sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.initia/config/config.toml 

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height);
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000));
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) 

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH && sleep 2

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ;
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ;
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ;
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ;
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.initia/config/config.toml

mv $HOME/.initia/priv_validator_state.json.backup $HOME/.initia/data/priv_validator_state.json

sudo systemctl restart initiad && sudo journalctl -u initiad -f
PreviousUpgradeNextUseful Commands

Last updated 1 year ago