|
1 | 1 | import type { Layout, LayoutToType } from "@wormhole-foundation/sdk-base";
|
2 | 2 | import {
|
| 3 | + deserializeLayout, |
3 | 4 | encoding,
|
4 | 5 | layoutDiscriminator,
|
5 | 6 | serializeLayout,
|
6 |
| - deserializeLayout, |
7 | 7 | } from "@wormhole-foundation/sdk-base";
|
8 | 8 |
|
9 |
| -import type { LayoutLiteral, PayloadLiteral, LayoutOf, ComposeLiteral } from "./registration.js"; |
| 9 | +import type { ComposeLiteral, LayoutLiteral, LayoutOf, PayloadLiteral } from "./registration.js"; |
10 | 10 | import { composeLiteral, payloadFactory } from "./registration.js";
|
11 | 11 |
|
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"; |
14 | 14 |
|
15 |
| -import { keccak256 } from "../utils.js"; |
| 15 | +import { sequenceItem, universalAddressItem } from "../layout-items/index.js"; |
16 | 16 | import { ProtocolName } from "../protocol.js";
|
| 17 | +import { keccak256 } from "../utils.js"; |
17 | 18 |
|
18 | 19 | export function getPayloadLayout<LL extends LayoutLiteral>(layoutLiteral: LL) {
|
19 | 20 | const layout = payloadFactory.get(layoutLiteral);
|
@@ -302,3 +303,34 @@ export const blindDeserializePayload = (() => {
|
302 | 303 | }, [] as DeserializedPair[]);
|
303 | 304 | };
|
304 | 305 | })();
|
| 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