1
1
// SPDX-License-Identifier: Apache 2
2
2
pragma solidity >= 0.8.8 < 0.9.0 ;
3
3
4
- import {Script} from "forge-std/Script.sol " ;
4
+ import {Script, console } from "forge-std/Script.sol " ;
5
5
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
+ }
6
15
7
16
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 {
9
24
vm.startBroadcast ();
10
25
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
+ });
13
61
14
62
// Deploy NttManager.
15
63
address manager = deployNttManager (params);
@@ -24,4 +72,27 @@ contract DeployWormholeNtt is Script, DeployWormholeNttBase {
24
72
25
73
vm.stopBroadcast ();
26
74
}
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
+ }
27
98
}
0 commit comments