@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.
@@ -1,4 +1,3 @@
1
1
  export * as dev from "./dev";
2
2
  export * as mainnet from "./mainnet";
3
3
  export * as testnet from "./testnet";
4
- export type * as wrappers from './wrappers';
@@ -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/wrappers';
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';
@@ -1,5 +1,5 @@
1
1
  import { Cell } from '@ton/ton';
2
- import { NFTCollectionData, NFTItemData } from '../../artifacts/wrappers';
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 {
@@ -1,4 +1,5 @@
1
- export * from '../artifacts';
1
+ export * as artifacts from '../artifacts';
2
+ export type * as artifactTypes from '../artifacts/types';
2
3
  export * from './adapters';
3
4
  export * from './agnosticSdk/AgnosticSdk';
4
5
  export * from './assets';
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
- __exportStar(require("../artifacts"), exports);
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/wrappers';
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';
@@ -1,5 +1,5 @@
1
1
  import { Wallet } from 'ethers';
2
- import { JettonMinterData, NFTItemData } from '../../artifacts/wrappers';
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/wrappers';
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/wrappers';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonappchain/sdk",
3
- "version": "0.7.0-rc24-test-2",
3
+ "version": "0.7.0-rc24-test-4",
4
4
  "repository": "https://github.com/TacBuild/tac-sdk.git",
5
5
  "author": "TAC. <developers@tac>",
6
6
  "license": "MIT",
File without changes
File without changes