@tonappchain/sdk 0.7.2-alpha-14 → 0.7.2-alpha-15

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.
@@ -65,8 +65,8 @@ exports.DEFAULT_CONTRACT_FEE_USAGE_PARAMS = {
65
65
  },
66
66
  };
67
67
  const createCrossChainLayerTvmMsgToEvmStep = (params, msgBits, msgCells) => ({
68
- accountBits: params.crossChainLayer.accountBits,
69
- accountCells: params.crossChainLayer.accountCells,
68
+ accountBits: 0,
69
+ accountCells: 0,
70
70
  gasUsed: params.crossChainLayer.gas.tvmMsgToEvm,
71
71
  msgBits,
72
72
  msgCells,
@@ -101,8 +101,8 @@ const createJettonWalletBurnStep = (params, msgBits, msgCells) => ({
101
101
  });
102
102
  exports.createJettonWalletBurnStep = createJettonWalletBurnStep;
103
103
  const createJettonProxyOwnershipAssignedStep = (params, msgBits, msgCells) => ({
104
- accountBits: params.jettonProxy.accountBits,
105
- accountCells: params.jettonProxy.accountCells,
104
+ accountBits: 0,
105
+ accountCells: 0,
106
106
  gasUsed: params.jettonProxy.gas.ownershipAssigned,
107
107
  msgBits,
108
108
  msgCells,
@@ -137,8 +137,8 @@ const createNftItemBurnStep = (params, msgBits, msgCells) => ({
137
137
  });
138
138
  exports.createNftItemBurnStep = createNftItemBurnStep;
139
139
  const createNftProxyOwnershipAssignedStep = (params, msgBits, msgCells) => ({
140
- accountBits: params.nftProxy.accountBits,
141
- accountCells: params.nftProxy.accountCells,
140
+ accountBits: 0,
141
+ accountCells: 0,
142
142
  gasUsed: params.nftProxy.gas.ownershipAssigned,
143
143
  msgBits,
144
144
  msgCells,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonappchain/sdk",
3
- "version": "0.7.2-alpha-14",
3
+ "version": "0.7.2-alpha-15",
4
4
  "repository": "https://github.com/TacBuild/tac-sdk.git",
5
5
  "author": "TAC. <developers@tac>",
6
6
  "license": "MIT",