@layerzerolabs/lz-solana-sdk-v2 3.0.115 → 3.0.116-placeholder.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/umi.cjs +8 -2
- package/dist/umi.cjs.map +1 -1
- package/dist/umi.mjs +8 -2
- package/dist/umi.mjs.map +1 -1
- package/package.json +9 -9
- package/src/compose-types-v2.ts +4 -1
- package/src/receive-types-v2.ts +4 -1
package/dist/umi.cjs
CHANGED
|
@@ -10578,7 +10578,10 @@ async function getLzComposeTypesInfo(rpc, payer, to, composerProgram, params, co
|
|
|
10578
10578
|
isWritable: false
|
|
10579
10579
|
}
|
|
10580
10580
|
],
|
|
10581
|
-
data: Buffer.concat([
|
|
10581
|
+
data: Buffer.concat([
|
|
10582
|
+
instructionDiscriminator("lz_compose_types_info"),
|
|
10583
|
+
getLzComposeParamsSerializer2().serialize(params)
|
|
10584
|
+
])
|
|
10582
10585
|
};
|
|
10583
10586
|
const resp = await simulateWeb3JsTransaction(
|
|
10584
10587
|
rpc.getEndpoint(),
|
|
@@ -10777,7 +10780,10 @@ async function getLzReceiveTypesInfo(rpc, payer, receiver, receiverProgram, para
|
|
|
10777
10780
|
isWritable: false
|
|
10778
10781
|
}
|
|
10779
10782
|
],
|
|
10780
|
-
data: Buffer.concat([
|
|
10783
|
+
data: Buffer.concat([
|
|
10784
|
+
instructionDiscriminator("lz_receive_types_info"),
|
|
10785
|
+
getLzReceiveParamsSerializer().serialize(params)
|
|
10786
|
+
])
|
|
10781
10787
|
};
|
|
10782
10788
|
const resp = await simulateWeb3JsTransaction(
|
|
10783
10789
|
rpc.getEndpoint(),
|