@layerzerolabs/ton-sdk-tools 3.0.80 → 3.0.81
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 +245 -387
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +69 -11
- package/dist/index.d.ts +69 -11
- package/dist/index.mjs +241 -387
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Cell, Address, SendMode, Contract, ContractProvider, Sender, SenderArguments, Builder, Transaction, TransactionComputeVm, Message } from '@ton/core';
|
|
2
|
-
import { BlockchainTransaction, Blockchain } from '@ton/sandbox';
|
|
1
|
+
import { Cell, Address, SendMode, Contract, ContractProvider, Sender, SenderArguments, Builder, OpenedContract, TupleReader, ContractState, TupleItem, Transaction, TransactionComputeVm, Message } from '@ton/core';
|
|
2
|
+
import { SandboxContract, BlockchainTransaction, Blockchain, Treasury, SendMessageResult, TreasuryContract } from '@ton/sandbox';
|
|
3
3
|
import { FlatTransactionComparable } from '@ton/test-utils';
|
|
4
4
|
|
|
5
5
|
interface ConstructorArgs {
|
|
@@ -49,13 +49,12 @@ interface TonViewFunctionsDict {
|
|
|
49
49
|
}
|
|
50
50
|
declare function mergeConstructorDicts(result: TonObjectsDict, added: TonObjectsDict): TonObjectsDict;
|
|
51
51
|
declare function parseDirectory(directoryPath: string): TonObjectsDict;
|
|
52
|
-
declare function saveBaseEventHandler(directory: string, opcodesImportPath?: string, allTypesImportPath?: string, tonObjectUnwrapperImportPath?: string, tonContractWrapperImportPath?: string): void;
|
|
52
|
+
declare function saveBaseEventHandler(directory: string, opcodesImportPath?: string, allTypesImportPath?: string, tonObjectUnwrapperImportPath?: string, tonContractWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
53
53
|
declare function saveLzEventHandler(directory: string, allTypesImportPath?: string, baseEventHandlerImportPath?: string): void;
|
|
54
|
-
declare function saveClasslibWrapper(directory: string, baseWrapper?: string): void;
|
|
55
54
|
declare function saveTonContractWrapper(tonObjects: TonObjectsDict, directory: string, classlibWrapperImportPath?: string): void;
|
|
56
|
-
declare function saveAllTypes(tonObjects: TonObjectsDict, directory: string, tonContractWrapperImportPath?: string): void;
|
|
55
|
+
declare function saveAllTypes(tonObjects: TonObjectsDict, directory: string, tonContractWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
57
56
|
declare function saveLzGasTracker(directory: string, opcodesImportPath?: string): void;
|
|
58
|
-
declare function saveTonObjectUnwrapper(tonObjects: TonObjectsDict, directory: string, allTypesImportPath?: string, tonContractWrapperImportPath?: string): void;
|
|
57
|
+
declare function saveTonObjectUnwrapper(tonObjects: TonObjectsDict, directory: string, allTypesImportPath?: string, tonContractWrapperImportPath?: string, classlibWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
59
58
|
declare function generateConstructorCode(className: string, tonClasses: TonObjectsDict): TonObjectsDict;
|
|
60
59
|
declare function generateAllConstructorCodes(tonClasses: TonObjectsDict): TonObjectsDict;
|
|
61
60
|
declare function generateTonClassType(name: string, tonClasses: TonObjectsDict): TonObjectsDict;
|
|
@@ -79,11 +78,12 @@ declare function saveViewFunctions(viewFunctions: TonViewFunctionsDict, director
|
|
|
79
78
|
* @param artifact Blueprint JSON artifact object
|
|
80
79
|
* @returns {Cell}
|
|
81
80
|
*/
|
|
82
|
-
|
|
81
|
+
interface BlueprintArtfiact {
|
|
83
82
|
hex: string;
|
|
84
|
-
hash?: string
|
|
85
|
-
hashBase64?: string
|
|
86
|
-
}
|
|
83
|
+
hash?: string;
|
|
84
|
+
hashBase64?: string;
|
|
85
|
+
}
|
|
86
|
+
declare const cellFromArtifact: ({ hex }: BlueprintArtfiact) => Cell;
|
|
87
87
|
declare function getOpcodeCRC(input: string): bigint;
|
|
88
88
|
declare const MASTER_CHAIN_ID = -1;
|
|
89
89
|
declare const BASE_CHAIN_ID = 0;
|
|
@@ -123,6 +123,31 @@ declare abstract class BaseWrapper implements Contract {
|
|
|
123
123
|
buildSenderArguments(body: Cell, opts: SendRequestOptions): SenderArguments;
|
|
124
124
|
beginMessage(opcode: number | bigint, queryId?: number | bigint): Builder;
|
|
125
125
|
}
|
|
126
|
+
type ExtendedContract<T> = SandboxContract<T> | OpenedContract<T>;
|
|
127
|
+
|
|
128
|
+
type GetIntFnNames = 'cl::get<uint8>' | 'cl::get<uint16>' | 'cl::get<uint32>' | 'cl::get<uint64>' | 'cl::get<uint256>' | 'cl::get<coins>' | 'cl::get<bool>' | 'cl::get<address>';
|
|
129
|
+
declare class ClasslibWrapper extends BaseWrapper {
|
|
130
|
+
static create(code: Cell, data: Cell, workchain?: number): ClasslibWrapper;
|
|
131
|
+
buildRequest(opCode: bigint, data: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): SenderArguments;
|
|
132
|
+
sendTonPayment(provider: ContractProvider, via: Sender, opts: SendRequestOptions): Promise<void>;
|
|
133
|
+
sendInternalMessage(provider: ContractProvider, via: Sender, opCode: bigint, md: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): Promise<void>;
|
|
134
|
+
getFieldStack(provider: ContractProvider, method: string, cell: Cell, fieldName: bigint): Promise<TupleReader>;
|
|
135
|
+
getState(provider: ContractProvider): Promise<ContractState>;
|
|
136
|
+
getContractBalanceView(provider: ContractProvider, futureSeconds: bigint): Promise<bigint>;
|
|
137
|
+
getCurrentStorageCell(provider: ContractProvider): Promise<Cell>;
|
|
138
|
+
getViewFunction(provider: ContractProvider, method: string, args: TupleItem[]): Promise<TupleReader>;
|
|
139
|
+
getClInt(provider: ContractProvider, method: GetIntFnNames, cell: Cell, fieldName: bigint): Promise<bigint>;
|
|
140
|
+
getClAddress(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Address>;
|
|
141
|
+
getClCell(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
142
|
+
getClObj(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
143
|
+
getClDict(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
144
|
+
getObject(provider: ContractProvider, method: string, args: TupleItem[]): Promise<Cell>;
|
|
145
|
+
getTypeOf(provider: ContractProvider, cell: Cell): Promise<string>;
|
|
146
|
+
getDictCellItem(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<Cell>;
|
|
147
|
+
getDictUint256Item(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<bigint>;
|
|
148
|
+
getSetDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint, value: Cell): Promise<Cell>;
|
|
149
|
+
static bigintToAsciiString(num: bigint): string;
|
|
150
|
+
}
|
|
126
151
|
|
|
127
152
|
interface SharedGeneratorOptions {
|
|
128
153
|
relativeSrcPath?: string;
|
|
@@ -441,4 +466,37 @@ declare function printTransactionTrace(transactions: Transaction[], opcodeInfo:
|
|
|
441
466
|
[p: string]: string;
|
|
442
467
|
}, callerStack?: string, profile?: Profile): void;
|
|
443
468
|
|
|
444
|
-
|
|
469
|
+
interface SendInternalMessageAndExpectArgs {
|
|
470
|
+
sender: Treasury;
|
|
471
|
+
contract: SandboxContract<ClasslibWrapper>;
|
|
472
|
+
expectedTransactions: FlatTransactionComparable[];
|
|
473
|
+
opCode: bigint;
|
|
474
|
+
md: Cell;
|
|
475
|
+
value: bigint;
|
|
476
|
+
balanceRefill?: bigint;
|
|
477
|
+
queryId?: bigint;
|
|
478
|
+
profile?: Profile;
|
|
479
|
+
recursiveDecode?: boolean;
|
|
480
|
+
txDecoder?: (contract: SandboxContract<ClasslibWrapper>, internalMsgResults: SendMessageResult) => Promise<void>;
|
|
481
|
+
invertedOpcodes?: {
|
|
482
|
+
[k: string]: string;
|
|
483
|
+
};
|
|
484
|
+
}
|
|
485
|
+
interface SendMessageViaMultisigAndExpectArgs {
|
|
486
|
+
blockchain: Blockchain;
|
|
487
|
+
multiSigContract: SandboxContract<Multisig>;
|
|
488
|
+
messageBody: Cell;
|
|
489
|
+
signers: SandboxContract<TreasuryContract>[];
|
|
490
|
+
targetContract: SandboxContract<Contract | ClasslibWrapper>;
|
|
491
|
+
deploy: boolean;
|
|
492
|
+
expectedTransactions: FlatTransactionComparable[];
|
|
493
|
+
recursiveDecode?: boolean;
|
|
494
|
+
txDecoder?: (contract: SandboxContract<ClasslibWrapper>, internalMsgResults: SendMessageResult) => Promise<void>;
|
|
495
|
+
}
|
|
496
|
+
declare function sendMessageViaMultisigAndExpect({ blockchain, multiSigContract, messageBody, signers, targetContract, deploy, expectedTransactions, recursiveDecode, txDecoder, }: SendMessageViaMultisigAndExpectArgs): Promise<SendMessageResult>;
|
|
497
|
+
declare function sendInternalMessageAndExpect({ sender, contract, opCode, md, expectedTransactions, value, balanceRefill, queryId, profile, recursiveDecode, txDecoder, invertedOpcodes, }: SendInternalMessageAndExpectArgs): Promise<SendMessageResult>;
|
|
498
|
+
declare function toHaveTransactions(actualTransactions: BlockchainTransaction[], expectedTransactions: FlatTransactionComparable[]): void;
|
|
499
|
+
|
|
500
|
+
declare function openAndDeployAllStoragesTemplate(blockchain: Blockchain, deployer: SandboxContract<TreasuryContract>, artifact: BlueprintArtfiact, gasValue: bigint, opCode: bigint, md: Cell): Promise<SandboxContract<ClasslibWrapper>>;
|
|
501
|
+
|
|
502
|
+
export { type Action, type Attribute, BASE_CHAIN_ID, BaseWrapper, type BlueprintArtfiact, ClasslibWrapper, type ConstructorArgs, type ConstructorCallGenerator, Errors, type ExtendedContract, type FieldMap, type GasInfo, type GetIntFnNames, type InverseFieldMap, JettonMinter, type JettonMinterConfig, type JettonMinterContent, JettonWallet, type JettonWalletConfig, MASTER_CHAIN_ID, MASTER_CHAIN_SHARD, type Module, MultiSigErrors, MultiSigOpCodes, MultiSigParams, Multisig, type MultisigConfig, type MultisigData, Op, Order, type OrderFullConfig, type OrderInitConfig, type Profile, type SendInternalMessageAndExpectArgs, type SendMessageViaMultisigAndExpectArgs, type SendRequestOptions, type TonObject, type TonObjectsDict, type TonViewFunction, type TonViewFunctionsDict, type TransferRequest, Txiterator, type UpdateRequest, addressToBigInt, bigintToAddress, buildOnchainMetadata, cellFromArtifact, computedGeneric, differentAddress, executeFrom, executeTill, extractErrors, extractEvents, extractOpcodes, findDeepestCell, findTransaction, formatCoinsPure, generateAllConstructorCodes, generateAllDeconstructorCodes, generateAllTonClassTypes, generateAllViewFunctions, generateCommonTestUtils, generateConstructorCode, generateDeconstructorCode, generateSmlTestUtils, generateTonClassType, generateUlnTestUtils, getMsgPrices, getOpcodeCRC, getRandom, getRandomInt, getSpecificFiles, jettonContentToCell, jettonMinterConfigToCell, jettonWalletConfigToCell, makeSnakeCell, mergeConstructorDicts, multisigConfigToCell, openAndDeployAllStoragesTemplate, orderConfigToCell, parseDirectory, printTransactionTrace, saveAllTypes, saveBaseEventHandler, saveConstantsFile, saveEventsFile, saveLzEventHandler, saveLzGasTracker, saveObjectsAsTS, saveTonContractWrapper, saveTonObjectUnwrapper, saveViewFunctions, sendInternalMessageAndExpect, sendMessageViaMultisigAndExpect, storageCollected, to32ByteBuffer, toHaveTransactions };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Cell, Address, SendMode, Contract, ContractProvider, Sender, SenderArguments, Builder, Transaction, TransactionComputeVm, Message } from '@ton/core';
|
|
2
|
-
import { BlockchainTransaction, Blockchain } from '@ton/sandbox';
|
|
1
|
+
import { Cell, Address, SendMode, Contract, ContractProvider, Sender, SenderArguments, Builder, OpenedContract, TupleReader, ContractState, TupleItem, Transaction, TransactionComputeVm, Message } from '@ton/core';
|
|
2
|
+
import { SandboxContract, BlockchainTransaction, Blockchain, Treasury, SendMessageResult, TreasuryContract } from '@ton/sandbox';
|
|
3
3
|
import { FlatTransactionComparable } from '@ton/test-utils';
|
|
4
4
|
|
|
5
5
|
interface ConstructorArgs {
|
|
@@ -49,13 +49,12 @@ interface TonViewFunctionsDict {
|
|
|
49
49
|
}
|
|
50
50
|
declare function mergeConstructorDicts(result: TonObjectsDict, added: TonObjectsDict): TonObjectsDict;
|
|
51
51
|
declare function parseDirectory(directoryPath: string): TonObjectsDict;
|
|
52
|
-
declare function saveBaseEventHandler(directory: string, opcodesImportPath?: string, allTypesImportPath?: string, tonObjectUnwrapperImportPath?: string, tonContractWrapperImportPath?: string): void;
|
|
52
|
+
declare function saveBaseEventHandler(directory: string, opcodesImportPath?: string, allTypesImportPath?: string, tonObjectUnwrapperImportPath?: string, tonContractWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
53
53
|
declare function saveLzEventHandler(directory: string, allTypesImportPath?: string, baseEventHandlerImportPath?: string): void;
|
|
54
|
-
declare function saveClasslibWrapper(directory: string, baseWrapper?: string): void;
|
|
55
54
|
declare function saveTonContractWrapper(tonObjects: TonObjectsDict, directory: string, classlibWrapperImportPath?: string): void;
|
|
56
|
-
declare function saveAllTypes(tonObjects: TonObjectsDict, directory: string, tonContractWrapperImportPath?: string): void;
|
|
55
|
+
declare function saveAllTypes(tonObjects: TonObjectsDict, directory: string, tonContractWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
57
56
|
declare function saveLzGasTracker(directory: string, opcodesImportPath?: string): void;
|
|
58
|
-
declare function saveTonObjectUnwrapper(tonObjects: TonObjectsDict, directory: string, allTypesImportPath?: string, tonContractWrapperImportPath?: string): void;
|
|
57
|
+
declare function saveTonObjectUnwrapper(tonObjects: TonObjectsDict, directory: string, allTypesImportPath?: string, tonContractWrapperImportPath?: string, classlibWrapperImportPath?: string, baseWrapperImportPath?: string): void;
|
|
59
58
|
declare function generateConstructorCode(className: string, tonClasses: TonObjectsDict): TonObjectsDict;
|
|
60
59
|
declare function generateAllConstructorCodes(tonClasses: TonObjectsDict): TonObjectsDict;
|
|
61
60
|
declare function generateTonClassType(name: string, tonClasses: TonObjectsDict): TonObjectsDict;
|
|
@@ -79,11 +78,12 @@ declare function saveViewFunctions(viewFunctions: TonViewFunctionsDict, director
|
|
|
79
78
|
* @param artifact Blueprint JSON artifact object
|
|
80
79
|
* @returns {Cell}
|
|
81
80
|
*/
|
|
82
|
-
|
|
81
|
+
interface BlueprintArtfiact {
|
|
83
82
|
hex: string;
|
|
84
|
-
hash?: string
|
|
85
|
-
hashBase64?: string
|
|
86
|
-
}
|
|
83
|
+
hash?: string;
|
|
84
|
+
hashBase64?: string;
|
|
85
|
+
}
|
|
86
|
+
declare const cellFromArtifact: ({ hex }: BlueprintArtfiact) => Cell;
|
|
87
87
|
declare function getOpcodeCRC(input: string): bigint;
|
|
88
88
|
declare const MASTER_CHAIN_ID = -1;
|
|
89
89
|
declare const BASE_CHAIN_ID = 0;
|
|
@@ -123,6 +123,31 @@ declare abstract class BaseWrapper implements Contract {
|
|
|
123
123
|
buildSenderArguments(body: Cell, opts: SendRequestOptions): SenderArguments;
|
|
124
124
|
beginMessage(opcode: number | bigint, queryId?: number | bigint): Builder;
|
|
125
125
|
}
|
|
126
|
+
type ExtendedContract<T> = SandboxContract<T> | OpenedContract<T>;
|
|
127
|
+
|
|
128
|
+
type GetIntFnNames = 'cl::get<uint8>' | 'cl::get<uint16>' | 'cl::get<uint32>' | 'cl::get<uint64>' | 'cl::get<uint256>' | 'cl::get<coins>' | 'cl::get<bool>' | 'cl::get<address>';
|
|
129
|
+
declare class ClasslibWrapper extends BaseWrapper {
|
|
130
|
+
static create(code: Cell, data: Cell, workchain?: number): ClasslibWrapper;
|
|
131
|
+
buildRequest(opCode: bigint, data: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): SenderArguments;
|
|
132
|
+
sendTonPayment(provider: ContractProvider, via: Sender, opts: SendRequestOptions): Promise<void>;
|
|
133
|
+
sendInternalMessage(provider: ContractProvider, via: Sender, opCode: bigint, md: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): Promise<void>;
|
|
134
|
+
getFieldStack(provider: ContractProvider, method: string, cell: Cell, fieldName: bigint): Promise<TupleReader>;
|
|
135
|
+
getState(provider: ContractProvider): Promise<ContractState>;
|
|
136
|
+
getContractBalanceView(provider: ContractProvider, futureSeconds: bigint): Promise<bigint>;
|
|
137
|
+
getCurrentStorageCell(provider: ContractProvider): Promise<Cell>;
|
|
138
|
+
getViewFunction(provider: ContractProvider, method: string, args: TupleItem[]): Promise<TupleReader>;
|
|
139
|
+
getClInt(provider: ContractProvider, method: GetIntFnNames, cell: Cell, fieldName: bigint): Promise<bigint>;
|
|
140
|
+
getClAddress(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Address>;
|
|
141
|
+
getClCell(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
142
|
+
getClObj(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
143
|
+
getClDict(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
144
|
+
getObject(provider: ContractProvider, method: string, args: TupleItem[]): Promise<Cell>;
|
|
145
|
+
getTypeOf(provider: ContractProvider, cell: Cell): Promise<string>;
|
|
146
|
+
getDictCellItem(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<Cell>;
|
|
147
|
+
getDictUint256Item(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<bigint>;
|
|
148
|
+
getSetDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint, value: Cell): Promise<Cell>;
|
|
149
|
+
static bigintToAsciiString(num: bigint): string;
|
|
150
|
+
}
|
|
126
151
|
|
|
127
152
|
interface SharedGeneratorOptions {
|
|
128
153
|
relativeSrcPath?: string;
|
|
@@ -441,4 +466,37 @@ declare function printTransactionTrace(transactions: Transaction[], opcodeInfo:
|
|
|
441
466
|
[p: string]: string;
|
|
442
467
|
}, callerStack?: string, profile?: Profile): void;
|
|
443
468
|
|
|
444
|
-
|
|
469
|
+
interface SendInternalMessageAndExpectArgs {
|
|
470
|
+
sender: Treasury;
|
|
471
|
+
contract: SandboxContract<ClasslibWrapper>;
|
|
472
|
+
expectedTransactions: FlatTransactionComparable[];
|
|
473
|
+
opCode: bigint;
|
|
474
|
+
md: Cell;
|
|
475
|
+
value: bigint;
|
|
476
|
+
balanceRefill?: bigint;
|
|
477
|
+
queryId?: bigint;
|
|
478
|
+
profile?: Profile;
|
|
479
|
+
recursiveDecode?: boolean;
|
|
480
|
+
txDecoder?: (contract: SandboxContract<ClasslibWrapper>, internalMsgResults: SendMessageResult) => Promise<void>;
|
|
481
|
+
invertedOpcodes?: {
|
|
482
|
+
[k: string]: string;
|
|
483
|
+
};
|
|
484
|
+
}
|
|
485
|
+
interface SendMessageViaMultisigAndExpectArgs {
|
|
486
|
+
blockchain: Blockchain;
|
|
487
|
+
multiSigContract: SandboxContract<Multisig>;
|
|
488
|
+
messageBody: Cell;
|
|
489
|
+
signers: SandboxContract<TreasuryContract>[];
|
|
490
|
+
targetContract: SandboxContract<Contract | ClasslibWrapper>;
|
|
491
|
+
deploy: boolean;
|
|
492
|
+
expectedTransactions: FlatTransactionComparable[];
|
|
493
|
+
recursiveDecode?: boolean;
|
|
494
|
+
txDecoder?: (contract: SandboxContract<ClasslibWrapper>, internalMsgResults: SendMessageResult) => Promise<void>;
|
|
495
|
+
}
|
|
496
|
+
declare function sendMessageViaMultisigAndExpect({ blockchain, multiSigContract, messageBody, signers, targetContract, deploy, expectedTransactions, recursiveDecode, txDecoder, }: SendMessageViaMultisigAndExpectArgs): Promise<SendMessageResult>;
|
|
497
|
+
declare function sendInternalMessageAndExpect({ sender, contract, opCode, md, expectedTransactions, value, balanceRefill, queryId, profile, recursiveDecode, txDecoder, invertedOpcodes, }: SendInternalMessageAndExpectArgs): Promise<SendMessageResult>;
|
|
498
|
+
declare function toHaveTransactions(actualTransactions: BlockchainTransaction[], expectedTransactions: FlatTransactionComparable[]): void;
|
|
499
|
+
|
|
500
|
+
declare function openAndDeployAllStoragesTemplate(blockchain: Blockchain, deployer: SandboxContract<TreasuryContract>, artifact: BlueprintArtfiact, gasValue: bigint, opCode: bigint, md: Cell): Promise<SandboxContract<ClasslibWrapper>>;
|
|
501
|
+
|
|
502
|
+
export { type Action, type Attribute, BASE_CHAIN_ID, BaseWrapper, type BlueprintArtfiact, ClasslibWrapper, type ConstructorArgs, type ConstructorCallGenerator, Errors, type ExtendedContract, type FieldMap, type GasInfo, type GetIntFnNames, type InverseFieldMap, JettonMinter, type JettonMinterConfig, type JettonMinterContent, JettonWallet, type JettonWalletConfig, MASTER_CHAIN_ID, MASTER_CHAIN_SHARD, type Module, MultiSigErrors, MultiSigOpCodes, MultiSigParams, Multisig, type MultisigConfig, type MultisigData, Op, Order, type OrderFullConfig, type OrderInitConfig, type Profile, type SendInternalMessageAndExpectArgs, type SendMessageViaMultisigAndExpectArgs, type SendRequestOptions, type TonObject, type TonObjectsDict, type TonViewFunction, type TonViewFunctionsDict, type TransferRequest, Txiterator, type UpdateRequest, addressToBigInt, bigintToAddress, buildOnchainMetadata, cellFromArtifact, computedGeneric, differentAddress, executeFrom, executeTill, extractErrors, extractEvents, extractOpcodes, findDeepestCell, findTransaction, formatCoinsPure, generateAllConstructorCodes, generateAllDeconstructorCodes, generateAllTonClassTypes, generateAllViewFunctions, generateCommonTestUtils, generateConstructorCode, generateDeconstructorCode, generateSmlTestUtils, generateTonClassType, generateUlnTestUtils, getMsgPrices, getOpcodeCRC, getRandom, getRandomInt, getSpecificFiles, jettonContentToCell, jettonMinterConfigToCell, jettonWalletConfigToCell, makeSnakeCell, mergeConstructorDicts, multisigConfigToCell, openAndDeployAllStoragesTemplate, orderConfigToCell, parseDirectory, printTransactionTrace, saveAllTypes, saveBaseEventHandler, saveConstantsFile, saveEventsFile, saveLzEventHandler, saveLzGasTracker, saveObjectsAsTS, saveTonContractWrapper, saveTonObjectUnwrapper, saveViewFunctions, sendInternalMessageAndExpect, sendMessageViaMultisigAndExpect, storageCollected, to32ByteBuffer, toHaveTransactions };
|