๐ Odiseo 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 peersReviewed BonyNode peer (when configured) plus the current validated public outbound list.
5cba71412f911b5a4f24353dd386131e02ccf515@odiseo-testnet-peer.bonynode.online:55556
This command validates the target, writes through a temporary file and keeps a timestamped backup.
PERSISTENT_PEERS='5cba71412f911b5a4f24353dd386131e02ccf515@odiseo-testnet-peer.bonynode.online:55556'
CONFIG_FILE="$HOME/.achilles/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
5cba71412f911b5a4f24353dd386131e02ccf515@odiseo-testnet-peer.bonynode.online:55556
Operational note
Peer discovery changes continuously. Review the generated list before applying it and keep the displayed backup until the node reconnects successfully.