-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvotingHelpers.ts
162 lines (145 loc) · 4.06 KB
/
votingHelpers.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import type { Address } from 'viem';
import { HubGovernorAbi, SpokeVoteAggregatorAbi } from '../../../abis';
import { ContractAddresses } from '../../config/addresses';
import { createClients } from '../../config/clients';
import type { VoteType } from '../../config/types';
export const voteOnProposal = async ({
isHub,
proposalId,
voteType,
}: {
isHub: boolean;
proposalId: bigint;
voteType: VoteType;
}) => {
const { ethWallet, eth2Wallet, account } = createClients();
const wallet = isHub ? ethWallet : eth2Wallet;
const contractAddress = isHub
? ContractAddresses.HUB_GOVERNOR
: ContractAddresses.SPOKE_VOTE_AGGREGATOR;
const abi = isHub ? HubGovernorAbi : SpokeVoteAggregatorAbi;
const chain = isHub ? ethWallet.chain : eth2Wallet.chain;
const hash = await wallet.writeContract({
address: contractAddress,
abi,
functionName: 'castVote',
args: [proposalId, voteType],
account,
chain,
});
console.log(
`Voted on proposal ${proposalId} on chain ${chain.name}. Support: ${voteType}. Transaction hash: ${hash}`,
);
return hash;
};
export const getVotingPower = async ({
account,
isHub,
timestamp,
}: {
account: Address;
isHub: boolean;
timestamp: bigint;
}) => {
const { ethClient, eth2Client } = createClients();
console.log(
`Getting voting weight for ${account} at timestamp ${timestamp} on ${
isHub ? 'hub' : 'spoke'
}`,
);
const client = isHub ? ethClient : eth2Client;
if (isHub) {
const result = await client.readContract({
address: ContractAddresses.HUB_GOVERNOR,
abi: HubGovernorAbi,
functionName: 'getVotes',
args: [account, timestamp],
});
return result;
}
const result = await client.readContract({
address: ContractAddresses.SPOKE_VOTE_AGGREGATOR,
abi: SpokeVoteAggregatorAbi,
functionName: 'getVotes',
args: [account, timestamp],
});
return result;
};
export const getVoteWeightWindow = async ({
isHub,
timestamp,
}: {
isHub: boolean;
timestamp: bigint;
}) => {
const { ethClient, eth2Client } = createClients();
const client = isHub ? ethClient : eth2Client;
if (isHub) {
return await client.readContract({
address: ContractAddresses.HUB_GOVERNOR,
abi: HubGovernorAbi,
functionName: 'getVoteWeightWindowLength',
args: [timestamp],
});
}
return await client.readContract({
address: ContractAddresses.SPOKE_VOTE_AGGREGATOR,
abi: SpokeVoteAggregatorAbi,
functionName: 'getVoteWeightWindowLength',
args: [timestamp],
});
};
export const getProposalVotes = async ({
proposalId,
isHub,
}: {
proposalId: bigint;
isHub: boolean;
}): Promise<{
againstVotes: bigint;
forVotes: bigint;
abstainVotes: bigint;
}> => {
const { ethClient, eth2Client } = createClients();
const client = isHub ? ethClient : eth2Client;
const votes = await client.readContract({
address: isHub
? ContractAddresses.HUB_GOVERNOR
: ContractAddresses.SPOKE_VOTE_AGGREGATOR,
abi: isHub ? HubGovernorAbi : SpokeVoteAggregatorAbi,
functionName: 'proposalVotes',
args: [proposalId],
});
// The first element is the proposalId when getting from the SpokeVoteAggregator, so againstVotes is the second element
// Vote length of 3 is the hub
if (votes.length === 3) {
return {
againstVotes: votes[0],
forVotes: votes[1],
abstainVotes: votes[2],
};
}
return {
againstVotes: votes[1],
forVotes: votes[2],
abstainVotes: votes[3],
};
};
export const getVoteStart = async ({ proposalId }: { proposalId: bigint }) => {
const { ethClient } = createClients();
return await ethClient.readContract({
address: ContractAddresses.HUB_GOVERNOR,
abi: HubGovernorAbi,
functionName: 'proposalSnapshot',
args: [proposalId],
});
};
export const getVoteEnd = async ({ proposalId }: { proposalId: bigint }) => {
const { ethClient } = createClients();
return await ethClient.readContract({
address: ContractAddresses.HUB_GOVERNOR,
abi: HubGovernorAbi,
functionName: 'proposalDeadline',
args: [proposalId],
});
};