From 4971f86ea889218f043c8efa4e274391d576b0c2 Mon Sep 17 00:00:00 2001 From: Michael Feher Date: Mon, 21 Oct 2024 17:25:20 -0400 Subject: [PATCH] chore: update distributed term pools and add an important message --- src/xgov-dapp/src/features/status/InformationBox.tsx | 8 ++++++++ src/xgov-dapp/src/features/status/TermPoolsTable.tsx | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/xgov-dapp/src/features/status/InformationBox.tsx b/src/xgov-dapp/src/features/status/InformationBox.tsx index aa74b10..c022390 100644 --- a/src/xgov-dapp/src/features/status/InformationBox.tsx +++ b/src/xgov-dapp/src/features/status/InformationBox.tsx @@ -4,6 +4,14 @@ function InformationBox() { return (
+ + *** IMPORTANT UPDATE *** + + + GP12 Voting Measure 1 established a new xGov enrolment methodology for use when we relaunch the xGov platform later this year. + Consequently, there was no need to keep Algo locked in Term Pools 2, 3 and 4. All funds were distributed to eligible xGovs on 9 + October 2024, and Term Pools 2, 3, and 4 are now closed. + Voting Sessions diff --git a/src/xgov-dapp/src/features/status/TermPoolsTable.tsx b/src/xgov-dapp/src/features/status/TermPoolsTable.tsx index 98b7e45..f58f9fb 100644 --- a/src/xgov-dapp/src/features/status/TermPoolsTable.tsx +++ b/src/xgov-dapp/src/features/status/TermPoolsTable.tsx @@ -8,7 +8,7 @@ interface TermPoolsTableProps { isLoading: boolean } // Indexes of the TermPoll which have been distributed -const DISTRIBUTED_TERM_POOLS = [0] +const DISTRIBUTED_TERM_POOLS = [0, 1, 2, 3] function indexColor(idx: number): string { return DISTRIBUTED_TERM_POOLS.includes(idx) ? 'bg-green-light' : 'bg-white' }