diff --git a/hydra-explorer/json-schemas/hydra-explorer-api.yaml b/hydra-explorer/json-schemas/hydra-explorer-api.yaml index 2259fa43ece..24be51ae2d5 100644 --- a/hydra-explorer/json-schemas/hydra-explorer-api.yaml +++ b/hydra-explorer/json-schemas/hydra-explorer-api.yaml @@ -209,4 +209,4 @@ components: lastUpdatedAtSlotNo: type: integer lastUpdatedAtBlockNo: - type: integer \ No newline at end of file + type: integer diff --git a/hydra-explorer/web/src/app/headsTable.tsx b/hydra-explorer/web/src/app/headsTable.tsx index f40bd2e0655..ec51db5b69b 100644 --- a/hydra-explorer/web/src/app/headsTable.tsx +++ b/hydra-explorer/web/src/app/headsTable.tsx @@ -6,6 +6,8 @@ import Image from "next/image" interface HeadState { headId: string status: string + lastUpdatedAtSlotNo: number + lastUpdatedAtBlockNo: number } const HeadsTable = () => { @@ -56,6 +58,8 @@ const HeadsTable = () => { Head ID Status + Last Updated At SlotNo + Last Updated At BlockNo @@ -63,6 +67,8 @@ const HeadsTable = () => { {entry.headId} {entry.status} + {entry.lastUpdatedAtSlotNo} + {entry.lastUpdatedAtBlockNo} ))}