From b3b3279345ec95cfc5ac24d92e1d57bb5f147f1f Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 9 Mar 2023 14:45:45 +0000 Subject: [PATCH 1/4] fix gateway click thorough from gateway version field --- explorer/src/pages/Gateways/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/explorer/src/pages/Gateways/index.tsx b/explorer/src/pages/Gateways/index.tsx index 5c52f4a5b3..77e9e04fa2 100644 --- a/explorer/src/pages/Gateways/index.tsx +++ b/explorer/src/pages/Gateways/index.tsx @@ -153,9 +153,9 @@ export const PageGateways: FCWithChildren = () => { renderCell: (params: GridRenderCellParams) => ( {params.value} From 8ae2451340c534b82764ecba30a3b04db0fcf757 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 9 Mar 2023 16:28:30 +0000 Subject: [PATCH 2/4] add y-axis label --- explorer/src/pages/GatewayDetail/index.tsx | 7 ++++++- explorer/src/pages/MixnodeDetail/index.tsx | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/explorer/src/pages/GatewayDetail/index.tsx b/explorer/src/pages/GatewayDetail/index.tsx index cad23ad16f..3382947512 100644 --- a/explorer/src/pages/GatewayDetail/index.tsx +++ b/explorer/src/pages/GatewayDetail/index.tsx @@ -111,7 +111,12 @@ const PageGatewayDetailsWithState = ({ selectedGateway }: { selectedGateway: Gat {uptimeStory && ( {uptimeStory.error && } - + )} diff --git a/explorer/src/pages/MixnodeDetail/index.tsx b/explorer/src/pages/MixnodeDetail/index.tsx index c324f5a0f0..83a730f4fa 100644 --- a/explorer/src/pages/MixnodeDetail/index.tsx +++ b/explorer/src/pages/MixnodeDetail/index.tsx @@ -140,7 +140,12 @@ const PageMixnodeDetailWithState: FCWithChildren = () => { {uptimeStory && ( {uptimeStory.error && } - + )} From e69b05693ab56cecbcf4e95cf5d7e318a7323646 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 9 Mar 2023 16:30:58 +0000 Subject: [PATCH 3/4] switch avg and routing score table positions --- .../src/components/MixNodes/Economics/Columns.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/explorer/src/components/MixNodes/Economics/Columns.ts b/explorer/src/components/MixNodes/Economics/Columns.ts index c3ac85baaf..b2115c0749 100644 --- a/explorer/src/components/MixNodes/Economics/Columns.ts +++ b/explorer/src/components/MixNodes/Economics/Columns.ts @@ -36,16 +36,16 @@ export const EconomicsInfoColumns: ColumnsType[] = [ tooltipInfo: 'Monthly operational cost of running this node. This cost is set by the operator and it influences how the rewards are split between the operator and delegators.', }, - { - field: 'avgUptime', - title: 'Avg. Score', - width: '10%', - tooltipInfo: "Mixnode's average routing score in the last 24 hour", - }, { field: 'nodePerformance', title: 'Routing Score', + width: '10%', tooltipInfo: "Mixnode's most recent score (measured in the last 15 minutes). Routing score is relative to that of the network. Each time a gateway is tested, the test packets have to go through the full path of the network (gateway + 3 nodes). If a node in the path drop packets it will affect the score of the gateway and other nodes in the test.", }, + { + field: 'avgUptime', + title: 'Avg. Score', + tooltipInfo: "Mixnode's average routing score in the last 24 hour", + }, ]; From 5f56b3eeeac39d306473a29e0cc9a3dd5210f70c Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 9 Mar 2023 16:34:22 +0000 Subject: [PATCH 4/4] add bond % tooltip --- explorer/src/pages/MixnodeDetail/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/explorer/src/pages/MixnodeDetail/index.tsx b/explorer/src/pages/MixnodeDetail/index.tsx index 83a730f4fa..288c1bd8c0 100644 --- a/explorer/src/pages/MixnodeDetail/index.tsx +++ b/explorer/src/pages/MixnodeDetail/index.tsx @@ -42,6 +42,7 @@ const columns: ColumnsType[] = [ field: 'self_percentage', width: '10%', title: 'Bond %', + tooltipInfo: "Percentage of the operator's bond to the total stake on the node", }, {