-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistrationHelpers.ts
174 lines (153 loc) · 4.39 KB
/
registrationHelpers.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
163
164
165
166
167
168
169
170
171
172
173
174
import { type Address, encodeFunctionData, zeroAddress } from 'viem';
import {
HubEvmSpokeAggregateProposerAbi,
HubGovernorAbi,
HubVotePoolAbi,
} from '../../../abis';
import { ContractAddresses } from '../../config/addresses';
import { createClients } from '../../config/clients';
import {
createAndExecuteProposal,
createProposalData,
} from './proposalHelpers';
export const getWhitelistedProposer = async () => {
const { ethClient } = createClients();
return await ethClient.readContract({
address: ContractAddresses.HUB_GOVERNOR,
abi: HubGovernorAbi,
functionName: 'whitelistedProposer',
});
};
export const isSpokeRegisteredOnAggProposer = async ({
chainId,
}: {
chainId: number;
}) => {
const { ethClient } = createClients();
const spokeAddress = await ethClient.readContract({
address: ContractAddresses.HUB_EVM_SPOKE_AGGREGATE_PROPOSER,
abi: HubEvmSpokeAggregateProposerAbi,
functionName: 'registeredSpokes',
args: [chainId],
});
return spokeAddress === ContractAddresses.SPOKE_VOTE_AGGREGATOR;
};
export const handleRegisterSpokeOnAggProposer = async ({
chainId,
}: {
chainId: number;
}) => {
const isRegistered = await isSpokeRegisteredOnAggProposer({ chainId });
if (isRegistered) {
return;
}
return await registerSpokeOnAggProposer({
chainId,
spokeAddress: ContractAddresses.SPOKE_VOTE_AGGREGATOR,
});
};
const registerSpokeOnAggProposer = async ({
chainId,
spokeAddress,
}: {
chainId: number;
spokeAddress: Address;
}) => {
const { ethClient, ethWallet } = createClients();
await ethClient.setBalance({
address: ContractAddresses.HUB_GOVERNOR,
value: 1000000000000000000000000n,
});
// Owner of the HubEvmSpokeAggregateProposer
await ethClient.impersonateAccount({
address: ContractAddresses.HUB_GOVERNOR,
});
const hash = await ethWallet.writeContract({
account: ContractAddresses.HUB_GOVERNOR,
address: ContractAddresses.HUB_EVM_SPOKE_AGGREGATE_PROPOSER,
abi: HubEvmSpokeAggregateProposerAbi,
functionName: 'registerSpoke',
args: [chainId, spokeAddress],
});
await ethClient.stopImpersonatingAccount({
address: ContractAddresses.HUB_GOVERNOR,
});
console.log(
`Registered spoke for chain ${chainId} at address ${spokeAddress}. Transaction hash: ${hash}`,
);
};
export const handleRegisterSpokeOnHubVotePool = async ({
chainId,
}: {
chainId: number;
}) => {
const isRegistered = await isSpokeRegisteredOnHubVotePool({ chainId });
if (isRegistered) {
return;
}
return await registerSpokeOnHubVotePool({
chainId,
spokeAddress: ContractAddresses.SPOKE_VOTE_AGGREGATOR,
});
};
export const isSpokeRegisteredOnHubVotePool = async ({
chainId,
}: {
chainId: number;
}) => {
const { ethClient } = createClients();
const timestamp = (await ethClient.getBlock()).timestamp;
const spokeAddress = await ethClient.readContract({
address: ContractAddresses.HUB_VOTE_POOL,
abi: HubVotePoolAbi,
functionName: 'getSpoke',
args: [chainId, timestamp],
});
return spokeAddress !== zeroAddress;
};
export const registerSpokeOnHubVotePool = async ({
chainId,
spokeAddress,
}: {
chainId: number;
spokeAddress: Address;
}) => {
const registerSpokeCalldata = encodeFunctionData({
abi: HubVotePoolAbi,
functionName: 'registerSpoke',
args: [chainId, spokeAddress],
});
const proposalData = createProposalData({
targets: [ContractAddresses.HUB_VOTE_POOL],
values: [0n],
calldatas: [registerSpokeCalldata],
description: `Register spoke for chain ${chainId} at address ${spokeAddress}`,
});
const proposalId = await createAndExecuteProposal(proposalData);
console.log(
`Registered spoke for chain ${chainId} at address ${spokeAddress}. Proposal ID: ${proposalId}`,
);
return proposalId;
};
export async function registerWhitelistedProposer({
proposerAddress,
}: {
proposerAddress: Address;
}) {
const proposalData = createProposalData({
targets: [ContractAddresses.HUB_GOVERNOR],
values: [0n],
calldatas: [
encodeFunctionData({
abi: HubGovernorAbi,
functionName: 'setWhitelistedProposer',
args: [proposerAddress],
}),
],
description: `Set whitelisted proposer to ${proposerAddress}`,
});
const proposalId = await createAndExecuteProposal(proposalData);
console.log(
`Set whitelisted proposer to ${proposerAddress}. Proposal ID: ${proposalId}`,
);
}