From 3ab0a84d34e989a8cb5ce323c78acd076dc72c16 Mon Sep 17 00:00:00 2001 From: Roshaan Siddiqui Date: Mon, 19 Jun 2023 10:39:58 -0500 Subject: [PATCH] DPLT-1014 feat: add historical block processing column (#104) --- frontend/widgets/src/QueryApi.IndexerStatus.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/widgets/src/QueryApi.IndexerStatus.jsx b/frontend/widgets/src/QueryApi.IndexerStatus.jsx index c9fa8c854..492f650e2 100644 --- a/frontend/widgets/src/QueryApi.IndexerStatus.jsx +++ b/frontend/widgets/src/QueryApi.IndexerStatus.jsx @@ -152,6 +152,7 @@ const indexerStateDoc = ` status function_name current_block_height + current_historical_block_height } indexer_state_aggregate(where: {function_name: {_eq: "${accountId}/${indexer_name}"}}) { aggregate { @@ -262,6 +263,7 @@ return ( Function Name Current Block Height + Current Historical Block Height Status @@ -270,6 +272,7 @@ return ( {x.function_name} {x.current_block_height} + {x.current_historical_block_height} {x.status} ))}