Nibiru
Nibiru is a sovereign proof-of-stake blockchain, open-source platform, and member of a family of interconnected blockchains that comprise the Cosmos Ecosystem. Nibiru unifies leveraged derivatives trading, spot trading, staking, and bonded liquidity provision into a seamless user experience, enabling users of over 40 blockchains to trade with leverage using a suite of composable decentralized applications.
Chain ID: nibiru-testnet-2
Website: nibiru.fi
Explorer: explorer.ppnv.space/nibiru
Public Endpoints:
✅ RPC
rpc.nibiru.ppnv.space:27657
✅ API / REST
api.nibiru.ppnv.space
✅ gRPC
grpc.nibiru.ppnv.space:27090
✅ gRPC Web
grpc.nibiru.ppnv.space:27091
Genesis:
curl -Ls https://service.ppnv.space/nibiru/genesis.json > $HOME/.nibid/config/genesis.json
Peering:
✅ Seed Node
✅ Live Peers
✅ Addrbook #update every hour
curl -Ls https://service.ppnv.space/nibiru/addrbook.json > $HOME/.nibid/config/addrbook.json
✅ State Sync #snapshot-interval = 1000
sudo systemctl stop nibid
cp $HOME/.nibid/data/priv_validator_state.json $HOME/.nibid/priv_validator_state.json.backup
nibid tendermint unsafe-reset-all --home $HOME/.nibid
STATE_SYNC_RPC=http://rpc.nibiru.ppnv.space:27657
STATE_SYNC_PEER=d67d2bae772c3d44123a7495d56c568a185717f8@rpc.nibiru.ppnv.space:27656
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
SYNC_BLOCK_HEIGHT=$(($LATEST_HEIGHT - 1000))
SYNC_BLOCK_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$SYNC_BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -e "s|^enable *=.*|enable = true|" $HOME/.nibid/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
$HOME/.nibid/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
$HOME/.nibid/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
$HOME/.nibid/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
$HOME/.nibid/config/config.toml
mv $HOME/.nibid/priv_validator_state.json.backup $HOME/.nibid/data/priv_validator_state.json
sudo systemctl restart nibid && journalctl -u nibid -f --no-hostname -o cat