Skip to content

Commit 9142cfa

Browse files
committed
evm/script: add upgrade support to deploy script
1 parent f4d970e commit 9142cfa

File tree

2 files changed

+77
-8
lines changed

2 files changed

+77
-8
lines changed

evm/script/DeployWormholeNtt.s.sol

+75-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,63 @@
11
// SPDX-License-Identifier: Apache 2
22
pragma solidity >=0.8.8 <0.9.0;
33

4-
import {Script} from "forge-std/Script.sol";
4+
import {Script, console} from "forge-std/Script.sol";
55
import {DeployWormholeNttBase} from "./helpers/DeployWormholeNttBase.sol";
6+
import {INttManager} from "../src/interfaces/INttManager.sol";
7+
import {IWormholeTransceiver} from "../src/interfaces/IWormholeTransceiver.sol";
8+
import "../src/interfaces/IManagerBase.sol";
9+
import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
10+
import {NttManager} from "../src/NttManager/NttManager.sol";
11+
12+
interface IWormhole {
13+
function chainId() external view returns (uint16);
14+
}
615

716
contract DeployWormholeNtt is Script, DeployWormholeNttBase {
8-
function run() public {
17+
function run(
18+
address wormhole,
19+
address token,
20+
address wormholeRelayer,
21+
address specialRelayer,
22+
IManagerBase.Mode mode
23+
) public {
924
vm.startBroadcast();
1025

11-
// Sanity check deployment parameters.
12-
DeploymentParams memory params = _readEnvVariables();
26+
console.log("Deploying Wormhole Ntt...");
27+
IWormhole wh = IWormhole(wormhole);
28+
29+
(bool success, bytes memory queriedDecimals) =
30+
token.staticcall(abi.encodeWithSignature("decimals()"));
31+
32+
if (!success) {
33+
console.log("Failed to query token decimals");
34+
vm.stopBroadcast();
35+
return;
36+
}
37+
38+
uint8 decimals = abi.decode(queriedDecimals, (uint8));
39+
40+
uint16 chainId = wh.chainId();
41+
42+
console.log("Chain ID: ", chainId);
43+
44+
uint256 scale =
45+
decimals > TRIMMED_DECIMALS ? uint256(10 ** (decimals - TRIMMED_DECIMALS)) : 1;
46+
47+
DeploymentParams memory params = DeploymentParams({
48+
token: token,
49+
mode: mode,
50+
wormholeChainId: chainId,
51+
rateLimitDuration: 86400,
52+
shouldSkipRatelimiter: false,
53+
wormholeCoreBridge: wormhole,
54+
wormholeRelayerAddr: wormholeRelayer,
55+
specialRelayerAddr: specialRelayer,
56+
consistencyLevel: 202,
57+
gasLimit: 500000,
58+
// the trimming will trim this number to uint64.max
59+
outboundLimit: uint256(type(uint64).max) * scale
60+
});
1361

1462
// Deploy NttManager.
1563
address manager = deployNttManager(params);
@@ -24,4 +72,27 @@ contract DeployWormholeNtt is Script, DeployWormholeNttBase {
2472

2573
vm.stopBroadcast();
2674
}
75+
76+
function upgrade(address manager) public {
77+
vm.startBroadcast();
78+
79+
NttManager nttManager = NttManager(manager);
80+
81+
console.log("Upgrading manager...");
82+
83+
uint64 rateLimitDuration = nttManager.rateLimitDuration();
84+
bool shouldSkipRatelimiter = rateLimitDuration == 0;
85+
86+
NttManager implementation = new NttManager(
87+
nttManager.token(),
88+
nttManager.mode(),
89+
nttManager.chainId(),
90+
nttManager.rateLimitDuration(),
91+
shouldSkipRatelimiter
92+
);
93+
94+
nttManager.upgrade(address(implementation));
95+
96+
vm.stopBroadcast();
97+
}
2798
}

evm/script/helpers/DeployWormholeNttBase.sol

+2-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ contract DeployWormholeNttBase is ParseNttConfig {
4747

4848
nttManagerProxy.initialize();
4949

50-
console2.log("NttManager deployed at: ");
51-
console2.logBytes32(toUniversalAddress(address(nttManagerProxy)));
50+
console2.log("NttManager:", address(nttManagerProxy));
5251

5352
return address(nttManagerProxy);
5453
}
@@ -72,8 +71,7 @@ contract DeployWormholeNttBase is ParseNttConfig {
7271

7372
transceiverProxy.initialize();
7473

75-
console2.log("Wormhole Transceiver deployed at: ");
76-
console2.logBytes32(toUniversalAddress(address(transceiverProxy)));
74+
console2.log("WormholeTransceiver:", address(transceiverProxy));
7775

7876
return address(transceiverProxy);
7977
}

0 commit comments

Comments
 (0)