Skip to content

Commit 4cbc0d2

Browse files
panoelevan-gray
authored andcommitted
dashboard: update quorum calculation for testnet
1 parent edc84e3 commit 4cbc0d2

File tree

3 files changed

+29
-13
lines changed

3 files changed

+29
-13
lines changed

dashboard/src/components/Alerts.tsx

+17-6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
Typography,
2424
} from '@mui/material';
2525
import { useMemo } from 'react';
26+
import { Environment, useCurrentEnvironment } from '../contexts/NetworkContext';
2627
import { ChainIdToHeartbeats } from '../hooks/useChainHeartbeats';
2728
import useLatestRelease from '../hooks/useLatestRelease';
2829
import chainIdToName from '../utils/chainIdToName';
@@ -36,8 +37,16 @@ const isLayer2 = (chainId: number) =>
3637
export const getBehindDiffForChain = (chainId: number) =>
3738
isLayer2(chainId) ? BEHIND_DIFF * 2 : BEHIND_DIFF;
3839

39-
export const QUORUM_COUNT = Math.floor((GUARDIAN_SET_3.length * 2) / 3 + 1);
40-
export const QUORUM_LOSS_COUNT = GUARDIAN_SET_3.length - QUORUM_COUNT + 1;
40+
export const getNumGuardians = (environment: Environment) =>
41+
environment === 'mainnet' ? GUARDIAN_SET_3.length : 1;
42+
43+
export function getQuorumCount(environment: Environment): number {
44+
return Math.floor((getNumGuardians(environment) * 2) / 3 + 1);
45+
}
46+
47+
function getQuorumLossCount(environment: Environment): number {
48+
return getNumGuardians(environment) - getQuorumCount(environment) + 1;
49+
}
4150

