X PrimeFlow

Airchains

Airchains
Chain ID: varanasi-1
Block Height:
Network Status: Connecting
Explorer
varanasi-1

Airchains 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 file1466 peers ยท SHA-256 e5c938302e8fโ€ฆ
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/.junctiond"
ADDRBOOK_URL='https://testnet-files.bonynode.online/airchains/addrbook.json'
ADDRBOOK_SHA256='e5c938302e8fb188474da94182738385b3faec005d1256762e0b21634796ed7b'
ADDRBOOK_MAX_BYTES=2000000
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)
' 1466 "$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.