-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.ts
179 lines (150 loc) · 5.21 KB
/
setup.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
175
176
177
178
179
import { ERC20VotesFakeAbi } from 'abis';
import { getAddress } from 'viem';
import { addressStore } from './config/addresses';
import type { DeployedAddresses } from './config/addresses';
import { ETH2_DEVNET_WORMHOLE_CHAIN_ID } from './config/chains';
import { createClients } from './config/clients';
import { mineToTimestamp, syncTime } from './helpers';
import {
deployHubContracts,
deploySpokeContracts,
} from './helpers/deployment/deployContracts';
import { loadDeploymentCache } from './helpers/deployment/deploymentCache';
import {
getWhitelistedProposer,
handleRegisterSpokeOnAggProposer,
handleRegisterSpokeOnHubVotePool,
handleTransferOwnership,
isSpokeRegisteredOnAggProposer,
isSpokeRegisteredOnHubVotePool,
registerWhitelistedProposer,
} from './helpers/governance/registrationHelpers';
import { delegate, mintTokens } from './helpers/token/tokenHelpers';
export async function setupTestEnvironment() {
console.log('\n🚀 Starting test environment setup...');
// Load cached deployment
const cachedAddresses = loadDeploymentCache();
if (cachedAddresses) {
// Use cached addresses
for (const [key, value] of Object.entries(cachedAddresses)) {
addressStore.setAddress(key as keyof DeployedAddresses, value);
}
}
await handleDeployContracts();
if (await isSetupComplete()) {
return;
}
const { ethClient, ethWallet } = createClients();
// Mint tokens
const TOKEN_AMOUNT = 1_000_000_000_000_000_000_000_000n; // 1M tokens
await mintTokensOnBothChains(TOKEN_AMOUNT);
// Delegate votes
await delegateOnBothChains();
await activateDelegation();
await Promise.all([
handleRegisterSpokeOnAggProposer({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
}),
handleTransferOwnership({
contractAddress: addressStore.getAddress('HUB_VOTE_POOL'),
newOwner: addressStore.getAddress('TIMELOCK_CONTROLLER'),
wallet: ethWallet,
client: ethClient,
}),
]);
await handleRegisterSpokeOnHubVotePool({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
});
await registerWhitelistedProposer({
proposerAddress: addressStore.getAddress(
'HUB_EVM_SPOKE_AGGREGATE_PROPOSER',
),
});
await syncTime();
console.log('\n🎉 Test environment setup completed!\n');
}
const activateDelegation = async () => {
console.log('\n⛓️ Mining blocks to activate delegation...');
const { ethClient, eth2Client, account } = createClients();
const [hubBlock, spokeBlock] = await Promise.all([
ethClient.getBlock(),
eth2Client.getBlock(),
]);
const ONE_HOUR_IN_SECONDS = 3600n;
const newTimestamp =
Math.max(Number(hubBlock.timestamp), Number(spokeBlock.timestamp)) +
Number(ONE_HOUR_IN_SECONDS);
// Mine blocks to the new timestamp
await mineToTimestamp({
client: ethClient,
timestamp: BigInt(newTimestamp),
});
// Verify voting power
const votingPower = await ethClient.readContract({
address: addressStore.getAddress('HUB_VOTING_TOKEN'),
abi: ERC20VotesFakeAbi,
functionName: 'getVotes',
args: [account.address],
});
console.log(` Voting power: ${votingPower}`);
};
const delegateOnBothChains = async () => {
console.log('\n👥 Delegating votes...');
const { account } = createClients();
await Promise.all([
delegate({ delegatee: account.address, isHub: true }),
delegate({ delegatee: account.address, isHub: false }),
]);
};
const mintTokensOnBothChains = async (amount: bigint) => {
console.log('\n💰 Minting tokens...');
const { account } = createClients();
await Promise.all([
mintTokens({ recipientAddress: account.address, amount, isHub: true }),
mintTokens({ recipientAddress: account.address, amount, isHub: false }),
]);
};
const handleDeployContracts = async () => {
// Only try to load cache if not in CI
const cachedAddresses = !process.env.CI ? loadDeploymentCache() : null;
if (cachedAddresses) {
// Use cached addresses
for (const [key, value] of Object.entries(cachedAddresses)) {
addressStore.setAddress(key as keyof DeployedAddresses, value);
}
return;
}
// Deploy new contracts
await deployHubContracts();
await deploySpokeContracts();
// Save deployment cache (skip in CI)
if (!process.env.CI) {
saveDeploymentCache(addressStore.getAllAddresses());
}
};
const isSetupComplete = async () => {
console.log('\n🔍 Checking if setup is complete...');
const whitelistedProposer = await getWhitelistedProposer();
const isWhitelistedProposerCorrect =
getAddress(whitelistedProposer) ===
getAddress(addressStore.getAddress('HUB_EVM_SPOKE_AGGREGATE_PROPOSER'));
const isSpokeRegisteredOnAggProposerCorrect =
await isSpokeRegisteredOnAggProposer({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
});
const isSpokeRegisteredOnHubVotePoolCorrect =
await isSpokeRegisteredOnHubVotePool({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
spokeAddress: addressStore.getAddress('SPOKE_VOTE_AGGREGATOR'),
});
const isComplete =
isWhitelistedProposerCorrect &&
isSpokeRegisteredOnAggProposerCorrect &&
isSpokeRegisteredOnHubVotePoolCorrect;
if (isComplete) {
console.log('✅ Setup is already complete');
} else {
console.log('⚠️ Setup is incomplete');
}
return isComplete;
};