From e13735148759627dab264438af6ab52db2874265 Mon Sep 17 00:00:00 2001 From: satyakwok <119509589+satyakwok@users.noreply.github.com> Date: Thu, 25 Jun 2026 12:58:08 +0200 Subject: [PATCH] fix(scan): label ticker uptime as 'Node uptime' uptime_seconds from /sentrix_status is the serving node's process uptime since its last restart (~4 days), not the chain age. The bare 'Uptime' label read as network uptime and looked wrong on a chain that is millions of blocks old. Relabel to make clear it is the node's uptime. --- apps/scan/components/home/LiveTicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scan/components/home/LiveTicker.tsx b/apps/scan/components/home/LiveTicker.tsx index 58c0daa..ea6ad65 100644 --- a/apps/scan/components/home/LiveTicker.tsx +++ b/apps/scan/components/home/LiveTicker.tsx @@ -38,7 +38,7 @@ export function LiveTicker({ stats, blockTime, network, epoch, status }: LiveTic { label: "Circulating", value: stats ? formatSRX(stats.total_minted_srx) : "—" }, { label: "Tokens", value: stats ? String(stats.deployed_tokens) : "—" }, { label: "Reward", value: stats ? `${stats.next_block_reward_srx} SRX` : "—" }, - { label: "Uptime", value: status ? formatUptime(status.uptime_seconds) : "—" }, + { label: "Node uptime", value: status ? formatUptime(status.uptime_seconds) : "—" }, ]; // Single static rail. Used to be a marquee with two duplicated copies for