@layerzerolabs/lz-solana-sdk-v2 3.0.115 → 3.0.116-chan-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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @layerzerolabs/lz-solana-sdk-v2
2
2
 
3
+ ## 3.0.116
4
+
5
+ ### Patch Changes
6
+
7
+ - 3b966a4: Publish new official packages at 25 July by Yadong
8
+ - Updated dependencies [3b966a4]
9
+ - @layerzerolabs/lz-corekit-solana@3.0.116
10
+ - @layerzerolabs/lz-definitions@3.0.116
11
+ - @layerzerolabs/lz-foundation@3.0.116
12
+ - @layerzerolabs/lz-serdes@3.0.116
13
+ - @layerzerolabs/lz-utilities@3.0.116
14
+ - @layerzerolabs/lz-v2-utilities@3.0.116
15
+
3
16
  ## 3.0.115
4
17
 
5
18
  ### Patch Changes
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([instructionDiscriminator("lz_compose_types_info")])
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([instructionDiscriminator("lz_receive_types_info")])
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(),