Cosmos
Cosmos Peers
Publishable public outbound peers are filtered. RPC total connections are reported separately.
Network peers
Choose a compact persistent-peers set. The full validated directory remains searchable below.
Peer details
Search the validated directory. Click a peer address to copy it.
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 addrbook
Peer discovery changes continuously. Review the generated list before applying it and keep the displayed backup until the node reconnects successfully.
(
export PATH="$PATH:/usr/local/go/bin:$HOME/go/bin"
set -euo pipefail
NODE_HOME="$HOME/.gaia"
ADDRBOOK_URL='https://testnet-files.bonynode.online/cosmos/addrbook.json'
ADDRBOOK_SHA256='b0cdf7d01407210b0d56cda197db0c7448ada49923a37c30a73219708f6093e9'
ADDRBOOK_MAX_BYTES=1000000
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)
' 1081 "$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.