Skip to content

Commit 25d1bb2

Browse files
committed
rm extra check, remove addresses from callback
1 parent f46e845 commit 25d1bb2

File tree

1 file changed

+14
-23
lines changed

1 file changed

+14
-23
lines changed

sdk/__tests__/utils.ts

+14-23
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,7 @@ async function waitForRelay(
296296

297297
// long timeout because the relayer has consistency level set to 15
298298
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);
302300

303301
const wormholeRelayer = IWormholeRelayer__factory.connect(
304302
dst.context.config.contracts.relayer!,
@@ -307,22 +305,16 @@ async function waitForRelay(
307305

308306
let success = false;
309307
while (!success) {
310-
await new Promise((resolve) => setTimeout(resolve, retryTime));
311308
try {
312309
const successBlock = await wormholeRelayer.deliverySuccessBlock(
313310
deliveryHash
314311
);
315-
console.log("Checking for single hash: ", successBlock);
316312
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);
323314
} catch (e) {
324315
console.error(e);
325316
}
317+
await new Promise((resolve) => setTimeout(resolve, retryTime));
326318
}
327319
}
328320

@@ -487,14 +479,15 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
487479
// // Setup with the proxy
488480
console.log("Deploy transceiver proxy");
489481
const transceiverProxyFactory = new ERC1967Proxy__factory(wallet);
490-
const transceiverProxyAddress = await transceiverProxyFactory.deploy(
482+
const transceiverProxyDeployment = await transceiverProxyFactory.deploy(
491483
await WormholeTransceiverAddress.getAddress(),
492484
"0x"
493485
);
494-
await transceiverProxyAddress.waitForDeployment();
486+
await transceiverProxyDeployment.waitForDeployment();
495487

488+
const transceiverProxyAddress = await transceiverProxyDeployment.getAddress();
496489
const transceiver = WormholeTransceiver__factory.connect(
497-
await transceiverProxyAddress.getAddress(),
490+
transceiverProxyAddress,
498491
wallet
499492
);
500493

@@ -506,9 +499,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
506499

507500
// Setup the initial calls, like transceivers for the manager
508501
console.log("Set transceiver for manager");
509-
await tryAndWaitThrice(() =>
510-
transceiver.getAddress().then((addr) => manager.setTransceiver(addr))
511-
);
502+
await tryAndWaitThrice(() => manager.setTransceiver(transceiverProxyAddress));
512503

513504
console.log("Set outbound limit for manager");
514505
await tryAndWaitThrice(() =>
@@ -519,7 +510,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
519510
...ctx,
520511
contracts: {
521512
transceiver: {
522-
wormhole: await transceiverProxyAddress.getAddress(),
513+
wormhole: transceiverProxyAddress,
523514
},
524515
manager: await managerProxyAddress.getAddress(),
525516
token: ERC20NTTAddress,
@@ -623,8 +614,8 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
623614
transceiver: { wormhole: transceiver },
624615
} = peerCtx.contracts!;
625616

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);
628619

629620
const tokenDecimals = target.config.nativeTokenDecimals;
630621
const inboundLimit = amount.units(amount.parse("1000", tokenDecimals));
@@ -633,15 +624,15 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
633624

634625
const nttManager = await getNtt(targetCtx);
635626
const setPeerTxs = nttManager.setPeer(
636-
managerAddress,
627+
peerManager,
637628
tokenDecimals,
638629
inboundLimit,
639630
sender.address
640631
);
641632
await signSendWait(target, setPeerTxs, signer);
642633

643634
const setXcvrPeerTxs = nttManager.setWormholeTransceiverPeer(
644-
transceiverEmitter,
635+
peerTransceiver,
645636
sender.address
646637
);
647638
const xcvrPeerTxids = await signSendWait(target, setXcvrPeerTxs, signer);
@@ -666,7 +657,7 @@ async function setupPeer(targetCtx: Ctx, peerCtx: Ctx) {
666657

667658
const peerChainId = toChainId(peer.chain);
668659

669-
console.log("Setting wormhole relaying for: ", peer.chain);
660+
console.log("Setting isEvmChain for: ", peer.chain);
670661
await tryAndWaitThrice(() =>
671662
xcvr.setIsWormholeEvmChain.send(peerChainId, true, {
672663
nonce: expectedNonce,

0 commit comments

Comments
 (0)