@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 +6 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
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 =
|
|
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 =
|
|
1816
|
+
recursiveDecode = RECURSIVE_DECODE,
|
|
1815
1817
|
}: SendInternalMessageAndExpectArgs): Promise<SendMessageResult> {
|
|
1816
1818
|
const internalMsgResults = await contract.sendInternalMessage(sender, opCode, md, { value }, balanceRefill, queryId)
|
|
1817
1819
|
|