-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddresses.ts
100 lines (86 loc) · 3.03 KB
/
addresses.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
import { readFileSync } from 'node:fs';
import { join } from 'node:path';
import type { Address } from 'viem';
// Chain IDs for the different networks
const CHAIN_IDS = {
HUB: 1337, // EthDevnet1 (Hub)
SPOKE: 1397, // EthDevnet2 (Spoke)
} as const;
function getDeploymentAddresses(
deploymentFile: string,
chainId: number = CHAIN_IDS.HUB,
) {
const projectRoot = join(__dirname, '..', '..', '..', '..');
const artifactPath = join(
projectRoot,
'example-cross-chain-governance',
'evm',
'broadcast',
deploymentFile,
chainId.toString(),
'run-latest.json',
);
try {
console.log('Attempting to read deployment from:', artifactPath);
const deployment = JSON.parse(readFileSync(artifactPath, 'utf-8'));
const addresses: Record<string, Address> = {};
for (const tx of deployment.transactions) {
if (tx.contractAddress) {
addresses[tx.contractName] = tx.contractAddress as Address;
}
}
return addresses;
} catch (error) {
if ((error as any).code === 'ENOENT') {
console.error(`Deployment file not found: ${artifactPath}`);
console.error(
'Make sure you have run the deployments for both hub and spoke chains',
);
console.error(
`Expected chainIds: Hub=${CHAIN_IDS.HUB}, Spoke=${CHAIN_IDS.SPOKE}`,
);
console.error(`Current directory: ${__dirname}`);
console.error(`Project root: ${projectRoot}`);
}
throw error;
}
}
// Get Hub contract addresses from EthDevnet1 deployment
const hubAddresses = getDeploymentAddresses(
'DeployHubContractsEthDevnet1.sol',
CHAIN_IDS.HUB,
);
// Get Spoke contract addresses from EthDevnet2 deployment
const spokeAddresses = getDeploymentAddresses(
'DeploySpokeContractsEthDevnet2.sol',
CHAIN_IDS.SPOKE,
);
const ContractAddressesEnum = {
// Hub contracts (deployed on EthDevnet1)
HUB_EVM_SPOKE_AGGREGATE_PROPOSER: hubAddresses.HubEvmSpokeAggregateProposer,
HUB_GOVERNOR: hubAddresses.HubGovernor,
HUB_MESSAGE_DISPATCHER: hubAddresses.HubMessageDispatcher,
HUB_VOTE_POOL: hubAddresses.HubVotePool,
TOKEN: hubAddresses.ERC20VotesFake,
TIMELOCK_CONTROLLER: hubAddresses.TimelockController,
HUB_PROPOSAL_METADATA: hubAddresses.HubProposalMetadata,
HUB_PROPOSAL_EXTENDER: hubAddresses.HubProposalExtender,
HUB_SOLANA_MESSAGE_DISPATCHER: hubAddresses.HubSolanaMessageDispatcher,
HUB_SOLANA_SPOKE_VOTE_DECODER: hubAddresses.HubSolanaSpokeVoteDecoder,
// Spoke contracts (deployed on EthDevnet2)
SPOKE_VOTE_AGGREGATOR: spokeAddresses.SpokeVoteAggregator,
SPOKE_MESSAGE_EXECUTOR: spokeAddresses.SpokeMessageExecutor,
SPOKE_METADATA_COLLECTOR: spokeAddresses.SpokeMetadataCollector,
} as const;
type AddressesType = typeof ContractAddressesEnum;
type AddressKeys = keyof AddressesType;
export type Addresses = {
[K in AddressKeys]: Address;
};
// Validate all addresses are defined
for (const [key, value] of Object.entries(ContractAddressesEnum)) {
if (!value) {
throw new Error(`Missing address for ${key}`);
}
}
export { ContractAddressesEnum as ContractAddresses };