@@ -93,19 +93,11 @@ contract WormholeEndpointStandaloneMigrateBasic is WormholeEndpointStandalone {
93
93
constructor (
94
94
address manager ,
95
95
address wormholeCoreBridge ,
96
- address wormholeRelayerAddr
97
- ) WormholeEndpointStandalone (manager, wormholeCoreBridge, wormholeRelayerAddr) {}
98
-
99
- function _migrate () internal pure override {
100
- revert ("Proper migrate called " );
101
- }
102
- }
103
-
104
- contract WormholeEndpointStandaloneImmutableCheck is WormholeEndpointStandalone {
105
- constructor (
106
- address wormholeCoreBridge ,
107
- address wormholeRelayerAddr
108
- ) WormholeEndpointStandalone (address (0x1 ), wormholeCoreBridge, wormholeRelayerAddr) {}
96
+ address wormholeRelayerAddr ,
97
+ address specialRelayerAddr
98
+ )
99
+ WormholeEndpointStandalone (manager, wormholeCoreBridge, wormholeRelayerAddr, specialRelayerAddr)
100
+ {}
109
101
110
102
function _migrate () internal pure override {
111
103
revert ("Proper migrate called " );
@@ -114,9 +106,13 @@ contract WormholeEndpointStandaloneImmutableCheck is WormholeEndpointStandalone
114
106
115
107
contract WormholeEndpointStandaloneImmutableAllow is WormholeEndpointStandalone {
116
108
constructor (
109
+ address manager ,
117
110
address wormholeCoreBridge ,
118
- address wormholeRelayerAddr
119
- ) WormholeEndpointStandalone (address (0x1 ), wormholeCoreBridge, wormholeRelayerAddr) {}
111
+ address wormholeRelayerAddr ,
112
+ address specialRelayerAddr
113
+ )
114
+ WormholeEndpointStandalone (manager, wormholeCoreBridge, wormholeRelayerAddr, specialRelayerAddr)
115
+ {}
120
116
121
117
// Allow for the immutables to be migrated
122
118
function _migrate () internal override {
@@ -133,8 +129,11 @@ contract WormholeEndpointStandaloneLayoutChange is WormholeEndpointStandalone {
133
129
constructor (
134
130
address manager ,
135
131
address wormholeCoreBridge ,
136
- address wormholeRelayerAddr
137
- ) WormholeEndpointStandalone (manager, wormholeCoreBridge, wormholeRelayerAddr) {}
132
+ address wormholeRelayerAddr ,
133
+ address specialRelayerAddr
134
+ )
135
+ WormholeEndpointStandalone (manager, wormholeCoreBridge, wormholeRelayerAddr, specialRelayerAddr)
136
+ {}
138
137
139
138
function setData () public {
140
139
a = address (0x1 );
@@ -185,7 +184,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
185
184
managerChain1.initialize ();
186
185
187
186
WormholeEndpointStandalone wormholeEndpointChain1Implementation = new WormholeEndpointStandalone (
188
- address (managerChain1), address (wormhole), address (relayer)
187
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
189
188
);
190
189
wormholeEndpointChain1 = WormholeEndpointStandalone (
191
190
address (new ERC1967Proxy (address (wormholeEndpointChain1Implementation), "" ))
@@ -207,7 +206,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
207
206
managerChain2.initialize ();
208
207
209
208
WormholeEndpointStandalone wormholeEndpointChain2Implementation = new WormholeEndpointStandalone (
210
- address (managerChain2), address (wormhole), address (relayer)
209
+ address (managerChain2), address (wormhole), address (relayer), address ( 0x0 )
211
210
);
212
211
wormholeEndpointChain2 = WormholeEndpointStandalone (
213
212
address (new ERC1967Proxy (address (wormholeEndpointChain2Implementation), "" ))
@@ -248,7 +247,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
248
247
function test_basicUpgradeEndpoint () public {
249
248
// Basic call to upgrade with the same contact as well
250
249
WormholeEndpointStandalone wormholeEndpointChain1Implementation = new WormholeEndpointStandalone (
251
- address (managerChain1), address (wormhole), address (relayer)
250
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
252
251
);
253
252
wormholeEndpointChain1.upgrade (address (wormholeEndpointChain1Implementation));
254
253
@@ -276,7 +275,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
276
275
function test_doubleUpgradeEndpoint () public {
277
276
// Basic call to upgrade with the same contact as well
278
277
WormholeEndpointStandalone wormholeEndpointChain1Implementation = new WormholeEndpointStandalone (
279
- address (managerChain1), address (wormhole), address (relayer)
278
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
280
279
);
281
280
wormholeEndpointChain1.upgrade (address (wormholeEndpointChain1Implementation));
282
281
@@ -307,7 +306,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
307
306
function test_storageSlotEndpoint () public {
308
307
// Basic call to upgrade with the same contact as ewll
309
308
WormholeEndpointStandalone newImplementation = new WormholeEndpointStandaloneLayoutChange (
310
- address (managerChain1), address (wormhole), address (relayer)
309
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
311
310
);
312
311
wormholeEndpointChain1.upgrade (address (newImplementation));
313
312
@@ -336,7 +335,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
336
335
function test_callMigrateEndpoint () public {
337
336
// Basic call to upgrade with the same contact as well
338
337
WormholeEndpointStandaloneMigrateBasic wormholeEndpointChain1Implementation = new WormholeEndpointStandaloneMigrateBasic (
339
- address (managerChain1), address (wormhole), address (relayer)
338
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
340
339
);
341
340
342
341
vm.expectRevert ("Proper migrate called " );
@@ -361,12 +360,13 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
361
360
basicFunctionality ();
362
361
}
363
362
364
- function test_mmutableBlockUpdateFailureEndpoint () public {
363
+ function test_immutableBlockUpdateFailureEndpoint () public {
365
364
// Don't allow upgrade to work with a change immutable
366
365
367
366
address oldManager = wormholeEndpointChain1.manager ();
368
- WormholeEndpointStandaloneImmutableCheck wormholeEndpointChain1Implementation =
369
- new WormholeEndpointStandaloneImmutableCheck (address (wormhole), address (relayer));
367
+ WormholeEndpointStandaloneMigrateBasic wormholeEndpointChain1Implementation = new WormholeEndpointStandaloneMigrateBasic (
368
+ address (managerChain2), address (wormhole), address (relayer), address (0x0 )
369
+ );
370
370
371
371
vm.expectRevert (); // Reverts with a panic on the assert. So, no way to tell WHY this happened.
372
372
wormholeEndpointChain1.upgrade (address (wormholeEndpointChain1Implementation));
@@ -392,14 +392,16 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
392
392
}
393
393
394
394
function test_immutableBlockUpdateSuccessEndpoint () public {
395
- WormholeEndpointStandaloneImmutableAllow wormholeEndpointChain1Implementation =
396
- new WormholeEndpointStandaloneImmutableAllow (address (wormhole), address (relayer));
395
+ WormholeEndpointStandaloneImmutableAllow wormholeEndpointChain1Implementation = new WormholeEndpointStandaloneImmutableAllow (
396
+ address (managerChain1), address (wormhole), address (relayer), address (0x0 )
397
+ );
397
398
398
399
//vm.expectRevert(); // Reverts with a panic on the assert. So, no way to tell WHY this happened.
399
400
wormholeEndpointChain1.upgrade (address (wormholeEndpointChain1Implementation));
400
401
401
402
require (
402
- wormholeEndpointChain1.manager () == address (0x1 ), "Manager updated when it shouldn't be "
403
+ wormholeEndpointChain1.manager () == address (managerChain1),
404
+ "Manager updated when it shouldn't be "
403
405
);
404
406
}
405
407
@@ -453,7 +455,7 @@ contract TestUpgrades is Test, IManagerEvents, IRateLimiterEvents {
453
455
454
456
// Basic call so that we can easily see what the new endpoint is.
455
457
WormholeEndpointStandalone wormholeEndpointChain1Implementation = new WormholeEndpointStandalone (
456
- address (managerChain1), address (wormhole), address (relayer)
458
+ address (managerChain1), address (wormhole), address (relayer), address ( 0x0 )
457
459
);
458
460
wormholeEndpointChain1.upgrade (address (wormholeEndpointChain1Implementation));
459
461
basicFunctionality (); // Ensure that the upgrade was proper
0 commit comments