Suntzu | Chain services
Explorer
  • 🏆Mainnet
    • Celestia
      • ⚙️Installation
      • Wallet
      • Validator
      • RPC, API, GRPC
      • Snapshot
      • State Sync
  • 🥈Testnet
    • 0g.ai
      • ⚙️Installation
      • 🔼Upgrade
      • ⛓️Sync
      • ✅RPC, API, GRPC
      • 🎯Useful commands
    • Initia
      • ⚙️Installation
      • 🔼Upgrade
      • ⛓️Sync
      • ✅RPC, API, GRPC
      • 🎯Useful commands
    • Axelar
      • ⚙️Installation
      • 🔼Upgrade
      • ⛓️Sync
      • 🎯Useful commands
    • Celestia
      • ⚙️Installation
      • Wallet
      • Validator
      • RPC, API, GRPC
      • Snapshot
      • State Sync
    • Airchains
      • ⚙️Installation
      • RPC, API, GRPC
      • Validator
      • Snapshot
Powered by GitBook
On this page
  1. Testnet
  2. 0g.ai

Sync

Snapshots are taken automatically every 4 hours starting at 00:00 UTC

Pruning
Indexer
Version Tag
Download

100/0/10

null

v0.1.0

Snapshot

sudo systemctl stop 0g-ai

cp $HOME/.0gchain/data/priv_validator_state.json $HOME/.0gchain/priv_validator_state.json.backup 

axelard tendermint unsafe-reset-all --home $HOME/.0gchain --keep-addr-book 
curl https://testnet-files.suntzu.dev/download/testnet/0g-ai/0g-ai-snapshot.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.0gchain

mv $HOME/.0gchain/priv_validator_state.json.backup $HOME/.0gchain/data/priv_validator_state.json 

sudo systemctl restart 0g-ai
sudo journalctl -u 0g-ai -f 

State-Sync

#!/bin/bash

SNAP_RPC="https://0g-testnet-rpc.suntzu.dev:443"

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

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\"|" $HOME/.axelar/config/config.toml
chmod 700 state_sync.sh
./state_sync.sh
systemctl stop 0g-ai
0gchaind tendermint unsafe-reset-all --home $HOME/.0gchain --keep-addr-book
sudo systemctl restart 0g-ai && sudo journalctl -u 0g-ai -f
PreviousUpgradeNextRPC, API, GRPC

Last updated 1 year ago

🥈
⛓️
Link