Skip to content

Commit b547154

Browse files
committed
ci: evm relayer address fix
1 parent c8aab39 commit b547154

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Tiltfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load('ext://namespace', 'namespace_create', 'namespace_inject')
22
load('ext://git_resource', 'git_checkout')
33

4-
git_checkout('https://github.com/wormhole-foundation/wormhole.git#main', '.wormhole/', unsafe_mode=True)
4+
git_checkout('https://github.com/wormholelabs-xyz/wormhole.git#tilt-eth-relayer-fix', '.wormhole/', unsafe_mode=True)
55
local(['sed','-i','/{chainId: vaa.ChainIDEthereum, addr: "000000000000000000000000855FA758c77D68a04990E992aA4dcdeF899F654A"},/i {chainId: vaa.ChainIDSolana, addr: "8bf0b547c96edc5c1d512ca25c5c1d1812a180438a0046e511d1fb61561d5cdf"},{chainId: vaa.ChainIDSolana, addr: "0a490691c21334ca173d9ce386e2a86774ce173f351db10d5d0cccc5c4875376"},{chainId: vaa.ChainIDEthereum, addr: "0000000000000000000000006f84742680311cef5ba42bc10a71a4708b4561d1"},{chainId: vaa.ChainIDEthereum, addr: "000000000000000000000000c3ef4965b788cc4b905084d01f2eb7d4b6e93abf"},{chainId: vaa.ChainIDBSC, addr: "0000000000000000000000006f84742680311cef5ba42bc10a71a4708b4561d1"},{chainId: vaa.ChainIDBSC, addr: "0000000000000000000000003f4e941ef5071a1d09c2eb4a24da1fc43f76fcff"},', '.wormhole/node/pkg/accountant/ntt_config.go'])
66

77
load(".wormhole/Tiltfile", "namespace", "k8s_yaml_with_ns")

sdk/__tests__/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async function registerRelayers() {
1515
try {
1616
await submitAccountantVAA(
1717
Buffer.from(
18-
"010000000001006c9967aee739944b30ffcc01653f2030ea02c038adda26a8f5a790f191134dff1e1e48368af121a34806806140d4f56ec09e25067006e69c95b0c4c08b8897990000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000001ce9cf010000000000000000000000000000000000576f726d686f6c6552656c61796572010000000200000000000000000000000053855d4b64e9a3cf59a84bc768ada716b5536bc5",
18+
"010000000001006c9967aee739944b30ffcc01653f2030ea02c038adda26a8f5a790f191134dff1e1e48368af121a34806806140d4f56ec09e25067006e69c95b0c4c08b8897990000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000001ce9cf010000000000000000000000000000000000576f726d686f6c6552656c617965720100000002000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
1919
"hex"
2020
)
2121
);
@@ -26,7 +26,7 @@ async function registerRelayers() {
2626
try {
2727
await submitAccountantVAA(
2828
Buffer.from(
29-
"01000000000100894be2c33626547e665cee73684854fbd8fc2eb79ec9ad724b1fb10d6cd24aaa590393870e6655697cd69d5553881ac8519e1282e7d3ae5fc26d7452d097651c00000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000445fb0b010000000000000000000000000000000000576f726d686f6c6552656c61796572010000000400000000000000000000000053855d4b64e9a3cf59a84bc768ada716b5536bc5",
29+
"01000000000100894be2c33626547e665cee73684854fbd8fc2eb79ec9ad724b1fb10d6cd24aaa590393870e6655697cd69d5553881ac8519e1282e7d3ae5fc26d7452d097651c00000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000445fb0b010000000000000000000000000000000000576f726d686f6c6552656c617965720100000004000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
3030
"hex"
3131
)
3232
);

sdk/__tests__/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ async function waitForRelay(
271271
const deliveryHash = keccak256(vaa!.hash);
272272

273273
const wormholeRelayer = IWormholeRelayer__factory.connect(
274-
dst.context.config.contracts.relayer!,
274+
"0xcC680D088586c09c3E0E099a676FA4b6e42467b4", // dst.context.config.contracts.relayer!,
275275
await dst.context.getRpc()
276276
);
277277

@@ -429,7 +429,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
429429
// List of useful wormhole contracts - https://github.com/wormhole-foundation/wormhole/blob/00f504ef452ae2d94fa0024c026be2d8cf903ad5/ethereum/ts-scripts/relayer/config/ci/contracts.json
430430
await manager.getAddress(),
431431
ctx.context.config.contracts.coreBridge!, // Core wormhole contract - https://docs.wormhole.com/wormhole/blockchain-environments/evm#local-network-contract -- may need to be changed to support other chains
432-
ctx.context.config.contracts.relayer!, // Relayer contract -- double check these...https://github.com/wormhole-foundation/wormhole/blob/main/sdk/js/src/relayer/__tests__/wormhole_relayer.ts
432+
"0xcC680D088586c09c3E0E099a676FA4b6e42467b4", // ctx.context.config.contracts.relayer!, // Relayer contract -- double check these...https://github.com/wormhole-foundation/wormhole/blob/main/sdk/js/src/relayer/__tests__/wormhole_relayer.ts
433433
"0x0000000000000000000000000000000000000000", // TODO - Specialized relayer??????
434434
200, // Consistency level
435435
500000n // Gas limit

0 commit comments

Comments
 (0)