Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

override consts in constructor, add resigned vaas for registry #450

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function registerRelayers() {
try {
await submitAccountantVAA(
Buffer.from(
"010000000001006c9967aee739944b30ffcc01653f2030ea02c038adda26a8f5a790f191134dff1e1e48368af121a34806806140d4f56ec09e25067006e69c95b0c4c08b8897990000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000001ce9cf010000000000000000000000000000000000576f726d686f6c6552656c617965720100000002000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
"01000000000100a4f34c530ff196c060ff349f2bf7bcb16865771a7165ca84fb5e263f148a01b03592b9af46a410a3760f39097d7380e4e72b6e1da4fa25c2d7b2d00f102d0cae0100000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000001ce9cf010000000000000000000000000000000000576f726d686f6c6552656c617965720100000002000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
"hex"
)
);
Expand All @@ -26,7 +26,7 @@ async function registerRelayers() {
try {
await submitAccountantVAA(
Buffer.from(
"01000000000100894be2c33626547e665cee73684854fbd8fc2eb79ec9ad724b1fb10d6cd24aaa590393870e6655697cd69d5553881ac8519e1282e7d3ae5fc26d7452d097651c00000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000445fb0b010000000000000000000000000000000000576f726d686f6c6552656c617965720100000004000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
"010000000001000fd839cfdbea0f43a35dbb8cc0219b55cd5ec9f59b7e4a7183dbeebd522f7c673c866a218bfa108d8c7606acb5fc6b94a7a4c3be06f10836c242afecdb80da6e00000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000445fb0b010000000000000000000000000000000000576f726d686f6c6552656c617965720100000004000000000000000000000000cc680d088586c09c3e0e099a676fa4b6e42467b4",
"hex"
)
);
Expand Down
19 changes: 16 additions & 3 deletions sdk/__tests__/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,20 @@ export interface Ctx extends StartingCtx {

export const wh = new Wormhole(NETWORK, [evm.Platform, solana.Platform], {
...(process.env["CI"]
? {}
? {
chains: {
Ethereum: {
contracts: {
relayer: "0xcC680D088586c09c3E0E099a676FA4b6e42467b4",
},
},
Bsc: {
contracts: {
relayer: "0xcC680D088586c09c3E0E099a676FA4b6e42467b4",
},
},
},
}
: {
api: "http://localhost:7071",
chains: {
Expand Down Expand Up @@ -271,7 +284,7 @@ async function waitForRelay(
const deliveryHash = keccak256(vaa!.hash);

const wormholeRelayer = IWormholeRelayer__factory.connect(
"0xcC680D088586c09c3E0E099a676FA4b6e42467b4", // dst.context.config.contracts.relayer!,
dst.context.config.contracts.relayer!,
await dst.context.getRpc()
);

Expand Down Expand Up @@ -429,7 +442,7 @@ async function deployEvm(ctx: Ctx): Promise<Ctx> {
// List of useful wormhole contracts - https://github.com/wormhole-foundation/wormhole/blob/00f504ef452ae2d94fa0024c026be2d8cf903ad5/ethereum/ts-scripts/relayer/config/ci/contracts.json
await manager.getAddress(),
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
"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
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
"0x0000000000000000000000000000000000000000", // TODO - Specialized relayer??????
200, // Consistency level
500000n // Gas limit
Expand Down
Loading