X PrimeFlow

Celestia

Celestia
Chain ID: mocha-5
Block Height:
Network Status: Connecting
Explorer
mocha-5

Celestia Peers

Publishable public outbound peers are filtered. RPC total connections are reported separately.

Live outbound peer listโ€”0 publishable outbound peers
RPCโ€”RPC total N/A
StatusPendingNot available

Network peers

Choose a compact persistent-peers set. The full validated directory remains searchable below.

Source: Tendermint /net_info via the first healthy public RPC
Loading public peers
Loading public peers

Peer details

Search the validated directory. Click a peer address to copy it.

0 publishable outbound peers
Loading public peers
Loading public peers

Configured BonyNode resources

RPC total may include inbound, private or sentry connections. Those addresses are never published; only validated public outbound peers appear below.

Reviewed addrbookDownload configured file6658 peers ยท SHA-256 637d1649c2b1โ€ฆ
Reviewed addrbook

Peer discovery changes continuously. Review the generated list before applying it and keep the displayed backup until the node reconnects successfully.

set -euo pipefail
NODE_HOME="$HOME/.celestia-app-mocha-5"
ADDRBOOK_URL='https://testnet-files.bonynode.online/celestia/addrbook.json'
ADDRBOOK_SHA256='637d1649c2b1ef4b89fc2c8f8cd158315f443fe3db093fe55b1587814b2c5f88'
ADDRBOOK_MAX_BYTES=6000000
WORK_DIR=$(mktemp -d)
trap 'rm -rf "$WORK_DIR"' EXIT
ADDRBOOK_JSON="$WORK_DIR/addrbook.json"

test -d "$NODE_HOME/config"
curl --fail --show-error --location --retry 3   --connect-timeout 15 --max-time 120 --proto '=https' --proto-redir '=https'   --max-filesize "$ADDRBOOK_MAX_BYTES" --output "$ADDRBOOK_JSON" "$ADDRBOOK_URL"
jq -e 'type == "object" and (.addrs | type == "array") and (.addrs | length > 0)' "$ADDRBOOK_JSON" >/dev/null
printf '%s  %s
' "$ADDRBOOK_SHA256" "$ADDRBOOK_JSON" | sha256sum --check -
cp --no-clobber "$NODE_HOME/config/addrbook.json" "$NODE_HOME/config/addrbook.json.init-backup" || true
install -m 0644 "$ADDRBOOK_JSON" "$NODE_HOME/config/addrbook.json"
printf 'Installed reviewed addrbook (%s peers, %s)
' 6658 "$ADDRBOOK_SHA256"

Operational note: Peer discovery changes continuously. Review the generated list before applying it and keep the displayed backup until the node reconnects successfully.

Last successful update: Not available. Automatic refresh: every 30 seconds.