@tonappchain/sdk 0.7.0-rc24-test-2 → 0.7.0-rc24-test-4
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/artifacts/index.d.ts +0 -1
- package/dist/src/assets/FT.d.ts +1 -1
- package/dist/src/assets/NFT.d.ts +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.js +24 -2
- package/dist/src/interfaces/ITacSDK.d.ts +1 -1
- package/dist/src/sdk/TacSdk.d.ts +1 -1
- package/dist/src/structs/InternalStruct.d.ts +1 -1
- package/dist/src/structs/Struct.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/artifacts/{wrappers.d.ts → types.d.ts} +0 -0
- /package/dist/artifacts/{wrappers.js → types.js} +0 -0
package/dist/src/assets/FT.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SandboxContract } from '@ton/sandbox';
|
|
2
2
|
import { Cell, OpenedContract } from '@ton/ton';
|
|
3
|
-
import { JettonMinterData, JettonWallet } from '../../artifacts/
|
|
3
|
+
import { JettonMinterData, JettonWallet } from '../../artifacts/types';
|
|
4
4
|
import { Asset, IConfiguration } from '../interfaces';
|
|
5
5
|
import { AssetOpType } from '../structs/InternalStruct';
|
|
6
6
|
import { AssetType, EVMAddress, FeeParams, FTOriginAndData, TVMAddress, UserWalletBalanceExtended } from '../structs/Struct';
|
package/dist/src/assets/NFT.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Cell } from '@ton/ton';
|
|
2
|
-
import { NFTCollectionData, NFTItemData } from '../../artifacts/
|
|
2
|
+
import { NFTCollectionData, NFTItemData } from '../../artifacts/types';
|
|
3
3
|
import { Asset, IConfiguration } from '../interfaces';
|
|
4
4
|
import { AssetType, EVMAddress, FeeParams, Origin, TVMAddress } from '../structs/Struct';
|
|
5
5
|
export declare class NFT implements Asset {
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.js
CHANGED
|
@@ -10,12 +10,34 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
13
35
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
36
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
37
|
};
|
|
16
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.TONTransactionManager = exports.TACTransactionManager = exports.TacSdk = exports.startTrackingMultiple = exports.startTracking = exports.Simulator = exports.OperationTracker = exports.NoopLogger = exports.ConsoleLogger = exports.LiteSequencerClient = exports.Configuration = exports.AxiosHttpClient = void 0;
|
|
18
|
-
|
|
39
|
+
exports.TONTransactionManager = exports.TACTransactionManager = exports.TacSdk = exports.startTrackingMultiple = exports.startTracking = exports.Simulator = exports.OperationTracker = exports.NoopLogger = exports.ConsoleLogger = exports.LiteSequencerClient = exports.Configuration = exports.AxiosHttpClient = exports.artifacts = void 0;
|
|
40
|
+
exports.artifacts = __importStar(require("../artifacts"));
|
|
19
41
|
__exportStar(require("./adapters"), exports);
|
|
20
42
|
__exportStar(require("./agnosticSdk/AgnosticSdk"), exports);
|
|
21
43
|
__exportStar(require("./assets"), exports);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Wallet } from 'ethers';
|
|
2
|
-
import { JettonMinterData, NFTItemData } from '../../artifacts/
|
|
2
|
+
import { JettonMinterData, NFTItemData } from '../../artifacts/types';
|
|
3
3
|
import { FT, NFT } from '../assets';
|
|
4
4
|
import type { SenderAbstraction } from '../sender';
|
|
5
5
|
import { AssetFromFTArg, AssetFromNFTCollectionArg, AssetFromNFTItemArg, AssetLike, CrossChainTransactionOptions, CrosschainTx, CrosschainTxWithAssetLike, EVMAddress, EvmProxyMsg, ExecutionFeeEstimationResult, NFTAddressType, OperationIdsByShardsKey, SuggestedTVMExecutorFee, TACSimulationParams, TACSimulationResult, TransactionLinkerWithOperationId, TVMAddress, UserWalletBalanceExtended, WaitOptions } from '../structs/Struct';
|
package/dist/src/sdk/TacSdk.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Wallet } from 'ethers';
|
|
2
|
-
import { JettonMinterData, NFTItemData } from '../../artifacts/
|
|
2
|
+
import { JettonMinterData, NFTItemData } from '../../artifacts/types';
|
|
3
3
|
import { FT, NFT } from '../assets';
|
|
4
4
|
import { IConfiguration, ILogger, IOperationTracker, ITacSDK } from '../interfaces';
|
|
5
5
|
import type { SenderAbstraction } from '../sender';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Cell } from '@ton/ton';
|
|
2
2
|
import { AbstractProvider, ethers } from 'ethers';
|
|
3
|
-
import { CrossChainLayerTAC, SettingsTAC, TacSAFactoryTAC, TokenUtilsTAC } from '../../artifacts/
|
|
3
|
+
import { CrossChainLayerTAC, SettingsTAC, TacSAFactoryTAC, TokenUtilsTAC } from '../../artifacts/types';
|
|
4
4
|
import { ContractOpener } from '../interfaces';
|
|
5
5
|
import { CurrencyType, ExecutionStagesByOperationId, Network, OperationIdsByShardsKey, OperationType, StatusInfosByOperationId, SuggestedTVMExecutorFee, TACSimulationResult } from './Struct';
|
|
6
6
|
export type ShardMessage = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SandboxContract } from '@ton/sandbox';
|
|
2
2
|
import { OpenedContract } from '@ton/ton';
|
|
3
3
|
import { AbstractProvider, Addressable } from 'ethers';
|
|
4
|
-
import { JettonMinter, JettonMinterData } from '../../artifacts/
|
|
4
|
+
import { JettonMinter, JettonMinterData } from '../../artifacts/types';
|
|
5
5
|
import type { FT, NFT } from '../assets';
|
|
6
6
|
import type { Asset, ContractOpener, ILogger } from '../interfaces';
|
|
7
7
|
export type ContractState = {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|