@@ -296,9 +296,7 @@ async function waitForRelay(
296
296
297
297
// long timeout because the relayer has consistency level set to 15
298
298
const vaa = await wh . getVaa ( msgId , "Uint8Array" , 2 * 60 * 1000 ) ;
299
- const deliveryHash = vaa ! . hash ;
300
- console . log ( "Hash" , deliveryHash ) ;
301
- console . log ( "Hash" , keccak256 ( deliveryHash ) ) ;
299
+ const deliveryHash = keccak256 ( vaa ! . hash ) ;
302
300
303
301
const wormholeRelayer = IWormholeRelayer__factory . connect (
304
302
dst . context . config . contracts . relayer ! ,
@@ -307,22 +305,16 @@ async function waitForRelay(
307
305
308
306
let success = false ;
309
307
while ( ! success ) {
310
- await new Promise ( ( resolve ) => setTimeout ( resolve , retryTime ) ) ;
311
308
try {
312
309
const successBlock = await wormholeRelayer . deliverySuccessBlock (
313
310
deliveryHash
314
311
) ;
315
- console . log ( "Checking for single hash: " , successBlock ) ;
316
312
if ( successBlock > 0 ) success = true ;
317
-
318
- const altSuccessBlock = await wormholeRelayer . deliverySuccessBlock (
319
- keccak256 ( deliveryHash )
320
- ) ;
321
- console . log ( "Checking for double hash: " , altSuccessBlock ) ;
322
- if ( altSuccessBlock > 0 ) success = true ;
313
+ console . log ( "Relayer delivery: " , success ) ;
323
314
} catch ( e ) {
324
315
console . error ( e ) ;
325
316
}
317
+ await new Promise ( ( resolve ) => setTimeout ( resolve , retryTime ) ) ;
326
318
}
327
319
}
328
320
@@ -487,14 +479,15 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
487
479
// // Setup with the proxy
488
480
console . log ( "Deploy transceiver proxy" ) ;
489
481
const transceiverProxyFactory = new ERC1967Proxy__factory ( wallet ) ;
490
- const transceiverProxyAddress = await transceiverProxyFactory . deploy (
482
+ const transceiverProxyDeployment = await transceiverProxyFactory . deploy (
491
483
await WormholeTransceiverAddress . getAddress ( ) ,
492
484
"0x"
493
485
) ;
494
- await transceiverProxyAddress . waitForDeployment ( ) ;
486
+ await transceiverProxyDeployment . waitForDeployment ( ) ;
495
487
488
+ const transceiverProxyAddress = await transceiverProxyDeployment . getAddress ( ) ;
496
489
const transceiver = WormholeTransceiver__factory . connect (
497
- await transceiverProxyAddress . getAddress ( ) ,
490
+ transceiverProxyAddress ,
498
491
wallet
499
492
) ;
500
493
@@ -506,9 +499,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
506
499
507
500
// Setup the initial calls, like transceivers for the manager
508
501
console . log ( "Set transceiver for manager" ) ;
509
- await tryAndWaitThrice ( ( ) =>
510
- transceiver . getAddress ( ) . then ( ( addr ) => manager . setTransceiver ( addr ) )
511
- ) ;
502
+ await tryAndWaitThrice ( ( ) => manager . setTransceiver ( transceiverProxyAddress ) ) ;
512
503
513
504
console . log ( "Set outbound limit for manager" ) ;
514
505
await tryAndWaitThrice ( ( ) =>
@@ -519,7 +510,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
519
510
...ctx ,
520
511
contracts : {
521
512
transceiver : {
522
- wormhole : await transceiverProxyAddress . getAddress ( ) ,
513
+ wormhole : transceiverProxyAddress ,
523
514
} ,
524
515
manager : await managerProxyAddress . getAddress ( ) ,
525
516
token : ERC20NTTAddress ,
@@ -623,8 +614,8 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
623
614
transceiver : { wormhole : transceiver } ,
624
615
} = peerCtx . contracts ! ;
625
616
626
- const managerAddress = Wormhole . chainAddress ( peer . chain , manager ) ;
627
- const transceiverEmitter = Wormhole . chainAddress ( peer . chain , transceiver ) ;
617
+ const peerManager = Wormhole . chainAddress ( peer . chain , manager ) ;
618
+ const peerTransceiver = Wormhole . chainAddress ( peer . chain , transceiver ) ;
628
619
629
620
const tokenDecimals = target . config . nativeTokenDecimals ;
630
621
const inboundLimit = amount . units ( amount . parse ( "1000" , tokenDecimals ) ) ;
@@ -633,15 +624,15 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
633
624
634
625
const nttManager = await getNtt ( targetCtx ) ;
635
626
const setPeerTxs = nttManager . setPeer (
636
- managerAddress ,
627
+ peerManager ,
637
628
tokenDecimals ,
638
629
inboundLimit ,
639
630
sender . address
640
631
) ;
641
632
await signSendWait ( target , setPeerTxs , signer ) ;
642
633
643
634
const setXcvrPeerTxs = nttManager . setWormholeTransceiverPeer (
644
- transceiverEmitter ,
635
+ peerTransceiver ,
645
636
sender . address
646
637
) ;
647
638
const xcvrPeerTxids = await signSendWait ( target , setXcvrPeerTxs , signer ) ;
@@ -666,7 +657,7 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
666
657
667
658
const peerChainId = toChainId ( peer . chain ) ;
668
659
669
- console . log ( "Setting wormhole relaying for: " , peer . chain ) ;
660
+ console . log ( "Setting isEvmChain for: " , peer . chain ) ;
670
661
await tryAndWaitThrice ( ( ) =>
671
662
xcvr . setIsWormholeEvmChain . send ( peerChainId , true , {
672
663
nonce : expectedNonce ,
0 commit comments