logo
X PrimeFlow

๐Ÿ”— AtomOne Peers

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

0 publishable outbound peersRPC total N/APendingSource: Tendermint /net_info via the first healthy public RPC

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

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

Live outbound peer list

Loading public peers
Loading public peers

Combined persistent_peers

1 unique peers

Reviewed BonyNode peer (when configured) plus the current validated public outbound list.

a58ec8e362a2a0053b6cf81a3d051f3fd7f8592f@atomone-testnet-peer.bonynode.online:62656

This command validates the target, writes through a temporary file and keeps a timestamped backup.

PERSISTENT_PEERS='a58ec8e362a2a0053b6cf81a3d051f3fd7f8592f@atomone-testnet-peer.bonynode.online:62656'
CONFIG_FILE="$HOME/.atomone/config/config.toml"
test -f "$CONFIG_FILE" || { echo "config.toml was not found" >&2; exit 1; }
TMP_FILE="$(mktemp "${CONFIG_FILE}.tmp.XXXXXX")" || exit 1
trap 'rm -f "$TMP_FILE"' EXIT
awk -v peers="$PERSISTENT_PEERS" '
BEGIN { updated = 0 }
/^[[:space:]]*persistent_peers[[:space:]]*=/ {
  print "persistent_peers = \"" peers "\""
  updated = 1
  next
}
{ print }
END { if (!updated) exit 42 }
' "$CONFIG_FILE" > "$TMP_FILE" || {
  echo "persistent_peers was not found; the original file was not changed" >&2
  exit 1
}
BACKUP_FILE="${CONFIG_FILE}.bak.$(date -u +%Y%m%dT%H%M%SZ)"
cp -p -- "$CONFIG_FILE" "$BACKUP_FILE" || exit 1
chmod --reference="$CONFIG_FILE" "$TMP_FILE" 2>/dev/null || true
mv -- "$TMP_FILE" "$CONFIG_FILE"
trap - EXIT
echo "Updated persistent_peers. Backup: $BACKUP_FILE"

Configured BonyNode resources

Persistent peer

a58ec8e362a2a0053b6cf81a3d051f3fd7f8592f@atomone-testnet-peer.bonynode.online:62656

Operational note

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