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

fix: match quorum formula based on contracts #1065

Merged
merged 1 commit into from
Dec 19, 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
5 changes: 3 additions & 2 deletions apps/ui/src/components/ProposalExecutionsList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup lang="ts">
import { getGenericExplorerUrl } from '@/helpers/explorer';
import { getProposalCurrentQuorum } from '@/helpers/quorum';
import { buildBatchFile } from '@/helpers/safe/ build';
import { getExecutionName } from '@/helpers/ui';
import { shorten, toBigIntOrNumber } from '@/helpers/utils';
Expand Down Expand Up @@ -101,8 +102,8 @@ function downloadExecution(execution: ProposalExecution) {
proposal.executions &&
proposal.executions.length > 0 &&
proposal.scores.length > 0 &&
toBigIntOrNumber(proposal.scores_total) >=
toBigIntOrNumber(proposal.quorum) &&
getProposalCurrentQuorum(proposal.network, proposal) >
proposal.quorum &&
toBigIntOrNumber(proposal.scores[0]) >
toBigIntOrNumber(proposal.scores[1]) &&
proposal.has_execution_window_opened
Expand Down
32 changes: 31 additions & 1 deletion apps/ui/src/helpers/quorum.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
import { describe, expect, it } from 'vitest';
import { formatQuorum } from './quorum';
import { formatQuorum, getProposalCurrentQuorum } from './quorum';

describe('getProposalCurrentQuorum', () => {
it('should only use for and abstain votes for onchain spaces', () => {
const currentQuorum = getProposalCurrentQuorum('eth', {
scores: [11, 20, 100],
scores_total: 131
});

expect(currentQuorum).toBe(111);
});

it('should use total score for offchain spaces', () => {
const currentQuorum = getProposalCurrentQuorum('s', {
scores: [11, 20, 100],
scores_total: 131
});

expect(currentQuorum).toBe(131);
});

it('should only use against votes for rejection quorum', () => {
const currentQuorum = getProposalCurrentQuorum('s', {
scores: [11, 20, 100],
scores_total: 131,
quorum_type: 'rejection'
});

expect(currentQuorum).toBe(20);
});
});

describe('formatQuorum', () => {
it('should format using 3 significant digits', () => {
Expand Down
28 changes: 21 additions & 7 deletions apps/ui/src/helpers/quorum.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
import { Proposal } from '@/types';
import { offchainNetworks } from '@/networks';
import { NetworkID, Proposal } from '@/types';

const REJECTION_QUORUM_CHOICE_INDEX = 1;

export function quorumProgress(proposal: Proposal): number {
const totalScore =
proposal.quorum_type === 'rejection'
? proposal.scores[REJECTION_QUORUM_CHOICE_INDEX] ?? 0
: proposal.scores_total;
export function getProposalCurrentQuorum(
networkId: NetworkID,
proposal: {
scores: number[];
scores_total: number;
quorum_type?: string;
}
) {
if (offchainNetworks.includes(networkId)) {
return proposal.quorum_type === 'rejection'
? Number(proposal.scores[REJECTION_QUORUM_CHOICE_INDEX] ?? 0)
: Number(proposal.scores_total);
}

// Only For and Abstain votes are counted towards quorum progress in SX spaces.
return Number(proposal.scores[0]) + Number(proposal.scores[2]);
}

return totalScore / proposal.quorum;
export function quorumProgress(proposal: Proposal): number {
return getProposalCurrentQuorum(proposal.network, proposal) / proposal.quorum;
}

export function quorumChoiceProgress(
Expand Down
11 changes: 8 additions & 3 deletions apps/ui/src/networks/common/graphqlApi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
InMemoryCache
} from '@apollo/client/core';
import { CHAIN_IDS } from '@/helpers/constants';
import { getProposalCurrentQuorum } from '@/helpers/quorum';
import { getNames } from '@/helpers/stamp';
import { clone, compareAddresses } from '@/helpers/utils';
import { getNetwork } from '@/networks';
Expand Down Expand Up @@ -57,20 +58,24 @@ type ApiOptions = {
};

function getProposalState(
networkId: NetworkID,
proposal: ApiProposal,
current: number
): ProposalState {
// we have broken types, we should unify, this is quick fix for Nimbora PR
// those values are actually strings
// https://github.com/snapshot-labs/sx-monorepo/pull/529/files#r1691071502
const quorum = BigInt(proposal.quorum);
const scoresTotal = BigInt(proposal.scores_total);
const currentQuorum = getProposalCurrentQuorum(networkId, {
scores: [proposal.scores_1, proposal.scores_2, proposal.scores_3],
scores_total: proposal.scores_total
});
const scoresFor = BigInt(proposal.scores_1);
const scoresAgainst = BigInt(proposal.scores_2);

if (proposal.executed) return 'executed';
if (proposal.max_end <= current) {
if (scoresTotal < quorum) return 'rejected';
if (currentQuorum < quorum) return 'rejected';
return scoresFor > scoresAgainst ? 'passed' : 'rejected';
}
if (proposal.start > current) return 'pending';
Expand Down Expand Up @@ -294,7 +299,7 @@ function formatProposal(
)
? proposal.max_end <= current
: proposal.min_end <= current,
state: getProposalState(proposal, current),
state: getProposalState(networkId, proposal, current),
network: networkId,
privacy: null,
quorum: +proposal.quorum,
Expand Down
15 changes: 12 additions & 3 deletions apps/ui/src/networks/offchain/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
} from '@apollo/client/core';
import { CHAIN_IDS } from '@/helpers/constants';
import { parseOSnapTransaction } from '@/helpers/osnap';
import { getProposalCurrentQuorum } from '@/helpers/quorum';
import { getNames } from '@/helpers/stamp';
import { clone } from '@/helpers/utils';
import {
Expand Down Expand Up @@ -70,9 +71,17 @@ const DELEGATION_STRATEGIES = [

const DELEGATE_REGISTRY_URL = 'https://delegate-registry-api.snapshot.box';

function getProposalState(proposal: ApiProposal): ProposalState {
function getProposalState(
networkId: NetworkID,
proposal: ApiProposal
): ProposalState {
if (proposal.state === 'closed') {
if (proposal.scores_total < proposal.quorum) return 'rejected';
const currentQuorum = getProposalCurrentQuorum(networkId, {
scores: proposal.scores,
scores_total: proposal.scores_total
});

if (currentQuorum < proposal.quorum) return 'rejected';
return proposal.type !== 'basic' || proposal.scores[0] > proposal.scores[1]
? 'passed'
: 'rejected';
Expand Down Expand Up @@ -256,7 +265,7 @@ function formatProposal(proposal: ApiProposal, networkId: NetworkID): Proposal {
];
}

const state = getProposalState(proposal);
const state = getProposalState(networkId, proposal);

return {
id: proposal.id,
Expand Down