BonyNode❤️ ChainServices
🔋EXPLORER🔋
  • 👽BonyNode NEW SERVICE!
  • 🌄BonyNode Explorer
  • 💸Supported IBC Relayers
  • 💚Supported Chains
  • 🧙‍♀️Monitoring Tools
  • 🏝️Governance Proposals Bots
  • Mainnet
    • 🚀TIMPI
      • Installation
      • Upgrade
      • Snapshot
      • Useful commands
    • 💫COSMOS HUB
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 💫OSMOSIS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 💫ARCHWAY
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 💫BLOCKX
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
  • Testnet
    • 🚀ANDROMEDA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀ARCHWAY
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀AIRCHAINS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀CARDCHAIN
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀CROSSFI
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
      • Grant Validators
      • Testnet Guide
    • 🚀CELESTIA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀COMPOSABLE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀INITIA
    • 🚀DYMENSION
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀ELYS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀HYPERSIGN
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀LAVA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
      • Public RPC, API
    • 🚀NAMADA
      • Install
      • Public RPC
      • Useful Commands
    • 🚀NOLUS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀OJO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀OLLO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • 🚀SIDE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
  • 🧩GEAR PROTOCOL
  • 🧩MUON
  • 🧩MASSA
  • 🧩SHARDEUM
  • 🧩SUBSPACE
  • 🧩STARKNET
  • 🧩TAIKO
  • Team BonyNode
    • 🟩About Team
    • 🟢Сommunity Network
Powered by GitBook
On this page
  • RPC, API, gRPC
  • State Sync
  • Wasm
  1. Testnet
  2. CROSSFI

State sync

PreviousSnapshotNextUseful commands

Last updated 1 year ago

RPC, API, gRPC

RPC: API:J SON-RPC:

gRPC:

crossfi-testnet-grpc.itrocket.net:36090

peers:

66bdf53ec0c2ceeefd9a4c29d7f7926e136f114a@crossfi-testnet-peer.itrocket.net:36656

seeds:

dd83e3c7c4e783f8a46dbb010ec8853135d29df0@crossfi-testnet-seed.itrocket.net:36656

live peers:

active peers: 3 (upd. every 10 sec)

PEERS="66bdf53ec0c2ceeefd9a4c29d7f7926e136f114a@crossfi-testnet-peer.itrocket.net:36656,[email protected]:44656,[email protected]:56156"
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.mineplex-chain/config/config.toml

addrbook:

updates every hour

wget -O $HOME/.mineplex-chain/config/addrbook.json https://testnet-files.itrocket.net/crossfi/addrbook.json

State Sync

If you don't want to wait for a long synchronization you can use:

sudo systemctl stop crossfid

cp $HOME/.mineplex-chain/data/priv_validator_state.json $HOME/.mineplex-chain/priv_validator_state.json.backup
crossfid tendermint unsafe-reset-all --home $HOME/.mineplex-chain

peers="66bdf53ec0c2ceeefd9a4c29d7f7926e136f114a@crossfi-testnet-peer.itrocket.net:36656,[email protected]:44656,[email protected]:56156"  
SNAP_RPC="https://crossfi-testnet-rpc.itrocket.net:443"

sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.mineplex-chain/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/.mineplex-chain/config/config.toml

mv $HOME/.mineplex-chain/priv_validator_state.json.backup $HOME/.mineplex-chain/data/priv_validator_state.json

sudo systemctl restart crossfid && sudo journalctl -u crossfid -f

Wasm

Sorry, this project does not support WebAssembly.

🚀
https://crossfi-testnet-rpc.itrocket.net
https://crossfi-testnet-api.itrocket.net
https://crossfi-testnet-jsonrpc.itrocket.net