4251
type AlertEntry = {
4352
severity: AlertColor;
@@ -48,7 +57,8 @@ const alertSeverityOrder: AlertColor[] = ['error', 'warning', 'success', 'info']
4857

4958
function chainDownAlerts(
5059
heartbeats: Heartbeat[],
51-
chainIdsToHeartbeats: ChainIdToHeartbeats
60+
chainIdsToHeartbeats: ChainIdToHeartbeats,
61+
environment: Environment
5262
): AlertEntry[] {
5363
const downChains: { [chainId: string]: string[] } = {};
5464
Object.entries(chainIdsToHeartbeats)
@@ -99,7 +109,7 @@ function chainDownAlerts(
99109
});
100110
});
101111
return Object.entries(downChains).map(([chainId, names]) => ({
102-
severity: names.length >= QUORUM_LOSS_COUNT ? 'error' : 'warning',
112+
severity: names.length >= getQuorumLossCount(environment) ? 'error' : 'warning',
103113
text: `${names.length} guardian${names.length > 1 ? 's' : ''} [${names.join(', ')}] ${
104114
names.length > 1 ? 'are' : 'is'
105115
} down on ${chainIdToName(Number(chainId))} (${chainId})!`,
@@ -124,9 +134,10 @@ function Alerts({
124134
chainIdsToHeartbeats: ChainIdToHeartbeats;
125135
}) {
126136
const latestRelease = useLatestRelease();
137+
const environment = useCurrentEnvironment();
127138
const alerts = useMemo(() => {
128139
const alerts: AlertEntry[] = [
129-
...chainDownAlerts(heartbeats, chainIdsToHeartbeats),
140+
...chainDownAlerts(heartbeats, chainIdsToHeartbeats, environment),
130141
...releaseChecker(latestRelease, heartbeats),
131142
];
132143
return alerts.sort((a, b) =>
@@ -136,7 +147,7 @@ function Alerts({
136147
? 1
137148
: 0
138149
);
139-
}, [latestRelease, heartbeats, chainIdsToHeartbeats]);
150+
}, [latestRelease, heartbeats, chainIdsToHeartbeats, environment]);
140151
const numErrors = useMemo(
141152
() => alerts.filter((alert) => alert.severity === 'error').length,
142153
[alerts]

dashboard/src/components/Chains.tsx

+9-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ import { useCallback, useMemo, useState } from 'react';
2323
import { ChainIdToHeartbeats, HeartbeatInfo } from '../hooks/useChainHeartbeats';
2424
import chainIdToName from '../utils/chainIdToName';
2525
import { CHAIN_INFO_MAP } from '../utils/consts';
26-
import { getBehindDiffForChain, QUORUM_COUNT } from './Alerts';
26+
import { getBehindDiffForChain, getQuorumCount } from './Alerts';
2727
import CollapsibleSection from './CollapsibleSection';
2828
import Table from './Table';
29+
import { Environment, useCurrentEnvironment } from '../contexts/NetworkContext';
2930

3031
const columnHelper = createColumnHelper<HeartbeatInfo>();
3132

@@ -78,11 +79,13 @@ function Chain({
7879
heartbeats,
7980
healthyCount,
8081
conditionalRowStyle,
82+
environment,
8183
}: {
8284
chainId: string;
8385
heartbeats: HeartbeatInfo[];
8486
healthyCount: number;
8587
conditionalRowStyle?: ((a: HeartbeatInfo) => SxProps<Theme> | undefined) | undefined;
88+
environment: Environment;
8689
}) {
8790
const [open, setOpen] = useState(false);
8891
const handleOpen = useCallback(() => {
@@ -112,7 +115,7 @@ function Chain({
112115
variant="determinate"
113116
value={healthyCount === 0 ? 100 : (healthyCount / heartbeats.length) * 100}
114117
color={
115-
healthyCount < QUORUM_COUNT
118+
healthyCount < getQuorumCount(environment)
116119
? 'error'
117120
: healthyCount < heartbeats.length
118121
? 'warning'
@@ -179,6 +182,7 @@ type ChainHelpers = {
179182
};
180183

181184
function Chains({ chainIdsToHeartbeats }: { chainIdsToHeartbeats: ChainIdToHeartbeats }) {
185+
const environment = useCurrentEnvironment();
182186
const {
183187
helpers,
184188
numSuccess,
@@ -208,7 +212,7 @@ function Chains({ chainIdsToHeartbeats }: { chainIdsToHeartbeats: ChainIdToHeart
208212
0
209213
);
210214
if (Number(chainId) !== CHAIN_ID_AURORA)
211-
if (healthyCount < QUORUM_COUNT) {
215+
if (healthyCount < getQuorumCount(environment)) {
212216
numErrors++;
213217
} else if (healthyCount < heartbeats.length) {
214218
numWarnings++;
@@ -224,7 +228,7 @@ function Chains({ chainIdsToHeartbeats }: { chainIdsToHeartbeats: ChainIdToHeart
224228
numWarnings,
225229
numErrors,
226230
};
227-
}, [chainIdsToHeartbeats]);
231+
}, [chainIdsToHeartbeats, environment]);
228232
return (
229233
<CollapsibleSection
230234
header={
@@ -272,6 +276,7 @@ function Chains({ chainIdsToHeartbeats }: { chainIdsToHeartbeats: ChainIdToHeart
272276
heartbeats={chainIdsToHeartbeats[Number(chainId)]}
273277
healthyCount={helpers[Number(chainId)].healthyCount}
274278
conditionalRowStyle={helpers[Number(chainId)].conditionalRowStyle}
279+
environment={environment}
275280
/>
276281
))}
277282
</Box>

dashboard/src/contexts/NetworkContext.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ export const NetworkContextProvider = ({ children }: { children: ReactNode }) =>
108108
return <NetworkContext.Provider value={value}>{children}</NetworkContext.Provider>;
109109
};
110110

111-
export const useNetworkContext = () => {
112-
return useContext(NetworkContext);
113-
};
111+
export const useNetworkContext = () => useContext(NetworkContext);
112+
113+
export const useCurrentEnvironment = () => useContext(NetworkContext).currentNetwork.env;

0 commit comments

Comments
 (0)