Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update distributed term pools and add an important message #171

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/xgov-dapp/src/features/status/InformationBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ function InformationBox() {
return (
<Box className="bg-white flex rounded-xl px-4 py-6">
<div className="w-full">
<Typography className="my-3">
<strong>*** IMPORTANT UPDATE ***</strong>
</Typography>
<Typography className="my-3">
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.
</Typography>
<Typography className="mb-3">
<strong>Voting Sessions</strong>
</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/xgov-dapp/src/features/status/TermPoolsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
Loading