@layerzerolabs/ton-sdk-tools 3.0.34 → 3.0.35

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,11 @@
1
1
  # @layerzerolabs/ton-sdk-tools
2
2
 
3
+ ## 3.0.35
4
+
5
+ ### Patch Changes
6
+
7
+ - 8fab76f: Publish new TON packages ar Dec 20
8
+
3
9
  ## 3.0.34
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1286,6 +1286,8 @@ import {
1286
1286
  keyMap,
1287
1287
  } from '../../src'
1288
1288
 
1289
+ const RECURSIVE_DECODE = false
1290
+
1289
1291
  export const ActionTypes: { [key: string]: bigint } = {
1290
1292
  increment: BigInt(1),
1291
1293
  aba: BigInt(2),
@@ -1713,7 +1715,7 @@ export async function sendMessageViaMultisigAndExpect({
1713
1715
  targetContract,
1714
1716
  deploy,
1715
1717
  expectedTransactions = [],
1716
- recursiveDecode = false,
1718
+ recursiveDecode = RECURSIVE_DECODE,
1717
1719
  }: SendMessageViaMultisigAndExpectArgs): Promise<SendMessageResult> {
1718
1720
  const curTime = (): number => blockchain.now ?? Math.floor(Date.now() / 1000)
1719
1721
 
@@ -1811,7 +1813,7 @@ export async function sendInternalMessageAndExpect({
1811
1813
  balanceRefill = BigInt(0),
1812
1814
  queryId = BigInt(1),
1813
1815
  profile,
1814
- recursiveDecode = false,
1816
+ recursiveDecode = RECURSIVE_DECODE,
1815
1817
  }: SendInternalMessageAndExpectArgs): Promise<SendMessageResult> {
1816
1818
  const internalMsgResults = await contract.sendInternalMessage(sender, opCode, md, { value }, balanceRefill, queryId)
1817
1819