-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathConfigureWormholeNtt.s.sol
101 lines (87 loc) · 3.71 KB
/
ConfigureWormholeNtt.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
// SPDX-License-Identifier: Apache 2
pragma solidity >=0.8.8 <0.9.0;
import {console2} from "forge-std/Script.sol";
import {stdJson} from "forge-std/StdJson.sol";
import "../src/interfaces/INttManager.sol";
import "../src/interfaces/IWormholeTransceiver.sol";
import "../src/interfaces/IOwnableUpgradeable.sol";
import {ParseNttConfig} from "./helpers/ParseNttConfig.sol";
import {WormholeTransceiver} from "../src/Transceiver/WormholeTransceiver/WormholeTransceiver.sol";
contract ConfigureWormholeNtt is ParseNttConfig {
using stdJson for string;
struct ConfigParams {
uint16 wormholeChainId;
}
function _readEnvVariables() internal view returns (ConfigParams memory params) {
// Chain ID.
params.wormholeChainId = uint16(vm.envUint("RELEASE_WORMHOLE_CHAIN_ID"));
require(params.wormholeChainId != 0, "Invalid chain ID");
}
function configureWormholeTransceiver(
IWormholeTransceiver wormholeTransceiver,
ChainConfig[] memory config,
ConfigParams memory params
) internal {
for (uint256 i = 0; i < config.length; i++) {
ChainConfig memory targetConfig = config[i];
if (targetConfig.chainId == params.wormholeChainId) {
continue;
} else {
// Set relayer.
if (targetConfig.isWormholeRelayingEnabled) {
wormholeTransceiver.setIsWormholeRelayingEnabled(targetConfig.chainId, true);
console2.log("Wormhole relaying enabled for chain", targetConfig.chainId);
} else if (targetConfig.isSpecialRelayingEnabled) {
wormholeTransceiver.setIsSpecialRelayingEnabled(targetConfig.chainId, true);
console2.log("Special relaying enabled for chain", targetConfig.chainId);
}
// Set peer.
wormholeTransceiver.setWormholePeer(
targetConfig.chainId, targetConfig.wormholeTransceiver
);
console2.log("Wormhole peer set for chain", targetConfig.chainId);
// Set EVM chain.
if (targetConfig.isEvmChain) {
wormholeTransceiver.setIsWormholeEvmChain(targetConfig.chainId, true);
console2.log("EVM chain set for chain", targetConfig.chainId);
} else {
console2.log("This is not an EVM chain, doing nothing");
}
}
}
}
function configureNttManager(
INttManager nttManager,
ChainConfig[] memory config,
ConfigParams memory params
) internal {
for (uint256 i = 0; i < config.length; i++) {
ChainConfig memory targetConfig = config[i];
if (targetConfig.chainId == params.wormholeChainId) {
continue;
} else {
// Set peer.
nttManager.setPeer(
targetConfig.chainId,
targetConfig.nttManager,
targetConfig.decimals,
targetConfig.inboundLimit
);
console2.log("Peer set for chain", targetConfig.chainId);
}
}
}
function run() public {
vm.startBroadcast();
// Sanity check deployment parameters.
ConfigParams memory params = _readEnvVariables();
(
ChainConfig[] memory config,
INttManager nttManager,
IWormholeTransceiver wormholeTransceiver
) = _parseAndValidateConfigFile(params.wormholeChainId);
configureWormholeTransceiver(wormholeTransceiver, config, params);
configureNttManager(nttManager, config, params);
vm.stopBroadcast();
}
}