-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDeployHubContractsBaseImpl.s.sol
148 lines (123 loc) · 6.17 KB
/
DeployHubContractsBaseImpl.s.sol
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
// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.23;
import {Script, stdJson} from "forge-std/Script.sol";
import {Vm} from "forge-std/Vm.sol";
import {ERC20Votes} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";
import {TimelockController} from "@openzeppelin/contracts/governance/TimelockController.sol";
import {HubGovernor} from "src/HubGovernor.sol";
import {HubProposalExtender} from "src/HubProposalExtender.sol";
import {HubVotePool} from "src/HubVotePool.sol";
import {HubProposalMetadata} from "src/HubProposalMetadata.sol";
import {HubMessageDispatcher} from "src/HubMessageDispatcher.sol";
import {HubEvmSpokeAggregateProposer} from "src/HubEvmSpokeAggregateProposer.sol";
import {HubSolanaMessageDispatcher} from "src/HubSolanaMessageDispatcher.sol";
import {HubSolanaSpokeVoteDecoder} from "src/HubSolanaSpokeVoteDecoder.sol";
abstract contract DeployHubContractsBaseImpl is Script {
// This key should not be used for a production deploy. Instead, the `DEPLOYER_PRIVATE_KEY` environment variable
// should be set.
uint256 constant DEFAULT_DEPLOYER_PRIVATE_KEY =
uint256(0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80);
struct DeploymentConfiguration {
uint256 minDelay;
string name;
address token;
uint48 initialVotingDelay;
uint32 initialVotingPeriod;
uint256 initialProposalThreshold;
uint208 initialQuorum;
address wormholeCore;
uint48 voteWeightWindow;
address voteExtenderAdmin;
uint48 voteTimeExtension;
uint48 minimumExtensionTime;
uint8 consistencyLevel;
uint48 initialMaxQueryTimestampOffset;
uint8 solanaTokenDecimals;
}
struct DeployedContracts {
TimelockController timelock;
HubVotePool hubVotePool;
HubGovernor gov;
HubProposalMetadata hubProposalMetadata;
HubMessageDispatcher hubMessageDispatcher;
HubProposalExtender extender;
HubEvmSpokeAggregateProposer hubEvmSpokeAggregateProposer;
HubSolanaMessageDispatcher hubSolanaMessageDispatcher;
HubSolanaSpokeVoteDecoder hubSolanaSpokeVoteDecoder;
}
error InvalidAddressConfiguration();
function _getDeploymentConfiguration() internal virtual returns (DeploymentConfiguration memory);
function _deploymentWallet() internal virtual returns (Vm.Wallet memory) {
uint256 deployerPrivateKey = vm.envOr("DEPLOYER_PRIVATE_KEY", DEFAULT_DEPLOYER_PRIVATE_KEY);
Vm.Wallet memory wallet = vm.createWallet(deployerPrivateKey);
if (deployerPrivateKey == DEFAULT_DEPLOYER_PRIVATE_KEY) revert InvalidAddressConfiguration();
return wallet;
}
function run() public virtual returns (DeployedContracts memory) {
DeploymentConfiguration memory config = _getDeploymentConfiguration();
Vm.Wallet memory wallet = _deploymentWallet();
vm.startBroadcast(wallet.privateKey);
// Deploy timelock for governor.
TimelockController timelock =
new TimelockController(config.minDelay, new address[](0), new address[](0), wallet.addr);
// Deploy proposal extender to be used in the HubGovernor.
HubProposalExtender extender = new HubProposalExtender(
config.voteExtenderAdmin, config.voteTimeExtension, address(timelock), wallet.addr, config.minimumExtensionTime
);
// Deploy `HubVotePool` which will revceive cross-chain votes.
HubVotePool hubVotePool = new HubVotePool(config.wormholeCore, address(0), wallet.addr);
HubGovernor.ConstructorParams memory hubGovernorParams = HubGovernor.ConstructorParams({
name: config.name,
token: ERC20Votes(config.token),
timelock: timelock,
initialVotingDelay: config.initialVotingDelay,
initialVotingPeriod: config.initialVotingPeriod,
initialProposalThreshold: config.initialProposalThreshold,
initialQuorum: config.initialQuorum,
hubVotePool: address(hubVotePool),
wormholeCore: config.wormholeCore,
governorProposalExtender: address(extender),
initialVoteWeightWindow: config.voteWeightWindow
});
// Deploy Wormhole governor
HubGovernor gov = new HubGovernor(hubGovernorParams);
// Set the governor on the `HubVotePool`
hubVotePool.setGovernor(address(gov));
// Deploy the vote decoder for Solana queries
HubSolanaSpokeVoteDecoder hubSolanaSpokeVoteDecoder =
new HubSolanaSpokeVoteDecoder(config.wormholeCore, address(hubVotePool), config.solanaTokenDecimals);
// Register Solana vote decoder, 5 is the constant for QT_SOL_PDA.
hubVotePool.registerQueryType(5, address(hubSolanaSpokeVoteDecoder));
// Deploy hub metadata contract
HubProposalMetadata hubProposalMetadata = new HubProposalMetadata(address(gov));
// Deploy the Evm hub dispatcher
HubMessageDispatcher hubMessageDispatcher =
new HubMessageDispatcher(address(timelock), config.wormholeCore, config.consistencyLevel);
// Deploy the Solana hub dispatcher
HubSolanaMessageDispatcher hubSolanaMessageDispatcher =
new HubSolanaMessageDispatcher(address(timelock), config.wormholeCore, config.consistencyLevel);
// Deploy the evm aggregate proposer
HubEvmSpokeAggregateProposer hubEvmSpokeAggregateProposer =
new HubEvmSpokeAggregateProposer(config.wormholeCore, address(gov), config.initialMaxQueryTimestampOffset);
extender.initialize(payable(gov));
timelock.grantRole(timelock.PROPOSER_ROLE(), address(gov));
timelock.grantRole(timelock.EXECUTOR_ROLE(), address(gov));
timelock.grantRole(timelock.CANCELLER_ROLE(), address(gov));
timelock.grantRole(timelock.DEFAULT_ADMIN_ROLE(), address(timelock));
timelock.renounceRole(timelock.DEFAULT_ADMIN_ROLE(), wallet.addr);
// Deploy HubEvmSpokeAggregateProposer
HubEvmSpokeAggregateProposer hubEvmSpokeAggregateProposer =
new HubEvmSpokeAggregateProposer(config.wormholeCore, address(gov), config.initialMaxQueryTimestampOffset);
return DeployedContracts({
timelock: timelock,
extender: extender,
gov: gov,
hubProposalMetadata: hubProposalMetadata,
hubMessageDispatcher: hubMessageDispatcher,
hubVotePool: hubVotePool,
hubEvmSpokeAggregateProposer: hubEvmSpokeAggregateProposer,
hubSolanaMessageDispatcher: hubSolanaMessageDispatcher,
hubSolanaSpokeVoteDecoder: hubSolanaSpokeVoteDecoder
});
}
}