@layerzerolabs/lz-solana-sdk-v2 3.0.115 → 3.0.116-placeholder.1
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.mjs
CHANGED
|
@@ -10554,7 +10554,10 @@ async function getLzComposeTypesInfo(rpc, payer, to, composerProgram, params, co
|
|
|
10554
10554
|
isWritable: false
|
|
10555
10555
|
}
|
|
10556
10556
|
],
|
|
10557
|
-
data: Buffer.concat([
|
|
10557
|
+
data: Buffer.concat([
|
|
10558
|
+
instructionDiscriminator("lz_compose_types_info"),
|
|
10559
|
+
getLzComposeParamsSerializer2().serialize(params)
|
|
10560
|
+
])
|
|
10558
10561
|
};
|
|
10559
10562
|
const resp = await simulateWeb3JsTransaction(
|
|
10560
10563
|
rpc.getEndpoint(),
|
|
@@ -10753,7 +10756,10 @@ async function getLzReceiveTypesInfo(rpc, payer, receiver, receiverProgram, para
|
|
|
10753
10756
|
isWritable: false
|
|
10754
10757
|
}
|
|
10755
10758
|
],
|
|
10756
|
-
data: Buffer.concat([
|
|
10759
|
+
data: Buffer.concat([
|
|
10760
|
+
instructionDiscriminator("lz_receive_types_info"),
|
|
10761
|
+
getLzReceiveParamsSerializer().serialize(params)
|
|
10762
|
+
])
|
|
10757
10763
|
};
|
|
10758
10764
|
const resp = await simulateWeb3JsTransaction(
|
|
10759
10765
|
rpc.getEndpoint(),
|