@layerzerolabs/lz-ton-sdk-v2 3.0.79 → 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 +12 -0
- package/dist/index.cjs +5326 -4407
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -52
- package/dist/index.d.ts +5 -52
- package/dist/index.mjs +5328 -4408
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { Cell, Address, DictionaryValue, Dictionary,
|
|
2
|
-
import {
|
|
1
|
+
import { Cell, Address, DictionaryValue, Dictionary, ContractProvider, Transaction, Tuple, MessageRelaxed } from '@ton/core';
|
|
2
|
+
import { ClasslibWrapper, ExtendedContract } from '@layerzerolabs/ton-sdk-tools';
|
|
3
|
+
export { ExtendedContract, SendRequestOptions } from '@layerzerolabs/ton-sdk-tools';
|
|
4
|
+
import { BlockchainTransaction, EventMessageSent, SendMessageResult } from '@ton/sandbox';
|
|
3
5
|
|
|
4
6
|
declare const hexToCells: (hex: string) => Cell;
|
|
5
7
|
declare const getTotalBits: (cell: Cell) => number;
|
|
@@ -3754,55 +3756,8 @@ declare const tonResolvedObjects: {
|
|
|
3754
3756
|
};
|
|
3755
3757
|
};
|
|
3756
3758
|
|
|
3757
|
-
interface SendRequestOptions {
|
|
3758
|
-
value: number | bigint | string;
|
|
3759
|
-
bounce?: boolean;
|
|
3760
|
-
sendMode?: SendMode;
|
|
3761
|
-
queryId?: number | bigint;
|
|
3762
|
-
withInit?: boolean;
|
|
3763
|
-
}
|
|
3764
|
-
declare abstract class BaseWrapper implements Contract {
|
|
3765
|
-
readonly address: Address;
|
|
3766
|
-
readonly init?: {
|
|
3767
|
-
code: Cell;
|
|
3768
|
-
data: Cell;
|
|
3769
|
-
} | undefined;
|
|
3770
|
-
constructor(address: Address, init?: {
|
|
3771
|
-
code: Cell;
|
|
3772
|
-
data: Cell;
|
|
3773
|
-
} | undefined);
|
|
3774
|
-
sendDeploy(provider: ContractProvider, via: Sender, value: bigint | string): Promise<void>;
|
|
3775
|
-
sendRequest(provider: ContractProvider, via: Sender, request: SenderArguments): Promise<void>;
|
|
3776
|
-
getDeployed(provider: ContractProvider): Promise<boolean>;
|
|
3777
|
-
buildSenderArguments(body: Cell, opts: SendRequestOptions): SenderArguments;
|
|
3778
|
-
beginMessage(opcode: number | bigint, queryId?: number | bigint): Builder;
|
|
3779
|
-
}
|
|
3780
|
-
|
|
3781
|
-
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>';
|
|
3782
|
-
declare class ClasslibWrapper extends BaseWrapper {
|
|
3783
|
-
static create(code: Cell, data: Cell, workchain?: number): ClasslibWrapper;
|
|
3784
|
-
buildRequest(opCode: bigint, data: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): SenderArguments;
|
|
3785
|
-
sendTonPayment(provider: ContractProvider, via: Sender, opts: SendRequestOptions): Promise<void>;
|
|
3786
|
-
sendInternalMessage(provider: ContractProvider, via: Sender, opCode: bigint, md: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): Promise<void>;
|
|
3787
|
-
getFieldStack(provider: ContractProvider, method: string, cell: Cell, fieldName: bigint): Promise<TupleReader>;
|
|
3788
|
-
getState(provider: ContractProvider): Promise<ContractState>;
|
|
3789
|
-
getContractBalanceView(provider: ContractProvider, futureSeconds: bigint): Promise<bigint>;
|
|
3790
|
-
getCurrentStorageCell(provider: ContractProvider): Promise<Cell>;
|
|
3791
|
-
getViewFunction(provider: ContractProvider, method: string, args: TupleItem[]): Promise<TupleReader>;
|
|
3792
|
-
getClInt(provider: ContractProvider, method: GetIntFnNames, cell: Cell, fieldName: bigint): Promise<bigint>;
|
|
3793
|
-
getClAddress(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Address>;
|
|
3794
|
-
getClCell(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3795
|
-
getClObj(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3796
|
-
getClDict(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3797
|
-
getObject(provider: ContractProvider, method: string, args: TupleItem[]): Promise<Cell>;
|
|
3798
|
-
getDictCellItem(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<Cell>;
|
|
3799
|
-
getDictUint256Item(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<bigint>;
|
|
3800
|
-
getSetDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint, value: Cell): Promise<Cell>;
|
|
3801
|
-
}
|
|
3802
|
-
|
|
3803
3759
|
declare class TonContractWrapper extends ClasslibWrapper {
|
|
3804
3760
|
static create(code: Cell, data: Cell, workchain?: number): TonContractWrapper;
|
|
3805
|
-
static bigintToAsciiString(num: bigint): string;
|
|
3806
3761
|
getNewBaseOApp(provider: ContractProvider, args: {
|
|
3807
3762
|
controllerAddress: bigint;
|
|
3808
3763
|
eid: bigint;
|
|
@@ -4276,7 +4231,6 @@ declare class TonContractWrapper extends ClasslibWrapper {
|
|
|
4276
4231
|
}): Promise<Cell>;
|
|
4277
4232
|
}
|
|
4278
4233
|
|
|
4279
|
-
type ExtendedContract<T> = SandboxContract<T> | OpenedContract<T>;
|
|
4280
4234
|
declare class LzDict {
|
|
4281
4235
|
_cell: Cell;
|
|
4282
4236
|
constructor(data: Cell);
|
|
@@ -4815,7 +4769,6 @@ declare const keyMap: {
|
|
|
4815
4769
|
};
|
|
4816
4770
|
|
|
4817
4771
|
declare class TonObjectUnwrapper {
|
|
4818
|
-
static getTypeOf(provider: ExtendedContract<TonContractWrapper>, obj_cell: Cell): Promise<string>;
|
|
4819
4772
|
static getBaseOAppToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<BaseOApp>;
|
|
4820
4773
|
static getCounterToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Counter>;
|
|
4821
4774
|
static getLzConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzConfig>;
|
|
@@ -15921,4 +15874,4 @@ declare function getCompiledJson(name: string, root: string): {
|
|
|
15921
15874
|
hex: string;
|
|
15922
15875
|
};
|
|
15923
15876
|
|
|
15924
|
-
export { type ActionEvent, type AddressListTypeLike, type AddressTypeLike, type ArbitrumPriceFeedExtension, type BaseOApp, type BaseStorage,
|
|
15877
|
+
export { type ActionEvent, type AddressListTypeLike, type AddressTypeLike, type ArbitrumPriceFeedExtension, type BaseOApp, type BaseStorage, type BoolTypeLike, type Channel, type ClDeclareCellField, type ClDeclareField, type ClDeclareNumericField, type ClassDefinition, type ClassNames, type ClassTypeLike, type ComputeSizeGasTest, type Controller, type Counter, type DecodedAndRaw, type DictionaryTypeLike, type Dvn, type DvnFeelib, type DvnFeesPaidEvent, ERRORS, EVENTS, type Endpoint, type EnhancedAddress, type EnhancedAddressList, type EnhancedCell, type Executor, type ExecutorFeePaidEvent, type ExecutorFeelib, type FieldTypeToValue, type FieldTypes, type Fields, type GasStructure, type LZFields, type LoadableDict, type LzAttestation, type LzConfig, LzDict, type LzEpConfigNewWithConnection, LzEventHandler, LzGasTracker, type LzMsglibInfo, type LzPacket, type LzPath, type LzReceiveEpConfig, type LzSendEpConfig, type LzSmlJobAssigned, MAX_CELL_BITS, type Md, type MdAddMsglib, type MdBool, type MdChannelNonceInfo, type MdClaimTon, type MdCoinsAmount, type MdCounterIncrement, type MdDeploy, type MdExecuteParams, type MdExtendedMd, type MdGetMsglibInfoCallback, type MdInitEndpoint, type MdInitSmlConnection, type MdInitUln, type MdInitUlnConnection, type MdInitUlnManager, type MdLzReceivePrepare, type MdLzReceiveStatus, type MdLzReceiveStatusNewFull, type MdLzSend, type MdMdAddress, type MdMdEid, type MdMdObj, type MdMessagingReceipt, type MdMsglibSendCallback, type MdNativeDrop, type MdNonce, type MdOptionsExtended, type MdOptionsV1, type MdOptionsV2, type MdPacketId, type MdPacketSent, type MdRentRefill, type MdSetAddress, type MdSetAdminWorkerAddresses, type MdSetDict, type MdSetEpConfig, type MdSetPeer, type MdSetQuorum, type MdSetSmlManagerConfig, type MdSignedRequest, type MdTreasuryFeeBps, type MdUlnSend, type MdUlnVerification, type MdUlnWorkerFeelibBytecode, type MdUlnWorkerFeelibEvents, type MdVerificationStatus, NAME_WIDTH, type NumberTypeLike, OPCODES, type POOO, PUBLIC_KEY_BYTE_LENGTH, type PathLike, type PathWayLike, type PriceFeedCache, type PriceFeedFeelib, type Primitive, type Proxy, type SmlConnection, type SmlManager, TonContractWrapper, TonObjectUnwrapper, type TonObjects, type TonObjectsKeys, type Uln, type UlnConnection, type UlnEvents, type UlnManager, type UlnReceiveConfig, type UlnSendConfig, type UlnWorkerFeelibInfo, type ValueOf, type WorkerCoreStorage, _getTypeWidth, addressToBigInt, addressToHex, appsAllStorages, appsCounter, asciiStringToBigint, baseBuildClass, baseDecodeClass, bigIntToHex, bigintToAddress, bigintToAsciiString, buildClass, buildPathClass, calculateCellConsumption, calculateCellConsumptionFromHex, cellsToHex, cl, clDeclare, clGetCellRef, clGetUint, compareAddresses, createVerifierDictSet, decodeClass, deconstructorMap, deepDecode, deepDiff, deserializeAddressList, emptyCell, emptyMap, emptyPOOO, fieldTypes, generateBuildClass, generateDecodeClass, getBocStringFromMessage, getCellName, getCellNameNumber, getClosestByteAlignedBits, getCompiledCode, getCompiledJson, getEndpointInitStorage, getLzDict, getMessageFromBocString, getName, getTotalBits, hexToCells, initBaseOApp, initBaseStorage, initWorkerCoreStorage, isClassName, isLoadableDict, jettonsZro, keyMap, nameMap, nullObject, numberTypeLikeToAbsBigInt, opcodeToName, parseTonAddress, printDeepDecode, printDeepDiff, protocolChannel, protocolController, protocolEndpoint, publicKeyToHash, serializeAddressList, simpleMsglibSmlConnection, simpleMsglibSmlManager, srcMultisig, to32ByteBuffer, tonObjects, tonRealNameByCellName, tonResolvedObjects, ultralightnodeUln, ultralightnodeUlnConnection, ultralightnodeUlnManager, ultralightnodeWorkerFeeLibs, workerFeeLibsDvnFeeLib, workerFeeLibsExecutorFeeLib, workerFeeLibsMaliciousFeeLib, workersDvn };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { Cell, Address, DictionaryValue, Dictionary,
|
|
2
|
-
import {
|
|
1
|
+
import { Cell, Address, DictionaryValue, Dictionary, ContractProvider, Transaction, Tuple, MessageRelaxed } from '@ton/core';
|
|
2
|
+
import { ClasslibWrapper, ExtendedContract } from '@layerzerolabs/ton-sdk-tools';
|
|
3
|
+
export { ExtendedContract, SendRequestOptions } from '@layerzerolabs/ton-sdk-tools';
|
|
4
|
+
import { BlockchainTransaction, EventMessageSent, SendMessageResult } from '@ton/sandbox';
|
|
3
5
|
|
|
4
6
|
declare const hexToCells: (hex: string) => Cell;
|
|
5
7
|
declare const getTotalBits: (cell: Cell) => number;
|
|
@@ -3754,55 +3756,8 @@ declare const tonResolvedObjects: {
|
|
|
3754
3756
|
};
|
|
3755
3757
|
};
|
|
3756
3758
|
|
|
3757
|
-
interface SendRequestOptions {
|
|
3758
|
-
value: number | bigint | string;
|
|
3759
|
-
bounce?: boolean;
|
|
3760
|
-
sendMode?: SendMode;
|
|
3761
|
-
queryId?: number | bigint;
|
|
3762
|
-
withInit?: boolean;
|
|
3763
|
-
}
|
|
3764
|
-
declare abstract class BaseWrapper implements Contract {
|
|
3765
|
-
readonly address: Address;
|
|
3766
|
-
readonly init?: {
|
|
3767
|
-
code: Cell;
|
|
3768
|
-
data: Cell;
|
|
3769
|
-
} | undefined;
|
|
3770
|
-
constructor(address: Address, init?: {
|
|
3771
|
-
code: Cell;
|
|
3772
|
-
data: Cell;
|
|
3773
|
-
} | undefined);
|
|
3774
|
-
sendDeploy(provider: ContractProvider, via: Sender, value: bigint | string): Promise<void>;
|
|
3775
|
-
sendRequest(provider: ContractProvider, via: Sender, request: SenderArguments): Promise<void>;
|
|
3776
|
-
getDeployed(provider: ContractProvider): Promise<boolean>;
|
|
3777
|
-
buildSenderArguments(body: Cell, opts: SendRequestOptions): SenderArguments;
|
|
3778
|
-
beginMessage(opcode: number | bigint, queryId?: number | bigint): Builder;
|
|
3779
|
-
}
|
|
3780
|
-
|
|
3781
|
-
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>';
|
|
3782
|
-
declare class ClasslibWrapper extends BaseWrapper {
|
|
3783
|
-
static create(code: Cell, data: Cell, workchain?: number): ClasslibWrapper;
|
|
3784
|
-
buildRequest(opCode: bigint, data: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): SenderArguments;
|
|
3785
|
-
sendTonPayment(provider: ContractProvider, via: Sender, opts: SendRequestOptions): Promise<void>;
|
|
3786
|
-
sendInternalMessage(provider: ContractProvider, via: Sender, opCode: bigint, md: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): Promise<void>;
|
|
3787
|
-
getFieldStack(provider: ContractProvider, method: string, cell: Cell, fieldName: bigint): Promise<TupleReader>;
|
|
3788
|
-
getState(provider: ContractProvider): Promise<ContractState>;
|
|
3789
|
-
getContractBalanceView(provider: ContractProvider, futureSeconds: bigint): Promise<bigint>;
|
|
3790
|
-
getCurrentStorageCell(provider: ContractProvider): Promise<Cell>;
|
|
3791
|
-
getViewFunction(provider: ContractProvider, method: string, args: TupleItem[]): Promise<TupleReader>;
|
|
3792
|
-
getClInt(provider: ContractProvider, method: GetIntFnNames, cell: Cell, fieldName: bigint): Promise<bigint>;
|
|
3793
|
-
getClAddress(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Address>;
|
|
3794
|
-
getClCell(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3795
|
-
getClObj(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3796
|
-
getClDict(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
3797
|
-
getObject(provider: ContractProvider, method: string, args: TupleItem[]): Promise<Cell>;
|
|
3798
|
-
getDictCellItem(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<Cell>;
|
|
3799
|
-
getDictUint256Item(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<bigint>;
|
|
3800
|
-
getSetDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint, value: Cell): Promise<Cell>;
|
|
3801
|
-
}
|
|
3802
|
-
|
|
3803
3759
|
declare class TonContractWrapper extends ClasslibWrapper {
|
|
3804
3760
|
static create(code: Cell, data: Cell, workchain?: number): TonContractWrapper;
|
|
3805
|
-
static bigintToAsciiString(num: bigint): string;
|
|
3806
3761
|
getNewBaseOApp(provider: ContractProvider, args: {
|
|
3807
3762
|
controllerAddress: bigint;
|
|
3808
3763
|
eid: bigint;
|
|
@@ -4276,7 +4231,6 @@ declare class TonContractWrapper extends ClasslibWrapper {
|
|
|
4276
4231
|
}): Promise<Cell>;
|
|
4277
4232
|
}
|
|
4278
4233
|
|
|
4279
|
-
type ExtendedContract<T> = SandboxContract<T> | OpenedContract<T>;
|
|
4280
4234
|
declare class LzDict {
|
|
4281
4235
|
_cell: Cell;
|
|
4282
4236
|
constructor(data: Cell);
|
|
@@ -4815,7 +4769,6 @@ declare const keyMap: {
|
|
|
4815
4769
|
};
|
|
4816
4770
|
|
|
4817
4771
|
declare class TonObjectUnwrapper {
|
|
4818
|
-
static getTypeOf(provider: ExtendedContract<TonContractWrapper>, obj_cell: Cell): Promise<string>;
|
|
4819
4772
|
static getBaseOAppToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<BaseOApp>;
|
|
4820
4773
|
static getCounterToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Counter>;
|
|
4821
4774
|
static getLzConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzConfig>;
|
|
@@ -15921,4 +15874,4 @@ declare function getCompiledJson(name: string, root: string): {
|
|
|
15921
15874
|
hex: string;
|
|
15922
15875
|
};
|
|
15923
15876
|
|
|
15924
|
-
export { type ActionEvent, type AddressListTypeLike, type AddressTypeLike, type ArbitrumPriceFeedExtension, type BaseOApp, type BaseStorage,
|
|
15877
|
+
export { type ActionEvent, type AddressListTypeLike, type AddressTypeLike, type ArbitrumPriceFeedExtension, type BaseOApp, type BaseStorage, type BoolTypeLike, type Channel, type ClDeclareCellField, type ClDeclareField, type ClDeclareNumericField, type ClassDefinition, type ClassNames, type ClassTypeLike, type ComputeSizeGasTest, type Controller, type Counter, type DecodedAndRaw, type DictionaryTypeLike, type Dvn, type DvnFeelib, type DvnFeesPaidEvent, ERRORS, EVENTS, type Endpoint, type EnhancedAddress, type EnhancedAddressList, type EnhancedCell, type Executor, type ExecutorFeePaidEvent, type ExecutorFeelib, type FieldTypeToValue, type FieldTypes, type Fields, type GasStructure, type LZFields, type LoadableDict, type LzAttestation, type LzConfig, LzDict, type LzEpConfigNewWithConnection, LzEventHandler, LzGasTracker, type LzMsglibInfo, type LzPacket, type LzPath, type LzReceiveEpConfig, type LzSendEpConfig, type LzSmlJobAssigned, MAX_CELL_BITS, type Md, type MdAddMsglib, type MdBool, type MdChannelNonceInfo, type MdClaimTon, type MdCoinsAmount, type MdCounterIncrement, type MdDeploy, type MdExecuteParams, type MdExtendedMd, type MdGetMsglibInfoCallback, type MdInitEndpoint, type MdInitSmlConnection, type MdInitUln, type MdInitUlnConnection, type MdInitUlnManager, type MdLzReceivePrepare, type MdLzReceiveStatus, type MdLzReceiveStatusNewFull, type MdLzSend, type MdMdAddress, type MdMdEid, type MdMdObj, type MdMessagingReceipt, type MdMsglibSendCallback, type MdNativeDrop, type MdNonce, type MdOptionsExtended, type MdOptionsV1, type MdOptionsV2, type MdPacketId, type MdPacketSent, type MdRentRefill, type MdSetAddress, type MdSetAdminWorkerAddresses, type MdSetDict, type MdSetEpConfig, type MdSetPeer, type MdSetQuorum, type MdSetSmlManagerConfig, type MdSignedRequest, type MdTreasuryFeeBps, type MdUlnSend, type MdUlnVerification, type MdUlnWorkerFeelibBytecode, type MdUlnWorkerFeelibEvents, type MdVerificationStatus, NAME_WIDTH, type NumberTypeLike, OPCODES, type POOO, PUBLIC_KEY_BYTE_LENGTH, type PathLike, type PathWayLike, type PriceFeedCache, type PriceFeedFeelib, type Primitive, type Proxy, type SmlConnection, type SmlManager, TonContractWrapper, TonObjectUnwrapper, type TonObjects, type TonObjectsKeys, type Uln, type UlnConnection, type UlnEvents, type UlnManager, type UlnReceiveConfig, type UlnSendConfig, type UlnWorkerFeelibInfo, type ValueOf, type WorkerCoreStorage, _getTypeWidth, addressToBigInt, addressToHex, appsAllStorages, appsCounter, asciiStringToBigint, baseBuildClass, baseDecodeClass, bigIntToHex, bigintToAddress, bigintToAsciiString, buildClass, buildPathClass, calculateCellConsumption, calculateCellConsumptionFromHex, cellsToHex, cl, clDeclare, clGetCellRef, clGetUint, compareAddresses, createVerifierDictSet, decodeClass, deconstructorMap, deepDecode, deepDiff, deserializeAddressList, emptyCell, emptyMap, emptyPOOO, fieldTypes, generateBuildClass, generateDecodeClass, getBocStringFromMessage, getCellName, getCellNameNumber, getClosestByteAlignedBits, getCompiledCode, getCompiledJson, getEndpointInitStorage, getLzDict, getMessageFromBocString, getName, getTotalBits, hexToCells, initBaseOApp, initBaseStorage, initWorkerCoreStorage, isClassName, isLoadableDict, jettonsZro, keyMap, nameMap, nullObject, numberTypeLikeToAbsBigInt, opcodeToName, parseTonAddress, printDeepDecode, printDeepDiff, protocolChannel, protocolController, protocolEndpoint, publicKeyToHash, serializeAddressList, simpleMsglibSmlConnection, simpleMsglibSmlManager, srcMultisig, to32ByteBuffer, tonObjects, tonRealNameByCellName, tonResolvedObjects, ultralightnodeUln, ultralightnodeUlnConnection, ultralightnodeUlnManager, ultralightnodeWorkerFeeLibs, workerFeeLibsDvnFeeLib, workerFeeLibsExecutorFeeLib, workerFeeLibsMaliciousFeeLib, workersDvn };
|