-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.ts
60 lines (52 loc) · 2.02 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
import { ContractAddresses } from './config/addresses';
import { ETH2_DEVNET_WORMHOLE_CHAIN_ID } from './config/chains';
import { createClients } from './config/clients';
import { syncTime } from './helpers';
import {
handleRegisterSpokeOnAggProposer,
handleRegisterSpokeOnHubVotePool,
registerWhitelistedProposer,
} from './helpers/governance/registrationHelpers';
import { delegate, mintTokens } from './helpers/token/tokenHelpers';
export async function setupTestEnvironment() {
const { ethClient, eth2Client, account } = createClients();
// 1. Ensure both chains are at the same block height
const hubBlock = await ethClient.getBlockNumber();
const spokeBlock = await eth2Client.getBlockNumber();
const targetBlock = Math.max(Number(hubBlock), Number(spokeBlock));
if (hubBlock < targetBlock)
await ethClient.mine({ blocks: targetBlock - Number(hubBlock) });
if (spokeBlock < targetBlock)
await eth2Client.mine({ blocks: targetBlock - Number(spokeBlock) });
// 2. Mint tokens for the test account on both chains
const tokenAmount = 1000000000000000000000n; // 1000 tokens
await mintTokens({
recipientAddress: account.address,
amount: tokenAmount,
isHub: true,
});
await mintTokens({
recipientAddress: account.address,
amount: tokenAmount,
isHub: false,
});
// 3. Delegate tokens to self
await delegate({ delegatee: account.address, isHub: true });
await delegate({ delegatee: account.address, isHub: false });
// 4. Register spoke on hub
await handleRegisterSpokeOnAggProposer({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
});
await handleRegisterSpokeOnHubVotePool({
chainId: ETH2_DEVNET_WORMHOLE_CHAIN_ID,
});
// 5. Register whitelisted proposer (HubEvmSpokeAggregateProposer)
await registerWhitelistedProposer({
proposerAddress: ContractAddresses.HUB_EVM_SPOKE_AGGREGATE_PROPOSER,
});
await syncTime();
console.log('Test environment setup completed');
}
export async function teardownTestEnvironment() {
console.log('Test environment teardown completed');
}