Skip to content

Commit f3a2f28

Browse files
authored
add fallback function to allow parsing a VAA without a known chain id (#595)
1 parent d0dcfa8 commit f3a2f28

File tree

1 file changed

+37
-5
lines changed

1 file changed

+37
-5
lines changed

core/definitions/src/vaa/functions.ts

+37-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
import type { Layout, LayoutToType } from "@wormhole-foundation/sdk-base";
22
import {
3+
deserializeLayout,
34
encoding,
45
layoutDiscriminator,
56
serializeLayout,
6-
deserializeLayout,
77
} from "@wormhole-foundation/sdk-base";
88

9-
import type { LayoutLiteral, PayloadLiteral, LayoutOf, ComposeLiteral } from "./registration.js";
9+
import type { ComposeLiteral, LayoutLiteral, LayoutOf, PayloadLiteral } from "./registration.js";
1010
import { composeLiteral, payloadFactory } from "./registration.js";
1111

12-
import type { VAA, DistributiveVAA, Payload, LayoutLiteralToPayload } from "./vaa.js";
13-
import { decomposeLiteral, headerLayout, envelopeLayout, baseLayout } from "./vaa.js";
12+
import type { DistributiveVAA, LayoutLiteralToPayload, Payload, VAA } from "./vaa.js";
13+
import { baseLayout, decomposeLiteral, envelopeLayout, headerLayout } from "./vaa.js";
1414

15-
import { keccak256 } from "../utils.js";
15+
import { sequenceItem, universalAddressItem } from "../layout-items/index.js";
1616
import { ProtocolName } from "../protocol.js";
17+
import { keccak256 } from "../utils.js";
1718

1819
export function getPayloadLayout<LL extends LayoutLiteral>(layoutLiteral: LL) {
1920
const layout = payloadFactory.get(layoutLiteral);
@@ -302,3 +303,34 @@ export const blindDeserializePayload = (() => {
302303
}, [] as DeserializedPair[]);
303304
};
304305
})();
306+
307+
/**
308+
* Allows deserialization of a VAA with a chain id that is not yet known
309+
* by the SDK.
310+
* @param data The raw VAA to deserialize
311+
* @returns an object with the VAA data and the payload as a Uint8Array
312+
*/
313+
export const deserializeUnknownVaa = (data: Uint8Array) => {
314+
const envelopeLayout = [
315+
{ name: "timestamp", binary: "uint", size: 4 },
316+
{ name: "nonce", binary: "uint", size: 4 },
317+
// Note: This is the only difference currently between this and
318+
// the envelopeLayout defined in vaa.ts where chain is typechecked
319+
{ name: "emitterChain", binary: "uint", size: 2 },
320+
{ name: "emitterAddress", ...universalAddressItem },
321+
{ name: "sequence", ...sequenceItem },
322+
{ name: "consistencyLevel", binary: "uint", size: 1 },
323+
] as const satisfies Layout;
324+
325+
const [header, offset] = deserializeLayout(headerLayout, data, { consumeAll: false });
326+
const [envelope, offset2] = deserializeLayout(envelopeLayout, data, {
327+
offset: offset,
328+
consumeAll: false,
329+
});
330+
331+
return {
332+
...header,
333+
...envelope,
334+
payload: data.slice(offset2),
335+
};
336+
};

0 commit comments

Comments
 (0)