@layerzerolabs/lz-ton-sdk-v2 3.0.12-ton.0
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 +103 -0
- package/artifacts/AllStorages.compiled.json +1 -0
- package/artifacts/AllStorages.test.compiled.json +1 -0
- package/artifacts/BaseContract.test.compiled.json +1 -0
- package/artifacts/Channel.compiled.json +1 -0
- package/artifacts/Channel.permissions.test.compiled.json +1 -0
- package/artifacts/ChannelBurn.test.compiled.json +1 -0
- package/artifacts/ChannelCommitPacket.test.compiled.json +1 -0
- package/artifacts/ChannelConfig.test.compiled.json +1 -0
- package/artifacts/ChannelInitialize.test.compiled.json +1 -0
- package/artifacts/ChannelMsglibIntegration.test.compiled.json +1 -0
- package/artifacts/ChannelMsglibSendCallback.test.compiled.json +1 -0
- package/artifacts/ChannelNilify.test.compiled.json +1 -0
- package/artifacts/ChannelReceive.test.compiled.json +1 -0
- package/artifacts/ChannelReceiveCallback.test.compiled.json +1 -0
- package/artifacts/ChannelReceiveView.test.compiled.json +1 -0
- package/artifacts/ChannelSend.test.compiled.json +1 -0
- package/artifacts/Classlib.test.compiled.json +1 -0
- package/artifacts/Connection.compiled.json +1 -0
- package/artifacts/Connection.test.compiled.json +1 -0
- package/artifacts/Controller.assertions.test.compiled.json +1 -0
- package/artifacts/Controller.compiled.json +1 -0
- package/artifacts/Controller.permissions.test.compiled.json +1 -0
- package/artifacts/Controller.test.compiled.json +1 -0
- package/artifacts/Counter.compiled.json +1 -0
- package/artifacts/Counter.permissions.test.compiled.json +1 -0
- package/artifacts/Counter.setters.test.compiled.json +1 -0
- package/artifacts/Counter.test.compiled.json +1 -0
- package/artifacts/Dvn.compiled.json +1 -0
- package/artifacts/Dvn.test.compiled.json +1 -0
- package/artifacts/Endpoint.compiled.json +1 -0
- package/artifacts/Endpoint.permissions.test.compiled.json +1 -0
- package/artifacts/Endpoint.test.compiled.json +1 -0
- package/artifacts/EndpointSetEpConfigDefaults.test.compiled.json +1 -0
- package/artifacts/Executor.compiled.json +1 -0
- package/artifacts/Executor.test.compiled.json +1 -0
- package/artifacts/LzClasses.test.compiled.json +1 -0
- package/artifacts/LzUtil.test.compiled.json +1 -0
- package/artifacts/MsgData.test.compiled.json +1 -0
- package/artifacts/MsglibPacketCodec.test.compiled.json +1 -0
- package/artifacts/MultiSig.compiled.json +1 -0
- package/artifacts/MultiSigOrder.compiled.json +1 -0
- package/artifacts/PipelinedOutOfOrder.test.compiled.json +1 -0
- package/artifacts/SmlConnection.compiled.json +1 -0
- package/artifacts/SmlConnection.permissions.test.compiled.json +1 -0
- package/artifacts/SmlConnection.test.compiled.json +1 -0
- package/artifacts/SmlManager.compiled.json +1 -0
- package/artifacts/SmlManager.permissions.test.compiled.json +1 -0
- package/artifacts/SmlManager.test.compiled.json +1 -0
- package/artifacts/Uln.compiled.json +1 -0
- package/artifacts/Uln.test.compiled.json +1 -0
- package/artifacts/UlnManager.compiled.json +1 -0
- package/artifacts/UlnManager.test.compiled.json +1 -0
- package/artifacts/UlnReceiveConfig.test.compiled.json +1 -0
- package/artifacts/UlnSend.test.compiled.json +1 -0
- package/artifacts/UlnSendConfig.test.compiled.json +1 -0
- package/artifacts/UlnSendWorkerFactory.test.compiled.json +1 -0
- package/artifacts/UlnUtil.test.compiled.json +1 -0
- package/artifacts/WorkerCore.test.compiled.json +1 -0
- package/artifacts/ZroMinter.compiled.json +1 -0
- package/artifacts/ZroWallet.compiled.json +1 -0
- package/deployments/ton-sandbox-local/AllStorages.json +9 -0
- package/deployments/ton-sandbox-local/Controller.json +9 -0
- package/deployments/ton-sandbox-local/Counter.json +9 -0
- package/deployments/ton-sandbox-local/SmlManager.json +9 -0
- package/deployments/ton-testnet/Counter.json +9 -0
- package/deployments/ton-testnet/Delegate.json +9 -0
- package/deployments/ton-testnet/EndpointMaster.json +9 -0
- package/deployments/ton-testnet/SimpleMessageLib.json +9 -0
- package/dist/index.cjs +14937 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +3140 -0
- package/dist/index.d.ts +3140 -0
- package/dist/index.mjs +14859 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +67 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,3140 @@
|
|
|
1
|
+
import { SendMode, Contract, Address, Cell, ContractProvider, Sender, SenderArguments, TupleReader, ContractState, TupleItem, OpenedContract, Builder, Tuple } from '@ton/core';
|
|
2
|
+
import { SandboxContract, BlockchainTransaction, EventMessageSent, SendMessageResult } from '@ton/sandbox';
|
|
3
|
+
|
|
4
|
+
interface SendRequestOptions {
|
|
5
|
+
value: number | bigint | string;
|
|
6
|
+
bounce?: boolean;
|
|
7
|
+
sendMode?: SendMode;
|
|
8
|
+
queryId?: number | bigint;
|
|
9
|
+
withInit?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare abstract class BaseWrapper implements Contract {
|
|
12
|
+
readonly address: Address;
|
|
13
|
+
readonly init?: {
|
|
14
|
+
code: Cell;
|
|
15
|
+
data: Cell;
|
|
16
|
+
} | undefined;
|
|
17
|
+
constructor(address: Address, init?: {
|
|
18
|
+
code: Cell;
|
|
19
|
+
data: Cell;
|
|
20
|
+
} | undefined);
|
|
21
|
+
sendDeploy(provider: ContractProvider, via: Sender, value: bigint | string): Promise<void>;
|
|
22
|
+
buildSenderArguments(body: Cell, opts: SendRequestOptions): SenderArguments;
|
|
23
|
+
sendRequest(provider: ContractProvider, via: Sender, request: SenderArguments): Promise<void>;
|
|
24
|
+
sendArbitraryOp(provider: ContractProvider, via: Sender, op_code: number, opts: {
|
|
25
|
+
value: bigint | string;
|
|
26
|
+
queryId?: number | bigint;
|
|
27
|
+
}): Promise<void>;
|
|
28
|
+
getDeployed(provider: ContractProvider): Promise<boolean>;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
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>';
|
|
32
|
+
declare class TonContractWrapper extends BaseWrapper {
|
|
33
|
+
static create(code: Cell, data: Cell, workchain?: number): TonContractWrapper;
|
|
34
|
+
getFieldStack(provider: ContractProvider, method: string, cell: Cell, fieldName: bigint): Promise<TupleReader>;
|
|
35
|
+
getState(provider: ContractProvider): Promise<ContractState>;
|
|
36
|
+
getCurrentStorage(provider: ContractProvider): Promise<TupleReader>;
|
|
37
|
+
getCurrentStorageCell(provider: ContractProvider): Promise<Cell>;
|
|
38
|
+
getViewFunction(provider: ContractProvider, method: string, args: TupleItem[]): Promise<TupleReader>;
|
|
39
|
+
getClInt(provider: ContractProvider, method: GetIntFnNames, cell: Cell, fieldName: bigint): Promise<bigint>;
|
|
40
|
+
getClAddress(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Address>;
|
|
41
|
+
getClCell(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
42
|
+
getClObj(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
43
|
+
getClDict(provider: ContractProvider, cell: Cell, fieldName: bigint): Promise<Cell>;
|
|
44
|
+
getObject(provider: ContractProvider, method: string, args: TupleItem[]): Promise<Cell>;
|
|
45
|
+
getDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint): Promise<Cell>;
|
|
46
|
+
getSetDictItem(provider: ContractProvider, dict_cell: Cell, key: bigint, value: Cell): Promise<Cell>;
|
|
47
|
+
buildRequest(opCode: bigint, data: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): SenderArguments;
|
|
48
|
+
sendInternalMessage(provider: ContractProvider, via: Sender, opCode: bigint, md: Cell, opts: SendRequestOptions, balanceRefill?: bigint, queryId?: number | bigint): Promise<void>;
|
|
49
|
+
getNewBaseOAppCell(provider: ContractProvider, args: {
|
|
50
|
+
controllerAddress: bigint;
|
|
51
|
+
eid: bigint;
|
|
52
|
+
endpointCode: Cell;
|
|
53
|
+
channelCode: Cell;
|
|
54
|
+
}): Promise<Cell>;
|
|
55
|
+
getNewCounterCell(provider: ContractProvider, args: {
|
|
56
|
+
owner: bigint;
|
|
57
|
+
controllerAddress: bigint;
|
|
58
|
+
eid: bigint;
|
|
59
|
+
id: bigint;
|
|
60
|
+
endpointCode: Cell;
|
|
61
|
+
channelCode: Cell;
|
|
62
|
+
}): Promise<Cell>;
|
|
63
|
+
getNewLzAttestationCell(provider: ContractProvider, args: {
|
|
64
|
+
hash: bigint;
|
|
65
|
+
confirmations: bigint;
|
|
66
|
+
}): Promise<Cell>;
|
|
67
|
+
getNewLzConfigCell(provider: ContractProvider, args: {
|
|
68
|
+
path: Cell;
|
|
69
|
+
forwardingAddress: bigint;
|
|
70
|
+
opCode: bigint;
|
|
71
|
+
config: Cell;
|
|
72
|
+
}): Promise<Cell>;
|
|
73
|
+
getNewLzEpConfigNewWithConnectionCell(provider: ContractProvider, args: {
|
|
74
|
+
useDefaults: bigint;
|
|
75
|
+
sendMsglib: bigint;
|
|
76
|
+
sendMsglibConnection: bigint;
|
|
77
|
+
receiveMsglib: bigint;
|
|
78
|
+
receiveMsglibConnection: bigint;
|
|
79
|
+
timeoutReceiveMsglib: bigint;
|
|
80
|
+
timeoutReceiveMsglibConnection: bigint;
|
|
81
|
+
timeoutReceiveMsglibExpiry: bigint;
|
|
82
|
+
}): Promise<Cell>;
|
|
83
|
+
getNewLzEpConfigCell(provider: ContractProvider, args: {
|
|
84
|
+
useDefaults: bigint;
|
|
85
|
+
sendMsglib: bigint;
|
|
86
|
+
receiveMsglib: bigint;
|
|
87
|
+
timeoutReceiveMsglib: bigint;
|
|
88
|
+
timeoutReceiveMsglibExpiry: bigint;
|
|
89
|
+
}): Promise<Cell>;
|
|
90
|
+
getNewLzEpConfigNewWithDefaultsCell(provider: ContractProvider): Promise<Cell>;
|
|
91
|
+
getNewLzEpConfigNewFromCell(provider: ContractProvider, args: {
|
|
92
|
+
sendMsglib: bigint;
|
|
93
|
+
receiveMsglib: bigint;
|
|
94
|
+
}): Promise<Cell>;
|
|
95
|
+
getNewLzMsglibInfoCell(provider: ContractProvider, args: {
|
|
96
|
+
msglibAddress: bigint;
|
|
97
|
+
msglibConnectionCode: Cell;
|
|
98
|
+
msglibConnectionInitStorage: Cell;
|
|
99
|
+
}): Promise<Cell>;
|
|
100
|
+
getNewLzPacketCell(provider: ContractProvider, args: {
|
|
101
|
+
path: Cell;
|
|
102
|
+
message: Cell;
|
|
103
|
+
nonce: bigint;
|
|
104
|
+
}): Promise<Cell>;
|
|
105
|
+
getNewLzPathCell(provider: ContractProvider, args: {
|
|
106
|
+
srcEid: bigint;
|
|
107
|
+
srcOApp: bigint;
|
|
108
|
+
dstEid: bigint;
|
|
109
|
+
dstOApp: bigint;
|
|
110
|
+
}): Promise<Cell>;
|
|
111
|
+
getNewLzReceiveEpConfigCell(provider: ContractProvider, args: {
|
|
112
|
+
receiveMsglibConnectionAddress: bigint;
|
|
113
|
+
timeoutReceiveMsglibConnectionAddress: bigint;
|
|
114
|
+
expiry: bigint;
|
|
115
|
+
}): Promise<Cell>;
|
|
116
|
+
getNewLzSendEpConfigCell(provider: ContractProvider, args: {
|
|
117
|
+
sendMsglibAddress: bigint;
|
|
118
|
+
sendMsglibConnectionAddress: bigint;
|
|
119
|
+
}): Promise<Cell>;
|
|
120
|
+
getNewLzSmlJobAssignedCell(provider: ContractProvider, args: {
|
|
121
|
+
fee: bigint;
|
|
122
|
+
}): Promise<Cell>;
|
|
123
|
+
getNewLzWorkerCell(provider: ContractProvider, args: {
|
|
124
|
+
owner: bigint;
|
|
125
|
+
pricefeedAddress: bigint;
|
|
126
|
+
bytecode: Cell;
|
|
127
|
+
storage: Cell;
|
|
128
|
+
}): Promise<Cell>;
|
|
129
|
+
getNewMdAddMsglibCell(provider: ContractProvider, args: {
|
|
130
|
+
msglibManagerAddress: bigint;
|
|
131
|
+
dstEid: bigint;
|
|
132
|
+
}): Promise<Cell>;
|
|
133
|
+
getNewMdAmountCell(provider: ContractProvider, args: {
|
|
134
|
+
amount: bigint;
|
|
135
|
+
}): Promise<Cell>;
|
|
136
|
+
getNewMdBoolCell(provider: ContractProvider, args: {
|
|
137
|
+
boolean: bigint;
|
|
138
|
+
}): Promise<Cell>;
|
|
139
|
+
getNewMdChannelNonceInfoCell(provider: ContractProvider, args: {
|
|
140
|
+
firstUncommittedNonce: bigint;
|
|
141
|
+
firstUnexecutedNonce: bigint;
|
|
142
|
+
}): Promise<Cell>;
|
|
143
|
+
getNewMdCoinsAmountCell(provider: ContractProvider, args: {
|
|
144
|
+
amount: bigint;
|
|
145
|
+
}): Promise<Cell>;
|
|
146
|
+
getNewMdCounterIncrementCell(provider: ContractProvider, args: {
|
|
147
|
+
dstEid: bigint;
|
|
148
|
+
incrementType: bigint;
|
|
149
|
+
extraOptions: Cell;
|
|
150
|
+
nativeFee: bigint;
|
|
151
|
+
zroFee: bigint;
|
|
152
|
+
}): Promise<Cell>;
|
|
153
|
+
getNewMdDeployCell(provider: ContractProvider, args: {
|
|
154
|
+
initialDeposit: bigint;
|
|
155
|
+
dstEid: bigint;
|
|
156
|
+
dstOApp: bigint;
|
|
157
|
+
}): Promise<Cell>;
|
|
158
|
+
getNewMdExtendedMdCell(provider: ContractProvider, args: {
|
|
159
|
+
md: Cell;
|
|
160
|
+
obj: Cell;
|
|
161
|
+
forwardingAddress: bigint;
|
|
162
|
+
}): Promise<Cell>;
|
|
163
|
+
getNewMdGetMsglibInfoCallbackCell(provider: ContractProvider, args: {
|
|
164
|
+
msglibAddress: bigint;
|
|
165
|
+
connectionCode: Cell;
|
|
166
|
+
}): Promise<Cell>;
|
|
167
|
+
getNewMdInitEndpointCell(provider: ContractProvider, args: {
|
|
168
|
+
channelCode: Cell;
|
|
169
|
+
}): Promise<Cell>;
|
|
170
|
+
getNewMdInitSmlConnectionCell(provider: ContractProvider, args: {
|
|
171
|
+
channelAddress: bigint;
|
|
172
|
+
}): Promise<Cell>;
|
|
173
|
+
getNewMdInitUlnConnectionCell(provider: ContractProvider, args: {
|
|
174
|
+
ulnSendConfigOApp: Cell;
|
|
175
|
+
UlnReceiveConfigOApp: Cell;
|
|
176
|
+
}): Promise<Cell>;
|
|
177
|
+
getNewMdLzReceiveStatusCell(provider: ContractProvider, args: {
|
|
178
|
+
success: bigint;
|
|
179
|
+
nonce: bigint;
|
|
180
|
+
}): Promise<Cell>;
|
|
181
|
+
getNewMdLzReceiveStatusNewFullCell(provider: ContractProvider, args: {
|
|
182
|
+
success: bigint;
|
|
183
|
+
nonce: bigint;
|
|
184
|
+
value: bigint;
|
|
185
|
+
extraData: Cell;
|
|
186
|
+
reason: Cell;
|
|
187
|
+
sender: bigint;
|
|
188
|
+
packet: Cell;
|
|
189
|
+
executionStatus: bigint;
|
|
190
|
+
}): Promise<Cell>;
|
|
191
|
+
getNewMdLzSendCell(provider: ContractProvider, args: {
|
|
192
|
+
nativeFee: bigint;
|
|
193
|
+
zroFee: bigint;
|
|
194
|
+
extraOptions: Cell;
|
|
195
|
+
enforcedOptions: Cell;
|
|
196
|
+
packet: Cell;
|
|
197
|
+
callbackData: Cell;
|
|
198
|
+
}): Promise<Cell>;
|
|
199
|
+
getNewMdMdAddressCell(provider: ContractProvider, args: {
|
|
200
|
+
md: Cell;
|
|
201
|
+
address: bigint;
|
|
202
|
+
}): Promise<Cell>;
|
|
203
|
+
getNewMdMdEidCell(provider: ContractProvider, args: {
|
|
204
|
+
md: Cell;
|
|
205
|
+
eid: bigint;
|
|
206
|
+
}): Promise<Cell>;
|
|
207
|
+
getNewMdMdObjCell(provider: ContractProvider, args: {
|
|
208
|
+
md: Cell;
|
|
209
|
+
obj: Cell;
|
|
210
|
+
}): Promise<Cell>;
|
|
211
|
+
getNewMdMessagingReceiptCell(provider: ContractProvider, args: {
|
|
212
|
+
lzSend: Cell;
|
|
213
|
+
nativeFee: bigint;
|
|
214
|
+
zroFee: bigint;
|
|
215
|
+
errorCode: bigint;
|
|
216
|
+
}): Promise<Cell>;
|
|
217
|
+
getNewMdMsglibSendCallbackCell(provider: ContractProvider, args: {
|
|
218
|
+
nativeFee: bigint;
|
|
219
|
+
zroFee: bigint;
|
|
220
|
+
lzSend: Cell;
|
|
221
|
+
packetEncoded: Cell;
|
|
222
|
+
payees: Cell;
|
|
223
|
+
nonceByteOffset: bigint;
|
|
224
|
+
nonceBytes: bigint;
|
|
225
|
+
guidByteOffset: bigint;
|
|
226
|
+
guidBytes: bigint;
|
|
227
|
+
msglibSendEvents: Cell;
|
|
228
|
+
errorCode: bigint;
|
|
229
|
+
}): Promise<Cell>;
|
|
230
|
+
getNewMdNonceCell(provider: ContractProvider, args: {
|
|
231
|
+
nonce: bigint;
|
|
232
|
+
}): Promise<Cell>;
|
|
233
|
+
getNewMdOptionsExtendedCell(provider: ContractProvider, args: {
|
|
234
|
+
eid: bigint;
|
|
235
|
+
msgType: bigint;
|
|
236
|
+
options: Cell;
|
|
237
|
+
}): Promise<Cell>;
|
|
238
|
+
getNewMdOptionsV1Cell(provider: ContractProvider, args: {
|
|
239
|
+
lzReceiveGas: bigint;
|
|
240
|
+
lzReceiveValue: bigint;
|
|
241
|
+
nativeDropAddress: bigint;
|
|
242
|
+
nativeDropAmount: bigint;
|
|
243
|
+
}): Promise<Cell>;
|
|
244
|
+
getNewMdOptionsV2Cell(provider: ContractProvider, args: {
|
|
245
|
+
lzReceiveGas: bigint;
|
|
246
|
+
lzReceiveValue: bigint;
|
|
247
|
+
lzComposeGas: bigint;
|
|
248
|
+
nativeDropAddress: bigint;
|
|
249
|
+
nativeDropAmount: bigint;
|
|
250
|
+
}): Promise<Cell>;
|
|
251
|
+
getNewMdPacketIdCell(provider: ContractProvider, args: {
|
|
252
|
+
path: Cell;
|
|
253
|
+
nonce: bigint;
|
|
254
|
+
}): Promise<Cell>;
|
|
255
|
+
getNewMdPacketSentCell(provider: ContractProvider, args: {
|
|
256
|
+
nativeFee: bigint;
|
|
257
|
+
zroFee: bigint;
|
|
258
|
+
extraOptions: Cell;
|
|
259
|
+
enforcedOptions: Cell;
|
|
260
|
+
packetEncoded: Cell;
|
|
261
|
+
nonce: bigint;
|
|
262
|
+
msglibAddress: bigint;
|
|
263
|
+
msglibSendEvents: Cell;
|
|
264
|
+
}): Promise<Cell>;
|
|
265
|
+
getNewMdSetAddressCell(provider: ContractProvider, args: {
|
|
266
|
+
address: bigint;
|
|
267
|
+
}): Promise<Cell>;
|
|
268
|
+
getNewMdSetEpConfigCell(provider: ContractProvider, args: {
|
|
269
|
+
useDefaults: bigint;
|
|
270
|
+
sendMsglibManager: bigint;
|
|
271
|
+
receiveMsglibManager: bigint;
|
|
272
|
+
timeoutReceiveMsglibManager: bigint;
|
|
273
|
+
timeoutReceiveMsglibExpiry: bigint;
|
|
274
|
+
}): Promise<Cell>;
|
|
275
|
+
getNewMdSetPeerCell(provider: ContractProvider, args: {
|
|
276
|
+
eid: bigint;
|
|
277
|
+
peer: bigint;
|
|
278
|
+
}): Promise<Cell>;
|
|
279
|
+
getNewMdSetSmlManagerConfigCell(provider: ContractProvider, args: {
|
|
280
|
+
nativeFee: bigint;
|
|
281
|
+
zroFee: bigint;
|
|
282
|
+
}): Promise<Cell>;
|
|
283
|
+
getNewActionEventCell(provider: ContractProvider, args: {
|
|
284
|
+
topic: bigint;
|
|
285
|
+
body: Cell;
|
|
286
|
+
initialStorage: Cell;
|
|
287
|
+
}): Promise<Cell>;
|
|
288
|
+
getNewClDict256Cell(provider: ContractProvider): Promise<Cell>;
|
|
289
|
+
getNewPOOOCell(provider: ContractProvider): Promise<Cell>;
|
|
290
|
+
getNewPOOONewWithBitsSetsCell(provider: ContractProvider, args: {
|
|
291
|
+
startingBit: bigint;
|
|
292
|
+
endingBit: bigint;
|
|
293
|
+
}): Promise<Cell>;
|
|
294
|
+
getNewChannelCell(provider: ContractProvider, args: {
|
|
295
|
+
owner: bigint;
|
|
296
|
+
path: Cell;
|
|
297
|
+
endpointAddress: bigint;
|
|
298
|
+
}): Promise<Cell>;
|
|
299
|
+
getNewControllerCell(provider: ContractProvider, args: {
|
|
300
|
+
owner: bigint;
|
|
301
|
+
eid: bigint;
|
|
302
|
+
endpointCode: Cell;
|
|
303
|
+
channelCode: Cell;
|
|
304
|
+
}): Promise<Cell>;
|
|
305
|
+
getNewBaseStorageCell(provider: ContractProvider, args: {
|
|
306
|
+
owner: bigint;
|
|
307
|
+
}): Promise<Cell>;
|
|
308
|
+
getNewEndpointCell(provider: ContractProvider, args: {
|
|
309
|
+
eid: bigint;
|
|
310
|
+
dstEid: bigint;
|
|
311
|
+
owner: bigint;
|
|
312
|
+
}): Promise<Cell>;
|
|
313
|
+
getNewSmlConnectionCell(provider: ContractProvider, args: {
|
|
314
|
+
owner: bigint;
|
|
315
|
+
path: Cell;
|
|
316
|
+
}): Promise<Cell>;
|
|
317
|
+
getNewSmlManagerCell(provider: ContractProvider, args: {
|
|
318
|
+
owner: bigint;
|
|
319
|
+
eid: bigint;
|
|
320
|
+
version: bigint;
|
|
321
|
+
controllerAddress: bigint;
|
|
322
|
+
endpointCode: Cell;
|
|
323
|
+
channelCode: Cell;
|
|
324
|
+
smlConnectionCode: Cell;
|
|
325
|
+
}): Promise<Cell>;
|
|
326
|
+
getNewUlnReceiveConfigCell(provider: ContractProvider, args: {
|
|
327
|
+
useDefaultMinCommitPacketGas: bigint;
|
|
328
|
+
minCommitPacketGas: bigint;
|
|
329
|
+
useDefaultConfirmations: bigint;
|
|
330
|
+
confirmations: bigint;
|
|
331
|
+
useDefaultRequiredDVNs: bigint;
|
|
332
|
+
requiredDVNs: Cell;
|
|
333
|
+
useDefaultOptionalDVNs: bigint;
|
|
334
|
+
optionalDVNs: Cell;
|
|
335
|
+
optionalDVNThreshold: bigint;
|
|
336
|
+
}): Promise<Cell>;
|
|
337
|
+
getNewUlnReceiveConfigNewWithDefaultsCell(provider: ContractProvider): Promise<Cell>;
|
|
338
|
+
getNewMdUlnSendCell(provider: ContractProvider, args: {
|
|
339
|
+
lzSend: Cell;
|
|
340
|
+
customUlnSendConfig: Cell;
|
|
341
|
+
connectionInitialStorage: Cell;
|
|
342
|
+
forwardingAddress: bigint;
|
|
343
|
+
}): Promise<Cell>;
|
|
344
|
+
getNewUlnSendConfigCell(provider: ContractProvider, args: {
|
|
345
|
+
workerQuoteGasLimit: bigint;
|
|
346
|
+
maxMessageBytes: bigint;
|
|
347
|
+
useDefaultExecutor: bigint;
|
|
348
|
+
executor: bigint;
|
|
349
|
+
useDefaultRequiredDVNs: bigint;
|
|
350
|
+
requiredDVNs: Cell;
|
|
351
|
+
useDefaultOptionalDVNs: bigint;
|
|
352
|
+
optionalDVNs: Cell;
|
|
353
|
+
}): Promise<Cell>;
|
|
354
|
+
getNewUlnSendConfigNewWithDefaultsCell(provider: ContractProvider): Promise<Cell>;
|
|
355
|
+
getNewMdUlnWorkerEventsCell(provider: ContractProvider, args: {
|
|
356
|
+
worker0Address: bigint;
|
|
357
|
+
worker0Events: Cell;
|
|
358
|
+
worker1Address: bigint;
|
|
359
|
+
worker1Events: Cell;
|
|
360
|
+
worker2Address: bigint;
|
|
361
|
+
worker2Events: Cell;
|
|
362
|
+
nextWorkerEvents: Cell;
|
|
363
|
+
}): Promise<Cell>;
|
|
364
|
+
getNewUlnWorkerInfoCell(provider: ContractProvider, args: {
|
|
365
|
+
workerAddress: bigint;
|
|
366
|
+
workerBytecode: Cell;
|
|
367
|
+
workerStorage: Cell;
|
|
368
|
+
friendWorkerAddress: bigint;
|
|
369
|
+
dstEid: bigint;
|
|
370
|
+
rentBalance: bigint;
|
|
371
|
+
isAdmin: bigint;
|
|
372
|
+
}): Promise<Cell>;
|
|
373
|
+
getNewUlnCell(provider: ContractProvider, args: {
|
|
374
|
+
owner: bigint;
|
|
375
|
+
eid: bigint;
|
|
376
|
+
dstEid: bigint;
|
|
377
|
+
}): Promise<Cell>;
|
|
378
|
+
getNewUlnConnectionCell(provider: ContractProvider, args: {
|
|
379
|
+
owner: bigint;
|
|
380
|
+
path: Cell;
|
|
381
|
+
ulnAddress: bigint;
|
|
382
|
+
}): Promise<Cell>;
|
|
383
|
+
getNewUlnManagerCell(provider: ContractProvider, args: {
|
|
384
|
+
owner: bigint;
|
|
385
|
+
ulnCode: Cell;
|
|
386
|
+
connectionCode: Cell;
|
|
387
|
+
controllerAddress: bigint;
|
|
388
|
+
eid: bigint;
|
|
389
|
+
endpointCode: Cell;
|
|
390
|
+
channelCode: Cell;
|
|
391
|
+
}): Promise<Cell>;
|
|
392
|
+
getNewWorkerCoreStorageCell(provider: ContractProvider, args: {
|
|
393
|
+
owner: bigint;
|
|
394
|
+
controllerAddress: bigint;
|
|
395
|
+
}): Promise<Cell>;
|
|
396
|
+
getNewDvnCell(provider: ContractProvider, args: {
|
|
397
|
+
owner: bigint;
|
|
398
|
+
controller: bigint;
|
|
399
|
+
quorum: bigint;
|
|
400
|
+
}): Promise<Cell>;
|
|
401
|
+
getNewExecutorCell(provider: ContractProvider, args: {
|
|
402
|
+
owner: bigint;
|
|
403
|
+
controller: bigint;
|
|
404
|
+
nativeDropTotalCap: bigint;
|
|
405
|
+
}): Promise<Cell>;
|
|
406
|
+
getNewMdExecuteParamsCell(provider: ContractProvider, args: {
|
|
407
|
+
target: bigint;
|
|
408
|
+
callData: Cell;
|
|
409
|
+
expiration: bigint;
|
|
410
|
+
opcode: bigint;
|
|
411
|
+
}): Promise<Cell>;
|
|
412
|
+
getNewMdCallContractCell(provider: ContractProvider, args: {
|
|
413
|
+
md: Cell;
|
|
414
|
+
address: bigint;
|
|
415
|
+
opcode: bigint;
|
|
416
|
+
}): Promise<Cell>;
|
|
417
|
+
getNewMdMdDictCell(provider: ContractProvider, args: {
|
|
418
|
+
_dict: Cell;
|
|
419
|
+
}): Promise<Cell>;
|
|
420
|
+
getNewMdNativeDropCell(provider: ContractProvider, args: {
|
|
421
|
+
to: bigint;
|
|
422
|
+
amount: bigint;
|
|
423
|
+
}): Promise<Cell>;
|
|
424
|
+
getNewMdSetDictCell(provider: ContractProvider, args: {
|
|
425
|
+
nonce: bigint;
|
|
426
|
+
opcode: bigint;
|
|
427
|
+
_dict: Cell;
|
|
428
|
+
}): Promise<Cell>;
|
|
429
|
+
getNewMdSetQuorumCell(provider: ContractProvider, args: {
|
|
430
|
+
nonce: bigint;
|
|
431
|
+
opcode: bigint;
|
|
432
|
+
quorum: bigint;
|
|
433
|
+
}): Promise<Cell>;
|
|
434
|
+
getNewMdSignedRequestCell(provider: ContractProvider, args: {
|
|
435
|
+
request: Cell;
|
|
436
|
+
signatures: Cell;
|
|
437
|
+
}): Promise<Cell>;
|
|
438
|
+
getNewMdUlnCommitPacketCell(provider: ContractProvider, args: {
|
|
439
|
+
packet: Cell;
|
|
440
|
+
endpointAddress: bigint;
|
|
441
|
+
msglibAddress: bigint;
|
|
442
|
+
}): Promise<Cell>;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
type ExtendedContract<T> = SandboxContract<T> | OpenedContract<T>;
|
|
446
|
+
declare class LzDict {
|
|
447
|
+
_cell: Cell;
|
|
448
|
+
constructor(data: Cell);
|
|
449
|
+
static empty(): LzDict;
|
|
450
|
+
get(key: bigint, wrapper: ExtendedContract<TonContractWrapper>): Promise<Cell>;
|
|
451
|
+
set(key: bigint, value: Cell, wrapper: ExtendedContract<TonContractWrapper>): Promise<void>;
|
|
452
|
+
asCell(): Cell;
|
|
453
|
+
}
|
|
454
|
+
interface Md {
|
|
455
|
+
}
|
|
456
|
+
interface BaseOApp {
|
|
457
|
+
controllerAddress: bigint;
|
|
458
|
+
eid: bigint;
|
|
459
|
+
maxReceivedNonce: LzDict;
|
|
460
|
+
baseLzReceiveGas: bigint;
|
|
461
|
+
peers: LzDict;
|
|
462
|
+
enforcedOptions: LzDict;
|
|
463
|
+
tentativeOwner: bigint;
|
|
464
|
+
endpointCode: Cell;
|
|
465
|
+
channelCode: Cell;
|
|
466
|
+
endpointInitStorage: Cell;
|
|
467
|
+
}
|
|
468
|
+
interface Counter {
|
|
469
|
+
baseStorage: Cell;
|
|
470
|
+
baseOAppStorage: Cell;
|
|
471
|
+
inboundCount: LzDict;
|
|
472
|
+
outboundCount: LzDict;
|
|
473
|
+
failNextLzReceive: bigint;
|
|
474
|
+
id: bigint;
|
|
475
|
+
}
|
|
476
|
+
interface LzAttestation {
|
|
477
|
+
hash: bigint;
|
|
478
|
+
confirmations: bigint;
|
|
479
|
+
}
|
|
480
|
+
interface LzConfig {
|
|
481
|
+
path: Cell;
|
|
482
|
+
forwardingAddress: bigint;
|
|
483
|
+
opCode: bigint;
|
|
484
|
+
config: Cell;
|
|
485
|
+
}
|
|
486
|
+
interface LzEpConfigNewWithConnection {
|
|
487
|
+
useDefaults: bigint;
|
|
488
|
+
sendMsglib: bigint;
|
|
489
|
+
sendMsglibConnection: bigint;
|
|
490
|
+
receiveMsglib: bigint;
|
|
491
|
+
receiveMsglibConnection: bigint;
|
|
492
|
+
timeoutReceiveMsglib: bigint;
|
|
493
|
+
timeoutReceiveMsglibConnection: bigint;
|
|
494
|
+
timeoutReceiveMsglibExpiry: bigint;
|
|
495
|
+
}
|
|
496
|
+
interface LzMsglibInfo {
|
|
497
|
+
msglibAddress: bigint;
|
|
498
|
+
msglibConnectionCode: Cell;
|
|
499
|
+
msglibConnectionInitStorage: Cell;
|
|
500
|
+
}
|
|
501
|
+
interface LzPacket {
|
|
502
|
+
path: Cell;
|
|
503
|
+
message: Cell;
|
|
504
|
+
nonce: bigint;
|
|
505
|
+
guid: bigint;
|
|
506
|
+
}
|
|
507
|
+
interface LzPath {
|
|
508
|
+
srcEid: bigint;
|
|
509
|
+
srcOApp: bigint;
|
|
510
|
+
dstEid: bigint;
|
|
511
|
+
dstOApp: bigint;
|
|
512
|
+
}
|
|
513
|
+
interface LzReceiveEpConfig {
|
|
514
|
+
receiveMsglibConnectionAddress: bigint;
|
|
515
|
+
timeoutReceiveMsglibConnectionAddress: bigint;
|
|
516
|
+
expiry: bigint;
|
|
517
|
+
}
|
|
518
|
+
interface LzSendEpConfig {
|
|
519
|
+
sendMsglibAddress: bigint;
|
|
520
|
+
sendMsglibConnectionAddress: bigint;
|
|
521
|
+
}
|
|
522
|
+
interface LzSmlJobAssigned {
|
|
523
|
+
executorAddress: bigint;
|
|
524
|
+
fee: bigint;
|
|
525
|
+
}
|
|
526
|
+
interface LzWorker {
|
|
527
|
+
owner: bigint;
|
|
528
|
+
viewAllowlist: LzDict;
|
|
529
|
+
viewDependencies: LzDict;
|
|
530
|
+
bytecodeLibrary: Cell;
|
|
531
|
+
storage: Cell;
|
|
532
|
+
}
|
|
533
|
+
interface MdAddMsglib extends Md {
|
|
534
|
+
msglibManagerAddress: bigint;
|
|
535
|
+
dstEid: bigint;
|
|
536
|
+
}
|
|
537
|
+
interface MdAmount extends Md {
|
|
538
|
+
amount: bigint;
|
|
539
|
+
}
|
|
540
|
+
interface MdBool extends Md {
|
|
541
|
+
bool: bigint;
|
|
542
|
+
}
|
|
543
|
+
interface MdChannelNonceInfo extends Md {
|
|
544
|
+
firstUncommittedNonce: bigint;
|
|
545
|
+
firstUnexecutedNonce: bigint;
|
|
546
|
+
}
|
|
547
|
+
interface MdCoinsAmount extends Md {
|
|
548
|
+
amount: bigint;
|
|
549
|
+
}
|
|
550
|
+
interface MdCounterIncrement extends Md {
|
|
551
|
+
dstEid: bigint;
|
|
552
|
+
incrementType: bigint;
|
|
553
|
+
extraOptions: Cell;
|
|
554
|
+
nativeFee: bigint;
|
|
555
|
+
zroFee: bigint;
|
|
556
|
+
}
|
|
557
|
+
interface MdDeploy extends Md {
|
|
558
|
+
initialDeposit: bigint;
|
|
559
|
+
dstEid: bigint;
|
|
560
|
+
dstOApp: bigint;
|
|
561
|
+
}
|
|
562
|
+
interface MdExtendedMd extends Md {
|
|
563
|
+
md: Cell;
|
|
564
|
+
obj: Cell;
|
|
565
|
+
forwardingAddress: bigint;
|
|
566
|
+
}
|
|
567
|
+
interface MdGetMsglibInfoCallback extends Md {
|
|
568
|
+
msglibAddress: bigint;
|
|
569
|
+
connectionCode: Cell;
|
|
570
|
+
}
|
|
571
|
+
interface MdInitEndpoint extends Md {
|
|
572
|
+
channelCode: Cell;
|
|
573
|
+
}
|
|
574
|
+
interface MdInitSmlConnection extends Md {
|
|
575
|
+
channelAddress: bigint;
|
|
576
|
+
}
|
|
577
|
+
interface MdInitUlnConnection extends Md {
|
|
578
|
+
ulnSendConfigOApp: Cell;
|
|
579
|
+
UlnReceiveConfigOApp: Cell;
|
|
580
|
+
}
|
|
581
|
+
interface MdLzReceiveStatus extends Md {
|
|
582
|
+
success: bigint;
|
|
583
|
+
nonce: bigint;
|
|
584
|
+
value: bigint;
|
|
585
|
+
extraData: Cell;
|
|
586
|
+
reason: Cell;
|
|
587
|
+
sender: bigint;
|
|
588
|
+
packet: Cell;
|
|
589
|
+
executionStatus: bigint;
|
|
590
|
+
}
|
|
591
|
+
interface MdLzReceiveStatusNewFull extends Md {
|
|
592
|
+
success: bigint;
|
|
593
|
+
nonce: bigint;
|
|
594
|
+
value: bigint;
|
|
595
|
+
extraData: Cell;
|
|
596
|
+
reason: Cell;
|
|
597
|
+
sender: bigint;
|
|
598
|
+
packet: Cell;
|
|
599
|
+
executionStatus: bigint;
|
|
600
|
+
}
|
|
601
|
+
interface MdLzSend extends Md {
|
|
602
|
+
sendRequestId: bigint;
|
|
603
|
+
sendMsglib: bigint;
|
|
604
|
+
sendMsglibConnection: bigint;
|
|
605
|
+
packet: Cell;
|
|
606
|
+
nativeFee: bigint;
|
|
607
|
+
zroFee: bigint;
|
|
608
|
+
extraOptions: Cell;
|
|
609
|
+
enforcedOptions: Cell;
|
|
610
|
+
callbackData: Cell;
|
|
611
|
+
}
|
|
612
|
+
interface MdMdAddress extends Md {
|
|
613
|
+
md: Cell;
|
|
614
|
+
address: bigint;
|
|
615
|
+
}
|
|
616
|
+
interface MdMdEid extends Md {
|
|
617
|
+
md: Cell;
|
|
618
|
+
eid: bigint;
|
|
619
|
+
}
|
|
620
|
+
interface MdMdObj extends Md {
|
|
621
|
+
md: Cell;
|
|
622
|
+
obj: Cell;
|
|
623
|
+
}
|
|
624
|
+
interface MdMessagingReceipt extends Md {
|
|
625
|
+
lzSend: Cell;
|
|
626
|
+
nativeFeeActual: bigint;
|
|
627
|
+
zroFeeActual: bigint;
|
|
628
|
+
errorCode: bigint;
|
|
629
|
+
}
|
|
630
|
+
interface MdMsglibSendCallback extends Md {
|
|
631
|
+
addressIdx: bigint;
|
|
632
|
+
nativeAmountIdx: bigint;
|
|
633
|
+
lzSend: Cell;
|
|
634
|
+
packetEncoded: Cell;
|
|
635
|
+
payees: Cell;
|
|
636
|
+
nonceByteOffset: bigint;
|
|
637
|
+
nonceBytes: bigint;
|
|
638
|
+
guidByteOffset: bigint;
|
|
639
|
+
guidBytes: bigint;
|
|
640
|
+
msglibSendEvents: Cell;
|
|
641
|
+
errorCode: bigint;
|
|
642
|
+
}
|
|
643
|
+
interface MdNonce extends Md {
|
|
644
|
+
nonce: bigint;
|
|
645
|
+
}
|
|
646
|
+
interface MdOptionsExtended extends Md {
|
|
647
|
+
eid: bigint;
|
|
648
|
+
msgType: bigint;
|
|
649
|
+
options: Cell;
|
|
650
|
+
}
|
|
651
|
+
interface MdOptionsV1 extends Md {
|
|
652
|
+
lzReceiveGas: bigint;
|
|
653
|
+
lzReceiveValue: bigint;
|
|
654
|
+
nativeDropAddress: bigint;
|
|
655
|
+
nativeDropAmount: bigint;
|
|
656
|
+
}
|
|
657
|
+
interface MdOptionsV2 extends Md {
|
|
658
|
+
lzReceiveGas: bigint;
|
|
659
|
+
lzReceiveValue: bigint;
|
|
660
|
+
lzComposeGas: bigint;
|
|
661
|
+
nativeDropAddress: bigint;
|
|
662
|
+
nativeDropAmount: bigint;
|
|
663
|
+
}
|
|
664
|
+
interface MdPacketId extends Md {
|
|
665
|
+
path: Cell;
|
|
666
|
+
nonce: bigint;
|
|
667
|
+
}
|
|
668
|
+
interface MdPacketSent extends Md {
|
|
669
|
+
nativeFee: bigint;
|
|
670
|
+
zroFee: bigint;
|
|
671
|
+
extraOptions: Cell;
|
|
672
|
+
enforcedOptions: Cell;
|
|
673
|
+
packetEncoded: Cell;
|
|
674
|
+
nonce: bigint;
|
|
675
|
+
msglibAddress: bigint;
|
|
676
|
+
msglibSendEvents: Cell;
|
|
677
|
+
}
|
|
678
|
+
interface MdSetAddress extends Md {
|
|
679
|
+
address: bigint;
|
|
680
|
+
}
|
|
681
|
+
interface MdSetEpConfig extends Md {
|
|
682
|
+
useDefaults: bigint;
|
|
683
|
+
sendMsglibManager: bigint;
|
|
684
|
+
receiveMsglibManager: bigint;
|
|
685
|
+
timeoutReceiveMsglibManager: bigint;
|
|
686
|
+
timeoutReceiveMsglibExpiry: bigint;
|
|
687
|
+
}
|
|
688
|
+
interface MdSetPeer extends Md {
|
|
689
|
+
eid: bigint;
|
|
690
|
+
peer: bigint;
|
|
691
|
+
}
|
|
692
|
+
interface MdSetSmlManagerConfig extends Md {
|
|
693
|
+
nativeFee: bigint;
|
|
694
|
+
zroFee: bigint;
|
|
695
|
+
}
|
|
696
|
+
interface ActionEvent {
|
|
697
|
+
topic: bigint;
|
|
698
|
+
body: Cell;
|
|
699
|
+
initialStorage: Cell;
|
|
700
|
+
}
|
|
701
|
+
interface POOO {
|
|
702
|
+
nextEmpty: bigint;
|
|
703
|
+
bitmap: Cell;
|
|
704
|
+
}
|
|
705
|
+
interface POOONewWithBitsSets {
|
|
706
|
+
nextEmpty: bigint;
|
|
707
|
+
bitmap: Cell;
|
|
708
|
+
}
|
|
709
|
+
interface Channel {
|
|
710
|
+
baseStorage: Cell;
|
|
711
|
+
path: Cell;
|
|
712
|
+
endpointAddress: bigint;
|
|
713
|
+
epConfigOApp: Cell;
|
|
714
|
+
outboundNonce: bigint;
|
|
715
|
+
sendRequestQueue: LzDict;
|
|
716
|
+
lastSendRequestId: bigint;
|
|
717
|
+
commitPOOO: Cell;
|
|
718
|
+
executePOOO: Cell;
|
|
719
|
+
executionQueue: Cell;
|
|
720
|
+
zroBalance: bigint;
|
|
721
|
+
}
|
|
722
|
+
interface Controller {
|
|
723
|
+
baseStorage: Cell;
|
|
724
|
+
eid: bigint;
|
|
725
|
+
endpointCode: Cell;
|
|
726
|
+
channelCode: Cell;
|
|
727
|
+
zroWallet: bigint;
|
|
728
|
+
tentativeOwner: bigint;
|
|
729
|
+
}
|
|
730
|
+
interface BaseStorage {
|
|
731
|
+
owner: bigint;
|
|
732
|
+
authenticated: bigint;
|
|
733
|
+
initialized: bigint;
|
|
734
|
+
initialStorage: Cell;
|
|
735
|
+
}
|
|
736
|
+
interface Endpoint {
|
|
737
|
+
baseStorage: Cell;
|
|
738
|
+
eid: bigint;
|
|
739
|
+
dstEid: bigint;
|
|
740
|
+
msglibs: LzDict;
|
|
741
|
+
numMsglibs: bigint;
|
|
742
|
+
channelCode: Cell;
|
|
743
|
+
channelStorageInit: Cell;
|
|
744
|
+
defaultSendLibInfo: Cell;
|
|
745
|
+
defaultReceiveLibInfo: Cell;
|
|
746
|
+
defaultTimeoutReceiveLibInfo: Cell;
|
|
747
|
+
defaultExpiry: bigint;
|
|
748
|
+
}
|
|
749
|
+
interface SmlConnection {
|
|
750
|
+
baseStorage: Cell;
|
|
751
|
+
path: Cell;
|
|
752
|
+
channelAddress: bigint;
|
|
753
|
+
}
|
|
754
|
+
interface SmlManager {
|
|
755
|
+
baseStorage: Cell;
|
|
756
|
+
eid: bigint;
|
|
757
|
+
verison: bigint;
|
|
758
|
+
nativeFee: bigint;
|
|
759
|
+
zroFee: bigint;
|
|
760
|
+
packets: LzDict;
|
|
761
|
+
controllerAddress: bigint;
|
|
762
|
+
endpointCode: Cell;
|
|
763
|
+
channelCode: Cell;
|
|
764
|
+
smlConnectionCode: Cell;
|
|
765
|
+
}
|
|
766
|
+
interface UlnReceiveConfig {
|
|
767
|
+
useDefaultMinCommitPacketGas: bigint;
|
|
768
|
+
minCommitPacketGas: bigint;
|
|
769
|
+
useDefaultConfirmations: bigint;
|
|
770
|
+
confirmations: bigint;
|
|
771
|
+
useDefaultRequiredDVNs: bigint;
|
|
772
|
+
requiredDVNs: LzDict;
|
|
773
|
+
useDefaultOptionalDVNs: bigint;
|
|
774
|
+
optionalDVNs: LzDict;
|
|
775
|
+
optionalDVNThreshold: bigint;
|
|
776
|
+
}
|
|
777
|
+
interface MdUlnSend extends Md {
|
|
778
|
+
lzSend: Cell;
|
|
779
|
+
customUlnSendConfig: Cell;
|
|
780
|
+
connectionInitialStorage: Cell;
|
|
781
|
+
forwardingAddress: bigint;
|
|
782
|
+
}
|
|
783
|
+
interface UlnSendConfig {
|
|
784
|
+
workerQuoteGasLimit: bigint;
|
|
785
|
+
maxMessageBytes: bigint;
|
|
786
|
+
useDefaultExecutor: bigint;
|
|
787
|
+
executor: bigint;
|
|
788
|
+
useDefaultRequiredDVNs: bigint;
|
|
789
|
+
requiredDVNs: Cell;
|
|
790
|
+
useDefaultOptionalDVNs: bigint;
|
|
791
|
+
optionalDVNs: Cell;
|
|
792
|
+
}
|
|
793
|
+
interface MdUlnWorkerEvents extends Md {
|
|
794
|
+
worker0Address: bigint;
|
|
795
|
+
worker0Events: Cell;
|
|
796
|
+
worker1Address: bigint;
|
|
797
|
+
worker1Events: Cell;
|
|
798
|
+
worker2Address: bigint;
|
|
799
|
+
worker2Events: Cell;
|
|
800
|
+
nextWorkerEvents: Cell;
|
|
801
|
+
}
|
|
802
|
+
interface UlnWorkerInfo {
|
|
803
|
+
workerAddress: bigint;
|
|
804
|
+
workerBytecode: Cell;
|
|
805
|
+
workerStorage: Cell;
|
|
806
|
+
friendWorkerAddress: bigint;
|
|
807
|
+
dstEid: bigint;
|
|
808
|
+
rentBalance: bigint;
|
|
809
|
+
lastRentTimestamp: bigint;
|
|
810
|
+
isAdmin: bigint;
|
|
811
|
+
}
|
|
812
|
+
interface Uln {
|
|
813
|
+
baseStorage: Cell;
|
|
814
|
+
eid: bigint;
|
|
815
|
+
dstEid: bigint;
|
|
816
|
+
defaultUlnReceiveConfig: Cell;
|
|
817
|
+
defaultUlnSendConfig: Cell;
|
|
818
|
+
connectionCode: Cell;
|
|
819
|
+
workerInfos: LzDict;
|
|
820
|
+
treasuryFeeBps: bigint;
|
|
821
|
+
}
|
|
822
|
+
interface UlnConnection {
|
|
823
|
+
baseStorage: Cell;
|
|
824
|
+
path: Cell;
|
|
825
|
+
endpointAddress: bigint;
|
|
826
|
+
channelAddress: bigint;
|
|
827
|
+
ulnAddress: bigint;
|
|
828
|
+
UlnSendConfigOApp: Cell;
|
|
829
|
+
UlnReceiveConfigOApp: Cell;
|
|
830
|
+
hashLookups: LzDict;
|
|
831
|
+
noncePOOO: Cell;
|
|
832
|
+
allCustomReceiveConfig: bigint;
|
|
833
|
+
}
|
|
834
|
+
interface UlnManager {
|
|
835
|
+
baseStorage: Cell;
|
|
836
|
+
ulnCode: Cell;
|
|
837
|
+
ulnConnectionCode: Cell;
|
|
838
|
+
controllerAddress: bigint;
|
|
839
|
+
eid: bigint;
|
|
840
|
+
endpointCode: Cell;
|
|
841
|
+
channelCode: Cell;
|
|
842
|
+
workerInfos: LzDict;
|
|
843
|
+
adminWorkers: LzDict;
|
|
844
|
+
}
|
|
845
|
+
interface WorkerCoreStorage {
|
|
846
|
+
owner: bigint;
|
|
847
|
+
tentativeOwner: bigint;
|
|
848
|
+
authenticated: bigint;
|
|
849
|
+
initialized: bigint;
|
|
850
|
+
admins: LzDict;
|
|
851
|
+
controllerAddress: bigint;
|
|
852
|
+
}
|
|
853
|
+
interface Dvn {
|
|
854
|
+
workerCoreStorage: Cell;
|
|
855
|
+
quorum: bigint;
|
|
856
|
+
verifiers: LzDict;
|
|
857
|
+
setQuorumNonce: bigint;
|
|
858
|
+
setVerifiersNonce: bigint;
|
|
859
|
+
setAdminsByQuorumNonce: bigint;
|
|
860
|
+
}
|
|
861
|
+
interface Executor {
|
|
862
|
+
workerCoreStorage: Cell;
|
|
863
|
+
nativeDropTotalCap: bigint;
|
|
864
|
+
}
|
|
865
|
+
interface MdExecuteParams extends Md {
|
|
866
|
+
target: bigint;
|
|
867
|
+
callData: Cell;
|
|
868
|
+
expiration: bigint;
|
|
869
|
+
opcode: bigint;
|
|
870
|
+
}
|
|
871
|
+
interface MdCallContract extends Md {
|
|
872
|
+
md: Cell;
|
|
873
|
+
address: bigint;
|
|
874
|
+
opcode: bigint;
|
|
875
|
+
}
|
|
876
|
+
interface MdMdDict extends Md {
|
|
877
|
+
dict: LzDict;
|
|
878
|
+
}
|
|
879
|
+
interface MdNativeDrop extends Md {
|
|
880
|
+
to: bigint;
|
|
881
|
+
amount: bigint;
|
|
882
|
+
}
|
|
883
|
+
interface MdSetDict extends Md {
|
|
884
|
+
nonce: bigint;
|
|
885
|
+
opcode: bigint;
|
|
886
|
+
dict: LzDict;
|
|
887
|
+
}
|
|
888
|
+
interface MdSetQuorum extends Md {
|
|
889
|
+
nonce: bigint;
|
|
890
|
+
opcode: bigint;
|
|
891
|
+
quorum: bigint;
|
|
892
|
+
}
|
|
893
|
+
interface MdSignedRequest extends Md {
|
|
894
|
+
request: Cell;
|
|
895
|
+
signatures: LzDict;
|
|
896
|
+
}
|
|
897
|
+
interface MdUlnCommitPacket extends Md {
|
|
898
|
+
packet: Cell;
|
|
899
|
+
endpointAddress: bigint;
|
|
900
|
+
msglibAddress: bigint;
|
|
901
|
+
}
|
|
902
|
+
declare const nameMap: {
|
|
903
|
+
[key: string]: string;
|
|
904
|
+
};
|
|
905
|
+
|
|
906
|
+
declare class LzEvent {
|
|
907
|
+
private _eventPromise;
|
|
908
|
+
private _event;
|
|
909
|
+
topic: string;
|
|
910
|
+
body: Md;
|
|
911
|
+
bodyName: string;
|
|
912
|
+
initialStorage: Cell;
|
|
913
|
+
initialized: boolean;
|
|
914
|
+
constructor(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell);
|
|
915
|
+
load(wrapper: ExtendedContract<TonContractWrapper>): Promise<boolean>;
|
|
916
|
+
}
|
|
917
|
+
declare class LzEventHandler {
|
|
918
|
+
allFailures: {
|
|
919
|
+
txList: BlockchainTransaction[];
|
|
920
|
+
events: EventMessageSent[];
|
|
921
|
+
};
|
|
922
|
+
allVictories: {
|
|
923
|
+
txList: BlockchainTransaction[];
|
|
924
|
+
eventObjects: LzEvent[];
|
|
925
|
+
packetsSent: MdPacketSent[];
|
|
926
|
+
};
|
|
927
|
+
addCurrentEventsToAllEvents(results: SendMessageResult, contract: ExtendedContract<TonContractWrapper>): Promise<void>;
|
|
928
|
+
isMdPacketSent(md: Md): md is MdPacketSent;
|
|
929
|
+
}
|
|
930
|
+
interface GasStructure {
|
|
931
|
+
actionFee: bigint;
|
|
932
|
+
forwardFee: bigint;
|
|
933
|
+
computeFee: bigint;
|
|
934
|
+
storageFee: bigint;
|
|
935
|
+
messageSizeCells: bigint;
|
|
936
|
+
messageSizeBits: bigint;
|
|
937
|
+
}
|
|
938
|
+
declare class LzGasTracker {
|
|
939
|
+
private codeOp;
|
|
940
|
+
gasCosts: Map<string, GasStructure[]>;
|
|
941
|
+
constructor();
|
|
942
|
+
static invertMapping(obj: {
|
|
943
|
+
[key: string]: bigint;
|
|
944
|
+
}): Map<bigint, string>;
|
|
945
|
+
calculateGas(results: SendMessageResult): void;
|
|
946
|
+
asTable(): string;
|
|
947
|
+
}
|
|
948
|
+
declare class TonObjectUnwrapper {
|
|
949
|
+
static getTypeOf(provider: ExtendedContract<TonContractWrapper>, obj_cell: Cell): Promise<string>;
|
|
950
|
+
static getBaseOAppToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<BaseOApp>;
|
|
951
|
+
static getCounterToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Counter>;
|
|
952
|
+
static getLzAttestationToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzAttestation>;
|
|
953
|
+
static getLzConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzConfig>;
|
|
954
|
+
static getLzEpConfigNewWithConnectionToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzEpConfigNewWithConnection>;
|
|
955
|
+
static getLzMsglibInfoToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzMsglibInfo>;
|
|
956
|
+
static getLzPacketToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzPacket>;
|
|
957
|
+
static getLzPathToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzPath>;
|
|
958
|
+
static getLzReceiveEpConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzReceiveEpConfig>;
|
|
959
|
+
static getLzSendEpConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzSendEpConfig>;
|
|
960
|
+
static getLzSmlJobAssignedToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzSmlJobAssigned>;
|
|
961
|
+
static getLzWorkerToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<LzWorker>;
|
|
962
|
+
static getMdAddMsglibToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdAddMsglib>;
|
|
963
|
+
static getMdAmountToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdAmount>;
|
|
964
|
+
static getMdBoolToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdBool>;
|
|
965
|
+
static getMdChannelNonceInfoToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdChannelNonceInfo>;
|
|
966
|
+
static getMdCoinsAmountToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdCoinsAmount>;
|
|
967
|
+
static getMdCounterIncrementToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdCounterIncrement>;
|
|
968
|
+
static getMdDeployToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdDeploy>;
|
|
969
|
+
static getMdExtendedMdToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdExtendedMd>;
|
|
970
|
+
static getMdGetMsglibInfoCallbackToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdGetMsglibInfoCallback>;
|
|
971
|
+
static getMdInitEndpointToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdInitEndpoint>;
|
|
972
|
+
static getMdInitSmlConnectionToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdInitSmlConnection>;
|
|
973
|
+
static getMdInitUlnConnectionToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdInitUlnConnection>;
|
|
974
|
+
static getMdLzReceiveStatusToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdLzReceiveStatus>;
|
|
975
|
+
static getMdLzReceiveStatusNewFullToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdLzReceiveStatusNewFull>;
|
|
976
|
+
static getMdLzSendToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdLzSend>;
|
|
977
|
+
static getMdMdAddressToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMdAddress>;
|
|
978
|
+
static getMdMdEidToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMdEid>;
|
|
979
|
+
static getMdMdObjToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMdObj>;
|
|
980
|
+
static getMdMessagingReceiptToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMessagingReceipt>;
|
|
981
|
+
static getMdMsglibSendCallbackToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMsglibSendCallback>;
|
|
982
|
+
static getMdNonceToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdNonce>;
|
|
983
|
+
static getMdOptionsExtendedToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdOptionsExtended>;
|
|
984
|
+
static getMdOptionsV1ToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdOptionsV1>;
|
|
985
|
+
static getMdOptionsV2ToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdOptionsV2>;
|
|
986
|
+
static getMdPacketIdToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdPacketId>;
|
|
987
|
+
static getMdPacketSentToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdPacketSent>;
|
|
988
|
+
static getMdSetAddressToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetAddress>;
|
|
989
|
+
static getMdSetEpConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetEpConfig>;
|
|
990
|
+
static getMdSetPeerToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetPeer>;
|
|
991
|
+
static getMdSetSmlManagerConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetSmlManagerConfig>;
|
|
992
|
+
static getActionEventToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<ActionEvent>;
|
|
993
|
+
static getPOOOToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<POOO>;
|
|
994
|
+
static getPOOONewWithBitsSetsToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<POOONewWithBitsSets>;
|
|
995
|
+
static getChannelToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Channel>;
|
|
996
|
+
static getControllerToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Controller>;
|
|
997
|
+
static getBaseStorageToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<BaseStorage>;
|
|
998
|
+
static getEndpointToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Endpoint>;
|
|
999
|
+
static getSmlConnectionToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<SmlConnection>;
|
|
1000
|
+
static getSmlManagerToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<SmlManager>;
|
|
1001
|
+
static getUlnReceiveConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<UlnReceiveConfig>;
|
|
1002
|
+
static getMdUlnSendToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdUlnSend>;
|
|
1003
|
+
static getUlnSendConfigToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<UlnSendConfig>;
|
|
1004
|
+
static getMdUlnWorkerEventsToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdUlnWorkerEvents>;
|
|
1005
|
+
static getUlnWorkerInfoToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<UlnWorkerInfo>;
|
|
1006
|
+
static getUlnToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Uln>;
|
|
1007
|
+
static getUlnConnectionToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<UlnConnection>;
|
|
1008
|
+
static getUlnManagerToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<UlnManager>;
|
|
1009
|
+
static getWorkerCoreStorageToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<WorkerCoreStorage>;
|
|
1010
|
+
static getDvnToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Dvn>;
|
|
1011
|
+
static getExecutorToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<Executor>;
|
|
1012
|
+
static getMdExecuteParamsToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdExecuteParams>;
|
|
1013
|
+
static getMdCallContractToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdCallContract>;
|
|
1014
|
+
static getMdMdDictToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdMdDict>;
|
|
1015
|
+
static getMdNativeDropToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdNativeDrop>;
|
|
1016
|
+
static getMdSetDictToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetDict>;
|
|
1017
|
+
static getMdSetQuorumToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSetQuorum>;
|
|
1018
|
+
static getMdSignedRequestToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdSignedRequest>;
|
|
1019
|
+
static getMdUlnCommitPacketToTS(wrapper: ExtendedContract<TonContractWrapper>, cell: Cell): Promise<MdUlnCommitPacket>;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
declare const MASTER_CHAIN_ID = -1;
|
|
1023
|
+
declare const BASE_CHAIN_ID = 0;
|
|
1024
|
+
declare const MASTER_CHAIN_SHARD = "8000000000000000";
|
|
1025
|
+
declare function randomQueryId(): number;
|
|
1026
|
+
declare function beginMessage(opcode: number | bigint, queryId?: number | bigint): Builder;
|
|
1027
|
+
declare function sendRequest(provider: ContractProvider, via: Sender, request: SenderArguments): Promise<void>;
|
|
1028
|
+
|
|
1029
|
+
declare const tonObjects: {
|
|
1030
|
+
readonly BaseOApp: {
|
|
1031
|
+
readonly name: "baseOApp";
|
|
1032
|
+
readonly 0: {
|
|
1033
|
+
readonly fieldName: "BaseOApp::controllerAddress";
|
|
1034
|
+
readonly fieldType: "cl::t::address";
|
|
1035
|
+
};
|
|
1036
|
+
readonly 1: {
|
|
1037
|
+
readonly fieldName: "BaseOApp::eid";
|
|
1038
|
+
readonly fieldType: "cl::t::uint32";
|
|
1039
|
+
};
|
|
1040
|
+
readonly 2: {
|
|
1041
|
+
readonly fieldName: "BaseOApp::maxReceivedNonce";
|
|
1042
|
+
readonly fieldType: "cl::t::dict256";
|
|
1043
|
+
};
|
|
1044
|
+
readonly 3: {
|
|
1045
|
+
readonly fieldName: "BaseOApp::baseLzReceiveGas";
|
|
1046
|
+
readonly fieldType: "cl::t::coins";
|
|
1047
|
+
};
|
|
1048
|
+
readonly 4: {
|
|
1049
|
+
readonly fieldName: "BaseOApp::peers";
|
|
1050
|
+
readonly fieldType: "cl::t::dict256";
|
|
1051
|
+
};
|
|
1052
|
+
readonly 5: {
|
|
1053
|
+
readonly fieldName: "BaseOApp::enforcedOptions";
|
|
1054
|
+
readonly fieldType: "cl::t::dict256";
|
|
1055
|
+
};
|
|
1056
|
+
readonly 6: {
|
|
1057
|
+
readonly fieldName: "BaseOApp::tentativeOwner";
|
|
1058
|
+
readonly fieldType: "cl::t::address";
|
|
1059
|
+
};
|
|
1060
|
+
readonly 7: {
|
|
1061
|
+
readonly fieldName: "BaseOApp::endpointCode";
|
|
1062
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1063
|
+
};
|
|
1064
|
+
readonly 8: {
|
|
1065
|
+
readonly fieldName: "BaseOApp::channelCode";
|
|
1066
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1067
|
+
};
|
|
1068
|
+
readonly 9: {
|
|
1069
|
+
readonly fieldName: "BaseOApp::endpointInitStorage";
|
|
1070
|
+
readonly fieldType: "cl::t::objRef";
|
|
1071
|
+
};
|
|
1072
|
+
};
|
|
1073
|
+
readonly Counter: {
|
|
1074
|
+
readonly name: "counter";
|
|
1075
|
+
readonly 0: {
|
|
1076
|
+
readonly fieldName: "Counter::baseStorage";
|
|
1077
|
+
readonly fieldType: "cl::t::objRef";
|
|
1078
|
+
};
|
|
1079
|
+
readonly 1: {
|
|
1080
|
+
readonly fieldName: "Counter::baseOAppStorage";
|
|
1081
|
+
readonly fieldType: "cl::t::objRef";
|
|
1082
|
+
};
|
|
1083
|
+
readonly 2: {
|
|
1084
|
+
readonly fieldName: "Counter::inboundCount";
|
|
1085
|
+
readonly fieldType: "cl::t::dict256";
|
|
1086
|
+
};
|
|
1087
|
+
readonly 3: {
|
|
1088
|
+
readonly fieldName: "Counter::outboundCount";
|
|
1089
|
+
readonly fieldType: "cl::t::dict256";
|
|
1090
|
+
};
|
|
1091
|
+
readonly 4: {
|
|
1092
|
+
readonly fieldName: "Counter::failNextLzReceive";
|
|
1093
|
+
readonly fieldType: "cl::t::bool";
|
|
1094
|
+
};
|
|
1095
|
+
readonly 5: {
|
|
1096
|
+
readonly fieldName: "Counter::id";
|
|
1097
|
+
readonly fieldType: "cl::t::uint8";
|
|
1098
|
+
};
|
|
1099
|
+
};
|
|
1100
|
+
readonly 'lz::Attestation': {
|
|
1101
|
+
readonly name: "Attest";
|
|
1102
|
+
readonly 0: {
|
|
1103
|
+
readonly fieldName: "lz::Attestation::hash";
|
|
1104
|
+
readonly fieldType: "cl::t::uint256";
|
|
1105
|
+
};
|
|
1106
|
+
readonly 1: {
|
|
1107
|
+
readonly fieldName: "lz::Attestation::confirmations";
|
|
1108
|
+
readonly fieldType: "cl::t::uint64";
|
|
1109
|
+
};
|
|
1110
|
+
};
|
|
1111
|
+
readonly 'lz::Config': {
|
|
1112
|
+
readonly name: "Config";
|
|
1113
|
+
readonly 0: {
|
|
1114
|
+
readonly fieldName: "lz::Config::path";
|
|
1115
|
+
readonly fieldType: "cl::t::objRef";
|
|
1116
|
+
};
|
|
1117
|
+
readonly 1: {
|
|
1118
|
+
readonly fieldName: "lz::Config::forwardingAddress";
|
|
1119
|
+
readonly fieldType: "cl::t::address";
|
|
1120
|
+
};
|
|
1121
|
+
readonly 2: {
|
|
1122
|
+
readonly fieldName: "lz::Config::opCode";
|
|
1123
|
+
readonly fieldType: "cl::t::uint32";
|
|
1124
|
+
};
|
|
1125
|
+
readonly 3: {
|
|
1126
|
+
readonly fieldName: "lz::Config::config";
|
|
1127
|
+
readonly fieldType: "cl::t::objRef";
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
readonly 'lz::EpConfig::NewWithConnection': {
|
|
1131
|
+
readonly name: "EpConfig";
|
|
1132
|
+
readonly 0: {
|
|
1133
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::useDefaults";
|
|
1134
|
+
readonly fieldType: "cl::t::bool";
|
|
1135
|
+
};
|
|
1136
|
+
readonly 1: {
|
|
1137
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::sendMsglib";
|
|
1138
|
+
readonly fieldType: "cl::t::address";
|
|
1139
|
+
};
|
|
1140
|
+
readonly 2: {
|
|
1141
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::sendMsglibConnection";
|
|
1142
|
+
readonly fieldType: "cl::t::address";
|
|
1143
|
+
};
|
|
1144
|
+
readonly 3: {
|
|
1145
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::receiveMsglib";
|
|
1146
|
+
readonly fieldType: "cl::t::address";
|
|
1147
|
+
};
|
|
1148
|
+
readonly 4: {
|
|
1149
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::receiveMsglibConnection";
|
|
1150
|
+
readonly fieldType: "cl::t::address";
|
|
1151
|
+
};
|
|
1152
|
+
readonly 5: {
|
|
1153
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::timeoutReceiveMsglib";
|
|
1154
|
+
readonly fieldType: "cl::t::address";
|
|
1155
|
+
};
|
|
1156
|
+
readonly 6: {
|
|
1157
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::timeoutReceiveMsglibConnection";
|
|
1158
|
+
readonly fieldType: "cl::t::address";
|
|
1159
|
+
};
|
|
1160
|
+
readonly 7: {
|
|
1161
|
+
readonly fieldName: "lz::EpConfig::NewWithConnection::timeoutReceiveMsglibExpiry";
|
|
1162
|
+
readonly fieldType: "cl::t::uint64";
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
readonly 'lz::EpConfig': {
|
|
1166
|
+
readonly name: "EpConfig";
|
|
1167
|
+
};
|
|
1168
|
+
readonly 'lz::EpConfig::NewWithDefaults': {
|
|
1169
|
+
readonly name: "EpConfig";
|
|
1170
|
+
};
|
|
1171
|
+
readonly 'lz::EpConfig::NewFrom': {
|
|
1172
|
+
readonly name: "EpConfig";
|
|
1173
|
+
};
|
|
1174
|
+
readonly 'lz::MsglibInfo': {
|
|
1175
|
+
readonly name: "MsglibInfo";
|
|
1176
|
+
readonly 0: {
|
|
1177
|
+
readonly fieldName: "lz::MsglibInfo::msglibAddress";
|
|
1178
|
+
readonly fieldType: "cl::t::address";
|
|
1179
|
+
};
|
|
1180
|
+
readonly 1: {
|
|
1181
|
+
readonly fieldName: "lz::MsglibInfo::msglibConnectionCode";
|
|
1182
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1183
|
+
};
|
|
1184
|
+
readonly 2: {
|
|
1185
|
+
readonly fieldName: "lz::MsglibInfo::msglibConnectionInitStorage";
|
|
1186
|
+
readonly fieldType: "cl::t::objRef";
|
|
1187
|
+
};
|
|
1188
|
+
};
|
|
1189
|
+
readonly 'lz::Packet': {
|
|
1190
|
+
readonly name: "Packet";
|
|
1191
|
+
readonly 0: {
|
|
1192
|
+
readonly fieldName: "lz::Packet::path";
|
|
1193
|
+
readonly fieldType: "cl::t::objRef";
|
|
1194
|
+
};
|
|
1195
|
+
readonly 1: {
|
|
1196
|
+
readonly fieldName: "lz::Packet::message";
|
|
1197
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1198
|
+
};
|
|
1199
|
+
readonly 2: {
|
|
1200
|
+
readonly fieldName: "lz::Packet::nonce";
|
|
1201
|
+
readonly fieldType: "cl::t::uint64";
|
|
1202
|
+
};
|
|
1203
|
+
readonly 3: {
|
|
1204
|
+
readonly fieldName: "lz::Packet::guid";
|
|
1205
|
+
readonly fieldType: "cl::t::uint256";
|
|
1206
|
+
};
|
|
1207
|
+
};
|
|
1208
|
+
readonly 'lz::Path': {
|
|
1209
|
+
readonly name: "path";
|
|
1210
|
+
readonly 0: {
|
|
1211
|
+
readonly fieldName: "lz::Path::srcEid";
|
|
1212
|
+
readonly fieldType: "cl::t::uint32";
|
|
1213
|
+
};
|
|
1214
|
+
readonly 1: {
|
|
1215
|
+
readonly fieldName: "lz::Path::srcOApp";
|
|
1216
|
+
readonly fieldType: "cl::t::uint256";
|
|
1217
|
+
};
|
|
1218
|
+
readonly 2: {
|
|
1219
|
+
readonly fieldName: "lz::Path::dstEid";
|
|
1220
|
+
readonly fieldType: "cl::t::uint32";
|
|
1221
|
+
};
|
|
1222
|
+
readonly 3: {
|
|
1223
|
+
readonly fieldName: "lz::Path::dstOApp";
|
|
1224
|
+
readonly fieldType: "cl::t::uint256";
|
|
1225
|
+
};
|
|
1226
|
+
};
|
|
1227
|
+
readonly 'lz::ReceiveEpConfig': {
|
|
1228
|
+
readonly name: "RcvMsglib";
|
|
1229
|
+
readonly 0: {
|
|
1230
|
+
readonly fieldName: "lz::ReceiveEpConfig::receiveMsglibConnectionAddress";
|
|
1231
|
+
readonly fieldType: "cl::t::address";
|
|
1232
|
+
};
|
|
1233
|
+
readonly 1: {
|
|
1234
|
+
readonly fieldName: "lz::ReceiveEpConfig::timeoutReceiveMsglibConnectionAddress";
|
|
1235
|
+
readonly fieldType: "cl::t::address";
|
|
1236
|
+
};
|
|
1237
|
+
readonly 2: {
|
|
1238
|
+
readonly fieldName: "lz::ReceiveEpConfig::expiry";
|
|
1239
|
+
readonly fieldType: "cl::t::uint64";
|
|
1240
|
+
};
|
|
1241
|
+
};
|
|
1242
|
+
readonly 'lz::SendEpConfig': {
|
|
1243
|
+
readonly name: "SendEpCfg";
|
|
1244
|
+
readonly 0: {
|
|
1245
|
+
readonly fieldName: "lz::SendEpConfig::sendMsglibAddress";
|
|
1246
|
+
readonly fieldType: "cl::t::address";
|
|
1247
|
+
};
|
|
1248
|
+
readonly 1: {
|
|
1249
|
+
readonly fieldName: "lz::SendEpConfig::sendMsglibConnectionAddress";
|
|
1250
|
+
readonly fieldType: "cl::t::address";
|
|
1251
|
+
};
|
|
1252
|
+
};
|
|
1253
|
+
readonly 'lz::SmlJobAssigned': {
|
|
1254
|
+
readonly name: "SmlJobAssg";
|
|
1255
|
+
readonly 0: {
|
|
1256
|
+
readonly fieldName: "lz::SmlJobAssigned::executorAddress";
|
|
1257
|
+
readonly fieldType: "cl::t::address";
|
|
1258
|
+
};
|
|
1259
|
+
readonly 1: {
|
|
1260
|
+
readonly fieldName: "lz::SmlJobAssigned::fee";
|
|
1261
|
+
readonly fieldType: "cl::t::coins";
|
|
1262
|
+
};
|
|
1263
|
+
};
|
|
1264
|
+
readonly 'lz::Worker': {
|
|
1265
|
+
readonly name: "Worker";
|
|
1266
|
+
readonly 0: {
|
|
1267
|
+
readonly fieldName: "lz::Worker::owner";
|
|
1268
|
+
readonly fieldType: "cl::t::address";
|
|
1269
|
+
};
|
|
1270
|
+
readonly 1: {
|
|
1271
|
+
readonly fieldName: "lz::Worker::viewAllowlist";
|
|
1272
|
+
readonly fieldType: "cl::t::dict256";
|
|
1273
|
+
};
|
|
1274
|
+
readonly 2: {
|
|
1275
|
+
readonly fieldName: "lz::Worker::viewDependencies";
|
|
1276
|
+
readonly fieldType: "cl::t::dict256";
|
|
1277
|
+
};
|
|
1278
|
+
readonly 3: {
|
|
1279
|
+
readonly fieldName: "lz::Worker::bytecodeLibrary";
|
|
1280
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1281
|
+
};
|
|
1282
|
+
readonly 4: {
|
|
1283
|
+
readonly fieldName: "lz::Worker::storage";
|
|
1284
|
+
readonly fieldType: "cl::t::objRef";
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
readonly 'md::AddMsglib': {
|
|
1288
|
+
readonly name: "addMsgLib";
|
|
1289
|
+
readonly 0: {
|
|
1290
|
+
readonly fieldName: "md::AddMsglib::msglibManagerAddress";
|
|
1291
|
+
readonly fieldType: "cl::t::address";
|
|
1292
|
+
};
|
|
1293
|
+
readonly 1: {
|
|
1294
|
+
readonly fieldName: "md::AddMsglib::dstEid";
|
|
1295
|
+
readonly fieldType: "cl::t::uint32";
|
|
1296
|
+
};
|
|
1297
|
+
};
|
|
1298
|
+
readonly 'md::Amount': {
|
|
1299
|
+
readonly name: "Amount";
|
|
1300
|
+
readonly 0: {
|
|
1301
|
+
readonly fieldName: "md::Amount::amount";
|
|
1302
|
+
readonly fieldType: "cl::t::coins";
|
|
1303
|
+
};
|
|
1304
|
+
};
|
|
1305
|
+
readonly 'md::Bool': {
|
|
1306
|
+
readonly name: "Bool";
|
|
1307
|
+
readonly 0: {
|
|
1308
|
+
readonly fieldName: "md::Bool::bool";
|
|
1309
|
+
readonly fieldType: "cl::t::bool";
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
readonly 'md::ChannelNonceInfo': {
|
|
1313
|
+
readonly name: "cNonceInfo";
|
|
1314
|
+
readonly 0: {
|
|
1315
|
+
readonly fieldName: "md::ChannelNonceInfo::firstUncommittedNonce";
|
|
1316
|
+
readonly fieldType: "cl::t::uint64";
|
|
1317
|
+
};
|
|
1318
|
+
readonly 1: {
|
|
1319
|
+
readonly fieldName: "md::ChannelNonceInfo::firstUnexecutedNonce";
|
|
1320
|
+
readonly fieldType: "cl::t::uint64";
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
readonly 'md::CoinsAmount': {
|
|
1324
|
+
readonly name: "coinsAmt";
|
|
1325
|
+
readonly 0: {
|
|
1326
|
+
readonly fieldName: "md::CoinsAmount::amount";
|
|
1327
|
+
readonly fieldType: "cl::t::coins";
|
|
1328
|
+
};
|
|
1329
|
+
};
|
|
1330
|
+
readonly 'md::CounterIncrement': {
|
|
1331
|
+
readonly name: "countIncr";
|
|
1332
|
+
readonly 0: {
|
|
1333
|
+
readonly fieldName: "md::CounterIncrement::dstEid";
|
|
1334
|
+
readonly fieldType: "cl::t::uint32";
|
|
1335
|
+
};
|
|
1336
|
+
readonly 1: {
|
|
1337
|
+
readonly fieldName: "md::CounterIncrement::incrementType";
|
|
1338
|
+
readonly fieldType: "cl::t::uint8";
|
|
1339
|
+
};
|
|
1340
|
+
readonly 2: {
|
|
1341
|
+
readonly fieldName: "md::CounterIncrement::extraOptions";
|
|
1342
|
+
readonly fieldType: "cl::t::objRef";
|
|
1343
|
+
};
|
|
1344
|
+
readonly 3: {
|
|
1345
|
+
readonly fieldName: "md::CounterIncrement::nativeFee";
|
|
1346
|
+
readonly fieldType: "cl::t::coins";
|
|
1347
|
+
};
|
|
1348
|
+
readonly 4: {
|
|
1349
|
+
readonly fieldName: "md::CounterIncrement::zroFee";
|
|
1350
|
+
readonly fieldType: "cl::t::coins";
|
|
1351
|
+
};
|
|
1352
|
+
};
|
|
1353
|
+
readonly 'md::Deploy': {
|
|
1354
|
+
readonly name: "deploy";
|
|
1355
|
+
readonly 0: {
|
|
1356
|
+
readonly fieldName: "md::Deploy::initialDeposit";
|
|
1357
|
+
readonly fieldType: "cl::t::coins";
|
|
1358
|
+
};
|
|
1359
|
+
readonly 1: {
|
|
1360
|
+
readonly fieldName: "md::Deploy::dstEid";
|
|
1361
|
+
readonly fieldType: "cl::t::uint32";
|
|
1362
|
+
};
|
|
1363
|
+
readonly 2: {
|
|
1364
|
+
readonly fieldName: "md::Deploy::dstOApp";
|
|
1365
|
+
readonly fieldType: "cl::t::uint256";
|
|
1366
|
+
};
|
|
1367
|
+
};
|
|
1368
|
+
readonly 'md::ExtendedMd': {
|
|
1369
|
+
readonly name: "extendedMd";
|
|
1370
|
+
readonly 0: {
|
|
1371
|
+
readonly fieldName: "md::ExtendedMd::md";
|
|
1372
|
+
readonly fieldType: "cl::t::objRef";
|
|
1373
|
+
};
|
|
1374
|
+
readonly 1: {
|
|
1375
|
+
readonly fieldName: "md::ExtendedMd::obj";
|
|
1376
|
+
readonly fieldType: "cl::t::objRef";
|
|
1377
|
+
};
|
|
1378
|
+
readonly 2: {
|
|
1379
|
+
readonly fieldName: "md::ExtendedMd::forwardingAddress";
|
|
1380
|
+
readonly fieldType: "cl::t::address";
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
readonly 'md::getMsglibInfoCallback': {
|
|
1384
|
+
readonly name: "getMsgLbCb";
|
|
1385
|
+
readonly 0: {
|
|
1386
|
+
readonly fieldName: "md::getMsglibInfoCallback::msglibAddress";
|
|
1387
|
+
readonly fieldType: "cl::t::address";
|
|
1388
|
+
};
|
|
1389
|
+
readonly 1: {
|
|
1390
|
+
readonly fieldName: "md::getMsglibInfoCallback::connectionCode";
|
|
1391
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1392
|
+
};
|
|
1393
|
+
};
|
|
1394
|
+
readonly 'md::InitEndpoint': {
|
|
1395
|
+
readonly name: "initEp";
|
|
1396
|
+
readonly 0: {
|
|
1397
|
+
readonly fieldName: "md::InitEndpoint::channelCode";
|
|
1398
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
readonly 'md::InitSmlConnection': {
|
|
1402
|
+
readonly name: "initSmlCon";
|
|
1403
|
+
readonly 0: {
|
|
1404
|
+
readonly fieldName: "md::InitSmlConnection::channelAddress";
|
|
1405
|
+
readonly fieldType: "cl::t::address";
|
|
1406
|
+
};
|
|
1407
|
+
};
|
|
1408
|
+
readonly 'md::InitUlnConnection': {
|
|
1409
|
+
readonly name: "initUlnCon";
|
|
1410
|
+
readonly 0: {
|
|
1411
|
+
readonly fieldName: "md::InitUlnConnection::ulnSendConfigOApp";
|
|
1412
|
+
readonly fieldType: "cl::t::objRef";
|
|
1413
|
+
};
|
|
1414
|
+
readonly 1: {
|
|
1415
|
+
readonly fieldName: "md::InitUlnConnection::UlnReceiveConfigOApp";
|
|
1416
|
+
readonly fieldType: "cl::t::objRef";
|
|
1417
|
+
};
|
|
1418
|
+
};
|
|
1419
|
+
readonly 'md::LzReceiveStatus': {
|
|
1420
|
+
readonly name: "LzRecvSts";
|
|
1421
|
+
readonly 0: {
|
|
1422
|
+
readonly fieldName: "md::LzReceiveStatus::success";
|
|
1423
|
+
readonly fieldType: "cl::t::bool";
|
|
1424
|
+
};
|
|
1425
|
+
readonly 1: {
|
|
1426
|
+
readonly fieldName: "md::LzReceiveStatus::nonce";
|
|
1427
|
+
readonly fieldType: "cl::t::uint64";
|
|
1428
|
+
};
|
|
1429
|
+
readonly 2: {
|
|
1430
|
+
readonly fieldName: "md::LzReceiveStatus::value";
|
|
1431
|
+
readonly fieldType: "cl::t::coins";
|
|
1432
|
+
};
|
|
1433
|
+
readonly 3: {
|
|
1434
|
+
readonly fieldName: "md::LzReceiveStatus::extraData";
|
|
1435
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1436
|
+
};
|
|
1437
|
+
readonly 4: {
|
|
1438
|
+
readonly fieldName: "md::LzReceiveStatus::reason";
|
|
1439
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1440
|
+
};
|
|
1441
|
+
readonly 5: {
|
|
1442
|
+
readonly fieldName: "md::LzReceiveStatus::sender";
|
|
1443
|
+
readonly fieldType: "cl::t::address";
|
|
1444
|
+
};
|
|
1445
|
+
readonly 6: {
|
|
1446
|
+
readonly fieldName: "md::LzReceiveStatus::packet";
|
|
1447
|
+
readonly fieldType: "cl::t::objRef";
|
|
1448
|
+
};
|
|
1449
|
+
readonly 7: {
|
|
1450
|
+
readonly fieldName: "md::LzReceiveStatus::executionStatus";
|
|
1451
|
+
readonly fieldType: "cl::t::uint8";
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
readonly 'md::LzReceiveStatus::NewFull': {
|
|
1455
|
+
readonly name: "LzRecvSts";
|
|
1456
|
+
readonly 0: {
|
|
1457
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::success";
|
|
1458
|
+
readonly fieldType: "cl::t::bool";
|
|
1459
|
+
};
|
|
1460
|
+
readonly 1: {
|
|
1461
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::nonce";
|
|
1462
|
+
readonly fieldType: "cl::t::uint64";
|
|
1463
|
+
};
|
|
1464
|
+
readonly 2: {
|
|
1465
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::value";
|
|
1466
|
+
readonly fieldType: "cl::t::coins";
|
|
1467
|
+
};
|
|
1468
|
+
readonly 3: {
|
|
1469
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::extraData";
|
|
1470
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1471
|
+
};
|
|
1472
|
+
readonly 4: {
|
|
1473
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::reason";
|
|
1474
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1475
|
+
};
|
|
1476
|
+
readonly 5: {
|
|
1477
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::sender";
|
|
1478
|
+
readonly fieldType: "cl::t::address";
|
|
1479
|
+
};
|
|
1480
|
+
readonly 6: {
|
|
1481
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::packet";
|
|
1482
|
+
readonly fieldType: "cl::t::objRef";
|
|
1483
|
+
};
|
|
1484
|
+
readonly 7: {
|
|
1485
|
+
readonly fieldName: "md::LzReceiveStatus::NewFull::executionStatus";
|
|
1486
|
+
readonly fieldType: "cl::t::uint8";
|
|
1487
|
+
};
|
|
1488
|
+
};
|
|
1489
|
+
readonly 'md::LzSend': {
|
|
1490
|
+
readonly name: "lzSend";
|
|
1491
|
+
readonly 0: {
|
|
1492
|
+
readonly fieldName: "md::LzSend::sendRequestId";
|
|
1493
|
+
readonly fieldType: "cl::t::uint64";
|
|
1494
|
+
};
|
|
1495
|
+
readonly 1: {
|
|
1496
|
+
readonly fieldName: "md::LzSend::sendMsglib";
|
|
1497
|
+
readonly fieldType: "cl::t::address";
|
|
1498
|
+
};
|
|
1499
|
+
readonly 2: {
|
|
1500
|
+
readonly fieldName: "md::LzSend::sendMsglibConnection";
|
|
1501
|
+
readonly fieldType: "cl::t::address";
|
|
1502
|
+
};
|
|
1503
|
+
readonly 3: {
|
|
1504
|
+
readonly fieldName: "md::LzSend::packet";
|
|
1505
|
+
readonly fieldType: "cl::t::objRef";
|
|
1506
|
+
};
|
|
1507
|
+
readonly 4: {
|
|
1508
|
+
readonly fieldName: "md::LzSend::nativeFee";
|
|
1509
|
+
readonly fieldType: "cl::t::coins";
|
|
1510
|
+
};
|
|
1511
|
+
readonly 5: {
|
|
1512
|
+
readonly fieldName: "md::LzSend::zroFee";
|
|
1513
|
+
readonly fieldType: "cl::t::coins";
|
|
1514
|
+
};
|
|
1515
|
+
readonly 6: {
|
|
1516
|
+
readonly fieldName: "md::LzSend::extraOptions";
|
|
1517
|
+
readonly fieldType: "cl::t::objRef";
|
|
1518
|
+
};
|
|
1519
|
+
readonly 7: {
|
|
1520
|
+
readonly fieldName: "md::LzSend::enforcedOptions";
|
|
1521
|
+
readonly fieldType: "cl::t::objRef";
|
|
1522
|
+
};
|
|
1523
|
+
readonly 8: {
|
|
1524
|
+
readonly fieldName: "md::LzSend::callbackData";
|
|
1525
|
+
readonly fieldType: "cl::t::objRef";
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
readonly 'md::MdAddress': {
|
|
1529
|
+
readonly name: "MdAddr";
|
|
1530
|
+
readonly 0: {
|
|
1531
|
+
readonly fieldName: "md::MdAddress::md";
|
|
1532
|
+
readonly fieldType: "cl::t::objRef";
|
|
1533
|
+
};
|
|
1534
|
+
readonly 1: {
|
|
1535
|
+
readonly fieldName: "md::MdAddress::address";
|
|
1536
|
+
readonly fieldType: "cl::t::address";
|
|
1537
|
+
};
|
|
1538
|
+
};
|
|
1539
|
+
readonly 'md::MdEid': {
|
|
1540
|
+
readonly name: "MdEid";
|
|
1541
|
+
readonly 0: {
|
|
1542
|
+
readonly fieldName: "md::MdEid::md";
|
|
1543
|
+
readonly fieldType: "cl::t::objRef";
|
|
1544
|
+
};
|
|
1545
|
+
readonly 1: {
|
|
1546
|
+
readonly fieldName: "md::MdEid::eid";
|
|
1547
|
+
readonly fieldType: "cl::t::uint32";
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
readonly 'md::MdObj': {
|
|
1551
|
+
readonly name: "MdObj";
|
|
1552
|
+
readonly 0: {
|
|
1553
|
+
readonly fieldName: "md::MdObj::md";
|
|
1554
|
+
readonly fieldType: "cl::t::objRef";
|
|
1555
|
+
};
|
|
1556
|
+
readonly 1: {
|
|
1557
|
+
readonly fieldName: "md::MdObj::obj";
|
|
1558
|
+
readonly fieldType: "cl::t::objRef";
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
readonly 'md::MessagingReceipt': {
|
|
1562
|
+
readonly name: "msgreceipt";
|
|
1563
|
+
readonly 0: {
|
|
1564
|
+
readonly fieldName: "md::MessagingReceipt::lzSend";
|
|
1565
|
+
readonly fieldType: "cl::t::objRef";
|
|
1566
|
+
};
|
|
1567
|
+
readonly 1: {
|
|
1568
|
+
readonly fieldName: "md::MessagingReceipt::nativeFeeActual";
|
|
1569
|
+
readonly fieldType: "cl::t::coins";
|
|
1570
|
+
};
|
|
1571
|
+
readonly 2: {
|
|
1572
|
+
readonly fieldName: "md::MessagingReceipt::zroFeeActual";
|
|
1573
|
+
readonly fieldType: "cl::t::coins";
|
|
1574
|
+
};
|
|
1575
|
+
readonly 3: {
|
|
1576
|
+
readonly fieldName: "md::MessagingReceipt::errorCode";
|
|
1577
|
+
readonly fieldType: "cl::t::uint16";
|
|
1578
|
+
};
|
|
1579
|
+
};
|
|
1580
|
+
readonly 'md::MsglibSendCallback': {
|
|
1581
|
+
readonly name: "libSndCb";
|
|
1582
|
+
readonly 0: {
|
|
1583
|
+
readonly fieldName: "md::MsglibSendCallback::addressIdx";
|
|
1584
|
+
readonly fieldType: "cl::t::coins";
|
|
1585
|
+
};
|
|
1586
|
+
readonly 1: {
|
|
1587
|
+
readonly fieldName: "md::MsglibSendCallback::nativeAmountIdx";
|
|
1588
|
+
readonly fieldType: "cl::t::coins";
|
|
1589
|
+
};
|
|
1590
|
+
readonly 2: {
|
|
1591
|
+
readonly fieldName: "md::MsglibSendCallback::lzSend";
|
|
1592
|
+
readonly fieldType: "cl::t::objRef";
|
|
1593
|
+
};
|
|
1594
|
+
readonly 3: {
|
|
1595
|
+
readonly fieldName: "md::MsglibSendCallback::packetEncoded";
|
|
1596
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1597
|
+
};
|
|
1598
|
+
readonly 4: {
|
|
1599
|
+
readonly fieldName: "md::MsglibSendCallback::payees";
|
|
1600
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1601
|
+
};
|
|
1602
|
+
readonly 5: {
|
|
1603
|
+
readonly fieldName: "md::MsglibSendCallback::nonceByteOffset";
|
|
1604
|
+
readonly fieldType: "cl::t::uint16";
|
|
1605
|
+
};
|
|
1606
|
+
readonly 6: {
|
|
1607
|
+
readonly fieldName: "md::MsglibSendCallback::nonceBytes";
|
|
1608
|
+
readonly fieldType: "cl::t::uint8";
|
|
1609
|
+
};
|
|
1610
|
+
readonly 7: {
|
|
1611
|
+
readonly fieldName: "md::MsglibSendCallback::guidByteOffset";
|
|
1612
|
+
readonly fieldType: "cl::t::uint16";
|
|
1613
|
+
};
|
|
1614
|
+
readonly 8: {
|
|
1615
|
+
readonly fieldName: "md::MsglibSendCallback::guidBytes";
|
|
1616
|
+
readonly fieldType: "cl::t::uint8";
|
|
1617
|
+
};
|
|
1618
|
+
readonly 9: {
|
|
1619
|
+
readonly fieldName: "md::MsglibSendCallback::msglibSendEvents";
|
|
1620
|
+
readonly fieldType: "cl::t::objRef";
|
|
1621
|
+
};
|
|
1622
|
+
readonly 10: {
|
|
1623
|
+
readonly fieldName: "md::MsglibSendCallback::errorCode";
|
|
1624
|
+
readonly fieldType: "cl::t::uint8";
|
|
1625
|
+
};
|
|
1626
|
+
};
|
|
1627
|
+
readonly 'md::Nonce': {
|
|
1628
|
+
readonly name: "nonce";
|
|
1629
|
+
readonly 0: {
|
|
1630
|
+
readonly fieldName: "md::Nonce::nonce";
|
|
1631
|
+
readonly fieldType: "cl::t::uint64";
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
readonly 'md::OptionsExtended': {
|
|
1635
|
+
readonly name: "OptionsExt";
|
|
1636
|
+
readonly 0: {
|
|
1637
|
+
readonly fieldName: "md::OptionsExtended::eid";
|
|
1638
|
+
readonly fieldType: "cl::t::uint32";
|
|
1639
|
+
};
|
|
1640
|
+
readonly 1: {
|
|
1641
|
+
readonly fieldName: "md::OptionsExtended::msgType";
|
|
1642
|
+
readonly fieldType: "cl::t::uint32";
|
|
1643
|
+
};
|
|
1644
|
+
readonly 2: {
|
|
1645
|
+
readonly fieldName: "md::OptionsExtended::options";
|
|
1646
|
+
readonly fieldType: "cl::t::objRef";
|
|
1647
|
+
};
|
|
1648
|
+
};
|
|
1649
|
+
readonly 'md::OptionsV1': {
|
|
1650
|
+
readonly name: "OptionsV1";
|
|
1651
|
+
readonly 0: {
|
|
1652
|
+
readonly fieldName: "md::OptionsV1::lzReceiveGas";
|
|
1653
|
+
readonly fieldType: "cl::t::uint256";
|
|
1654
|
+
};
|
|
1655
|
+
readonly 1: {
|
|
1656
|
+
readonly fieldName: "md::OptionsV1::lzReceiveValue";
|
|
1657
|
+
readonly fieldType: "cl::t::uint256";
|
|
1658
|
+
};
|
|
1659
|
+
readonly 2: {
|
|
1660
|
+
readonly fieldName: "md::OptionsV1::nativeDropAddress";
|
|
1661
|
+
readonly fieldType: "cl::t::address";
|
|
1662
|
+
};
|
|
1663
|
+
readonly 3: {
|
|
1664
|
+
readonly fieldName: "md::OptionsV1::nativeDropAmount";
|
|
1665
|
+
readonly fieldType: "cl::t::uint256";
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
readonly 'md::OptionsV2': {
|
|
1669
|
+
readonly name: "OptionsV2";
|
|
1670
|
+
readonly 0: {
|
|
1671
|
+
readonly fieldName: "md::OptionsV2::lzReceiveGas";
|
|
1672
|
+
readonly fieldType: "cl::t::uint256";
|
|
1673
|
+
};
|
|
1674
|
+
readonly 1: {
|
|
1675
|
+
readonly fieldName: "md::OptionsV2::lzReceiveValue";
|
|
1676
|
+
readonly fieldType: "cl::t::uint256";
|
|
1677
|
+
};
|
|
1678
|
+
readonly 2: {
|
|
1679
|
+
readonly fieldName: "md::OptionsV2::lzComposeGas";
|
|
1680
|
+
readonly fieldType: "cl::t::uint256";
|
|
1681
|
+
};
|
|
1682
|
+
readonly 3: {
|
|
1683
|
+
readonly fieldName: "md::OptionsV2::nativeDropAddress";
|
|
1684
|
+
readonly fieldType: "cl::t::address";
|
|
1685
|
+
};
|
|
1686
|
+
readonly 4: {
|
|
1687
|
+
readonly fieldName: "md::OptionsV2::nativeDropAmount";
|
|
1688
|
+
readonly fieldType: "cl::t::uint256";
|
|
1689
|
+
};
|
|
1690
|
+
};
|
|
1691
|
+
readonly 'md::PacketId': {
|
|
1692
|
+
readonly name: "pktId";
|
|
1693
|
+
readonly 0: {
|
|
1694
|
+
readonly fieldName: "md::PacketId::path";
|
|
1695
|
+
readonly fieldType: "cl::t::objRef";
|
|
1696
|
+
};
|
|
1697
|
+
readonly 1: {
|
|
1698
|
+
readonly fieldName: "md::PacketId::nonce";
|
|
1699
|
+
readonly fieldType: "cl::t::uint64";
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
readonly 'md::PacketSent': {
|
|
1703
|
+
readonly name: "pktSent";
|
|
1704
|
+
readonly 0: {
|
|
1705
|
+
readonly fieldName: "md::PacketSent::nativeFee";
|
|
1706
|
+
readonly fieldType: "cl::t::coins";
|
|
1707
|
+
};
|
|
1708
|
+
readonly 1: {
|
|
1709
|
+
readonly fieldName: "md::PacketSent::zroFee";
|
|
1710
|
+
readonly fieldType: "cl::t::coins";
|
|
1711
|
+
};
|
|
1712
|
+
readonly 2: {
|
|
1713
|
+
readonly fieldName: "md::PacketSent::extraOptions";
|
|
1714
|
+
readonly fieldType: "cl::t::objRef";
|
|
1715
|
+
};
|
|
1716
|
+
readonly 3: {
|
|
1717
|
+
readonly fieldName: "md::PacketSent::enforcedOptions";
|
|
1718
|
+
readonly fieldType: "cl::t::objRef";
|
|
1719
|
+
};
|
|
1720
|
+
readonly 4: {
|
|
1721
|
+
readonly fieldName: "md::PacketSent::packetEncoded";
|
|
1722
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1723
|
+
};
|
|
1724
|
+
readonly 5: {
|
|
1725
|
+
readonly fieldName: "md::PacketSent::nonce";
|
|
1726
|
+
readonly fieldType: "cl::t::uint64";
|
|
1727
|
+
};
|
|
1728
|
+
readonly 6: {
|
|
1729
|
+
readonly fieldName: "md::PacketSent::msglibAddress";
|
|
1730
|
+
readonly fieldType: "cl::t::address";
|
|
1731
|
+
};
|
|
1732
|
+
readonly 7: {
|
|
1733
|
+
readonly fieldName: "md::PacketSent::msglibSendEvents";
|
|
1734
|
+
readonly fieldType: "cl::t::objRef";
|
|
1735
|
+
};
|
|
1736
|
+
};
|
|
1737
|
+
readonly 'md::SetAddress': {
|
|
1738
|
+
readonly name: "setAddress";
|
|
1739
|
+
readonly 0: {
|
|
1740
|
+
readonly fieldName: "md::SetAddress::address";
|
|
1741
|
+
readonly fieldType: "cl::t::address";
|
|
1742
|
+
};
|
|
1743
|
+
};
|
|
1744
|
+
readonly 'md::SetEpConfig': {
|
|
1745
|
+
readonly name: "SetEpCfg";
|
|
1746
|
+
readonly 0: {
|
|
1747
|
+
readonly fieldName: "md::SetEpConfig::useDefaults";
|
|
1748
|
+
readonly fieldType: "cl::t::bool";
|
|
1749
|
+
};
|
|
1750
|
+
readonly 1: {
|
|
1751
|
+
readonly fieldName: "md::SetEpConfig::sendMsglibManager";
|
|
1752
|
+
readonly fieldType: "cl::t::address";
|
|
1753
|
+
};
|
|
1754
|
+
readonly 2: {
|
|
1755
|
+
readonly fieldName: "md::SetEpConfig::receiveMsglibManager";
|
|
1756
|
+
readonly fieldType: "cl::t::address";
|
|
1757
|
+
};
|
|
1758
|
+
readonly 3: {
|
|
1759
|
+
readonly fieldName: "md::SetEpConfig::timeoutReceiveMsglibManager";
|
|
1760
|
+
readonly fieldType: "cl::t::address";
|
|
1761
|
+
};
|
|
1762
|
+
readonly 4: {
|
|
1763
|
+
readonly fieldName: "md::SetEpConfig::timeoutReceiveMsglibExpiry";
|
|
1764
|
+
readonly fieldType: "cl::t::uint64";
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
readonly 'md::SetPeer': {
|
|
1768
|
+
readonly name: "setPeer";
|
|
1769
|
+
readonly 0: {
|
|
1770
|
+
readonly fieldName: "md::SetPeer::eid";
|
|
1771
|
+
readonly fieldType: "cl::t::uint32";
|
|
1772
|
+
};
|
|
1773
|
+
readonly 1: {
|
|
1774
|
+
readonly fieldName: "md::SetPeer::peer";
|
|
1775
|
+
readonly fieldType: "cl::t::uint256";
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
readonly 'md::SetSmlManagerConfig': {
|
|
1779
|
+
readonly name: "setSmlCfg";
|
|
1780
|
+
readonly 0: {
|
|
1781
|
+
readonly fieldName: "md::SetSmlManagerConfig::nativeFee";
|
|
1782
|
+
readonly fieldType: "cl::t::coins";
|
|
1783
|
+
};
|
|
1784
|
+
readonly 1: {
|
|
1785
|
+
readonly fieldName: "md::SetSmlManagerConfig::zroFee";
|
|
1786
|
+
readonly fieldType: "cl::t::coins";
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
readonly 'cl::dict256': {
|
|
1790
|
+
readonly name: "cl::dict256";
|
|
1791
|
+
};
|
|
1792
|
+
readonly POOO: {
|
|
1793
|
+
readonly name: "POOO";
|
|
1794
|
+
readonly 0: {
|
|
1795
|
+
readonly fieldName: "POOO::nextEmpty";
|
|
1796
|
+
readonly fieldType: "cl::t::uint64";
|
|
1797
|
+
};
|
|
1798
|
+
readonly 1: {
|
|
1799
|
+
readonly fieldName: "POOO::bitmap";
|
|
1800
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1801
|
+
};
|
|
1802
|
+
};
|
|
1803
|
+
readonly 'POOO::NewWithBitsSets': {
|
|
1804
|
+
readonly name: "POOO";
|
|
1805
|
+
readonly 0: {
|
|
1806
|
+
readonly fieldName: "POOO::NewWithBitsSets::nextEmpty";
|
|
1807
|
+
readonly fieldType: "cl::t::uint64";
|
|
1808
|
+
};
|
|
1809
|
+
readonly 1: {
|
|
1810
|
+
readonly fieldName: "POOO::NewWithBitsSets::bitmap";
|
|
1811
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1812
|
+
};
|
|
1813
|
+
};
|
|
1814
|
+
readonly Channel: {
|
|
1815
|
+
readonly name: "channel";
|
|
1816
|
+
readonly 0: {
|
|
1817
|
+
readonly fieldName: "Channel::baseStorage";
|
|
1818
|
+
readonly fieldType: "cl::t::objRef";
|
|
1819
|
+
};
|
|
1820
|
+
readonly 1: {
|
|
1821
|
+
readonly fieldName: "Channel::path";
|
|
1822
|
+
readonly fieldType: "cl::t::objRef";
|
|
1823
|
+
};
|
|
1824
|
+
readonly 2: {
|
|
1825
|
+
readonly fieldName: "Channel::endpointAddress";
|
|
1826
|
+
readonly fieldType: "cl::t::address";
|
|
1827
|
+
};
|
|
1828
|
+
readonly 3: {
|
|
1829
|
+
readonly fieldName: "Channel::epConfigOApp";
|
|
1830
|
+
readonly fieldType: "cl::t::objRef";
|
|
1831
|
+
};
|
|
1832
|
+
readonly 4: {
|
|
1833
|
+
readonly fieldName: "Channel::outboundNonce";
|
|
1834
|
+
readonly fieldType: "cl::t::uint64";
|
|
1835
|
+
};
|
|
1836
|
+
readonly 5: {
|
|
1837
|
+
readonly fieldName: "Channel::sendRequestQueue";
|
|
1838
|
+
readonly fieldType: "cl::t::dict256";
|
|
1839
|
+
};
|
|
1840
|
+
readonly 6: {
|
|
1841
|
+
readonly fieldName: "Channel::lastSendRequestId";
|
|
1842
|
+
readonly fieldType: "cl::t::uint64";
|
|
1843
|
+
};
|
|
1844
|
+
readonly 7: {
|
|
1845
|
+
readonly fieldName: "Channel::commitPOOO";
|
|
1846
|
+
readonly fieldType: "cl::t::objRef";
|
|
1847
|
+
};
|
|
1848
|
+
readonly 8: {
|
|
1849
|
+
readonly fieldName: "Channel::executePOOO";
|
|
1850
|
+
readonly fieldType: "cl::t::objRef";
|
|
1851
|
+
};
|
|
1852
|
+
readonly 9: {
|
|
1853
|
+
readonly fieldName: "Channel::executionQueue";
|
|
1854
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1855
|
+
};
|
|
1856
|
+
readonly 10: {
|
|
1857
|
+
readonly fieldName: "Channel::zroBalance";
|
|
1858
|
+
readonly fieldType: "cl::t::coins";
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
readonly Controller: {
|
|
1862
|
+
readonly name: "controller";
|
|
1863
|
+
readonly 0: {
|
|
1864
|
+
readonly fieldName: "Controller::baseStorage";
|
|
1865
|
+
readonly fieldType: "cl::t::objRef";
|
|
1866
|
+
};
|
|
1867
|
+
readonly 1: {
|
|
1868
|
+
readonly fieldName: "Controller::eid";
|
|
1869
|
+
readonly fieldType: "cl::t::uint32";
|
|
1870
|
+
};
|
|
1871
|
+
readonly 2: {
|
|
1872
|
+
readonly fieldName: "Controller::endpointCode";
|
|
1873
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1874
|
+
};
|
|
1875
|
+
readonly 3: {
|
|
1876
|
+
readonly fieldName: "Controller::channelCode";
|
|
1877
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1878
|
+
};
|
|
1879
|
+
readonly 4: {
|
|
1880
|
+
readonly fieldName: "Controller::zroWallet";
|
|
1881
|
+
readonly fieldType: "cl::t::address";
|
|
1882
|
+
};
|
|
1883
|
+
readonly 5: {
|
|
1884
|
+
readonly fieldName: "Controller::tentativeOwner";
|
|
1885
|
+
readonly fieldType: "cl::t::address";
|
|
1886
|
+
};
|
|
1887
|
+
};
|
|
1888
|
+
readonly BaseStorage: {
|
|
1889
|
+
readonly name: "baseStore";
|
|
1890
|
+
readonly 0: {
|
|
1891
|
+
readonly fieldName: "BaseStorage::owner";
|
|
1892
|
+
readonly fieldType: "cl::t::address";
|
|
1893
|
+
};
|
|
1894
|
+
readonly 1: {
|
|
1895
|
+
readonly fieldName: "BaseStorage::authenticated";
|
|
1896
|
+
readonly fieldType: "cl::t::bool";
|
|
1897
|
+
};
|
|
1898
|
+
readonly 2: {
|
|
1899
|
+
readonly fieldName: "BaseStorage::initialized";
|
|
1900
|
+
readonly fieldType: "cl::t::bool";
|
|
1901
|
+
};
|
|
1902
|
+
readonly 3: {
|
|
1903
|
+
readonly fieldName: "BaseStorage::initialStorage";
|
|
1904
|
+
readonly fieldType: "cl::t::objRef";
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
readonly Endpoint: {
|
|
1908
|
+
readonly name: "endpoint";
|
|
1909
|
+
readonly 0: {
|
|
1910
|
+
readonly fieldName: "Endpoint::baseStorage";
|
|
1911
|
+
readonly fieldType: "cl::t::objRef";
|
|
1912
|
+
};
|
|
1913
|
+
readonly 1: {
|
|
1914
|
+
readonly fieldName: "Endpoint::eid";
|
|
1915
|
+
readonly fieldType: "cl::t::uint32";
|
|
1916
|
+
};
|
|
1917
|
+
readonly 2: {
|
|
1918
|
+
readonly fieldName: "Endpoint::dstEid";
|
|
1919
|
+
readonly fieldType: "cl::t::uint32";
|
|
1920
|
+
};
|
|
1921
|
+
readonly 3: {
|
|
1922
|
+
readonly fieldName: "Endpoint::msglibs";
|
|
1923
|
+
readonly fieldType: "cl::t::dict256";
|
|
1924
|
+
};
|
|
1925
|
+
readonly 4: {
|
|
1926
|
+
readonly fieldName: "Endpoint::numMsglibs";
|
|
1927
|
+
readonly fieldType: "cl::t::uint8";
|
|
1928
|
+
};
|
|
1929
|
+
readonly 5: {
|
|
1930
|
+
readonly fieldName: "Endpoint::channelCode";
|
|
1931
|
+
readonly fieldType: "cl::t::cellRef";
|
|
1932
|
+
};
|
|
1933
|
+
readonly 6: {
|
|
1934
|
+
readonly fieldName: "Endpoint::channelStorageInit";
|
|
1935
|
+
readonly fieldType: "cl::t::objRef";
|
|
1936
|
+
};
|
|
1937
|
+
readonly 7: {
|
|
1938
|
+
readonly fieldName: "Endpoint::defaultSendLibInfo";
|
|
1939
|
+
readonly fieldType: "cl::t::objRef";
|
|
1940
|
+
};
|
|
1941
|
+
readonly 8: {
|
|
1942
|
+
readonly fieldName: "Endpoint::defaultReceiveLibInfo";
|
|
1943
|
+
readonly fieldType: "cl::t::objRef";
|
|
1944
|
+
};
|
|
1945
|
+
readonly 9: {
|
|
1946
|
+
readonly fieldName: "Endpoint::defaultTimeoutReceiveLibInfo";
|
|
1947
|
+
readonly fieldType: "cl::t::objRef";
|
|
1948
|
+
};
|
|
1949
|
+
readonly 10: {
|
|
1950
|
+
readonly fieldName: "Endpoint::defaultExpiry";
|
|
1951
|
+
readonly fieldType: "cl::t::uint64";
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
readonly SmlConnection: {
|
|
1955
|
+
readonly name: "smlConn";
|
|
1956
|
+
readonly 0: {
|
|
1957
|
+
readonly fieldName: "SmlConnection::baseStorage";
|
|
1958
|
+
readonly fieldType: "cl::t::objRef";
|
|
1959
|
+
};
|
|
1960
|
+
readonly 1: {
|
|
1961
|
+
readonly fieldName: "SmlConnection::path";
|
|
1962
|
+
readonly fieldType: "cl::t::objRef";
|
|
1963
|
+
};
|
|
1964
|
+
readonly 2: {
|
|
1965
|
+
readonly fieldName: "SmlConnection::channelAddress";
|
|
1966
|
+
readonly fieldType: "cl::t::address";
|
|
1967
|
+
};
|
|
1968
|
+
};
|
|
1969
|
+
readonly SmlManager: {
|
|
1970
|
+
readonly name: "smlMgr";
|
|
1971
|
+
readonly 0: {
|
|
1972
|
+
readonly fieldName: "SmlManager::baseStorage";
|
|
1973
|
+
readonly fieldType: "cl::t::objRef";
|
|
1974
|
+
};
|
|
1975
|
+
readonly 1: {
|
|
1976
|
+
readonly fieldName: "SmlManager::eid";
|
|
1977
|
+
readonly fieldType: "cl::t::uint32";
|
|
1978
|
+
};
|
|
1979
|
+
readonly 2: {
|
|
1980
|
+
readonly fieldName: "SmlManager::verison";
|
|
1981
|
+
readonly fieldType: "cl::t::uint8";
|
|
1982
|
+
};
|
|
1983
|
+
readonly 3: {
|
|
1984
|
+
readonly fieldName: "SmlManager::nativeFee";
|
|
1985
|
+
readonly fieldType: "cl::t::coins";
|
|
1986
|
+
};
|
|
1987
|
+
readonly 4: {
|
|
1988
|
+
readonly fieldName: "SmlManager::zroFee";
|
|
1989
|
+
readonly fieldType: "cl::t::coins";
|
|
1990
|
+
};
|
|
1991
|
+
readonly 5: {
|
|
1992
|
+
readonly fieldName: "SmlManager::packets";
|
|
1993
|
+
readonly fieldType: "cl::t::dict256";
|
|
1994
|
+
};
|
|
1995
|
+
readonly 6: {
|
|
1996
|
+
readonly fieldName: "SmlManager::controllerAddress";
|
|
1997
|
+
readonly fieldType: "cl::t::address";
|
|
1998
|
+
};
|
|
1999
|
+
readonly 7: {
|
|
2000
|
+
readonly fieldName: "SmlManager::endpointCode";
|
|
2001
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2002
|
+
};
|
|
2003
|
+
readonly 8: {
|
|
2004
|
+
readonly fieldName: "SmlManager::channelCode";
|
|
2005
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2006
|
+
};
|
|
2007
|
+
readonly 9: {
|
|
2008
|
+
readonly fieldName: "SmlManager::smlConnectionCode";
|
|
2009
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
readonly UlnReceiveConfig: {
|
|
2013
|
+
readonly name: "UlnConf";
|
|
2014
|
+
readonly 0: {
|
|
2015
|
+
readonly fieldName: "UlnReceiveConfig::useDefaultMinCommitPacketGas";
|
|
2016
|
+
readonly fieldType: "cl::t::bool";
|
|
2017
|
+
};
|
|
2018
|
+
readonly 1: {
|
|
2019
|
+
readonly fieldName: "UlnReceiveConfig::minCommitPacketGas";
|
|
2020
|
+
readonly fieldType: "cl::t::uint32";
|
|
2021
|
+
};
|
|
2022
|
+
readonly 2: {
|
|
2023
|
+
readonly fieldName: "UlnReceiveConfig::useDefaultConfirmations";
|
|
2024
|
+
readonly fieldType: "cl::t::bool";
|
|
2025
|
+
};
|
|
2026
|
+
readonly 3: {
|
|
2027
|
+
readonly fieldName: "UlnReceiveConfig::confirmations";
|
|
2028
|
+
readonly fieldType: "cl::t::uint64";
|
|
2029
|
+
};
|
|
2030
|
+
readonly 4: {
|
|
2031
|
+
readonly fieldName: "UlnReceiveConfig::useDefaultRequiredDVNs";
|
|
2032
|
+
readonly fieldType: "cl::t::bool";
|
|
2033
|
+
};
|
|
2034
|
+
readonly 5: {
|
|
2035
|
+
readonly fieldName: "UlnReceiveConfig::requiredDVNs";
|
|
2036
|
+
readonly fieldType: "cl::t::dict256";
|
|
2037
|
+
};
|
|
2038
|
+
readonly 6: {
|
|
2039
|
+
readonly fieldName: "UlnReceiveConfig::useDefaultOptionalDVNs";
|
|
2040
|
+
readonly fieldType: "cl::t::bool";
|
|
2041
|
+
};
|
|
2042
|
+
readonly 7: {
|
|
2043
|
+
readonly fieldName: "UlnReceiveConfig::optionalDVNs";
|
|
2044
|
+
readonly fieldType: "cl::t::dict256";
|
|
2045
|
+
};
|
|
2046
|
+
readonly 8: {
|
|
2047
|
+
readonly fieldName: "UlnReceiveConfig::optionalDVNThreshold";
|
|
2048
|
+
readonly fieldType: "cl::t::uint8";
|
|
2049
|
+
};
|
|
2050
|
+
};
|
|
2051
|
+
readonly 'UlnReceiveConfig::NewWithDefaults': {
|
|
2052
|
+
readonly name: "UlnConf";
|
|
2053
|
+
};
|
|
2054
|
+
readonly 'md::UlnSend': {
|
|
2055
|
+
readonly name: "UlnSend";
|
|
2056
|
+
readonly 0: {
|
|
2057
|
+
readonly fieldName: "md::UlnSend::lzSend";
|
|
2058
|
+
readonly fieldType: "cl::t::objRef";
|
|
2059
|
+
};
|
|
2060
|
+
readonly 1: {
|
|
2061
|
+
readonly fieldName: "md::UlnSend::customUlnSendConfig";
|
|
2062
|
+
readonly fieldType: "cl::t::objRef";
|
|
2063
|
+
};
|
|
2064
|
+
readonly 2: {
|
|
2065
|
+
readonly fieldName: "md::UlnSend::connectionInitialStorage";
|
|
2066
|
+
readonly fieldType: "cl::t::objRef";
|
|
2067
|
+
};
|
|
2068
|
+
readonly 3: {
|
|
2069
|
+
readonly fieldName: "md::UlnSend::forwardingAddress";
|
|
2070
|
+
readonly fieldType: "cl::t::address";
|
|
2071
|
+
};
|
|
2072
|
+
};
|
|
2073
|
+
readonly UlnSendConfig: {
|
|
2074
|
+
readonly name: "UlnConf";
|
|
2075
|
+
readonly 0: {
|
|
2076
|
+
readonly fieldName: "UlnSendConfig::workerQuoteGasLimit";
|
|
2077
|
+
readonly fieldType: "cl::t::uint32";
|
|
2078
|
+
};
|
|
2079
|
+
readonly 1: {
|
|
2080
|
+
readonly fieldName: "UlnSendConfig::maxMessageBytes";
|
|
2081
|
+
readonly fieldType: "cl::t::uint32";
|
|
2082
|
+
};
|
|
2083
|
+
readonly 2: {
|
|
2084
|
+
readonly fieldName: "UlnSendConfig::useDefaultExecutor";
|
|
2085
|
+
readonly fieldType: "cl::t::bool";
|
|
2086
|
+
};
|
|
2087
|
+
readonly 3: {
|
|
2088
|
+
readonly fieldName: "UlnSendConfig::executor";
|
|
2089
|
+
readonly fieldType: "cl::t::address";
|
|
2090
|
+
};
|
|
2091
|
+
readonly 4: {
|
|
2092
|
+
readonly fieldName: "UlnSendConfig::useDefaultRequiredDVNs";
|
|
2093
|
+
readonly fieldType: "cl::t::bool";
|
|
2094
|
+
};
|
|
2095
|
+
readonly 5: {
|
|
2096
|
+
readonly fieldName: "UlnSendConfig::requiredDVNs";
|
|
2097
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2098
|
+
};
|
|
2099
|
+
readonly 6: {
|
|
2100
|
+
readonly fieldName: "UlnSendConfig::useDefaultOptionalDVNs";
|
|
2101
|
+
readonly fieldType: "cl::t::bool";
|
|
2102
|
+
};
|
|
2103
|
+
readonly 7: {
|
|
2104
|
+
readonly fieldName: "UlnSendConfig::optionalDVNs";
|
|
2105
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
2108
|
+
readonly 'UlnSendConfig::NewWithDefaults': {
|
|
2109
|
+
readonly name: "UlnConf";
|
|
2110
|
+
};
|
|
2111
|
+
readonly 'md::UlnWorkerEvents': {
|
|
2112
|
+
readonly name: "UlnWrkEvnt";
|
|
2113
|
+
readonly 0: {
|
|
2114
|
+
readonly fieldName: "md::UlnWorkerEvents::worker0Address";
|
|
2115
|
+
readonly fieldType: "cl::t::address";
|
|
2116
|
+
};
|
|
2117
|
+
readonly 1: {
|
|
2118
|
+
readonly fieldName: "md::UlnWorkerEvents::worker0Events";
|
|
2119
|
+
readonly fieldType: "cl::t::objRef";
|
|
2120
|
+
};
|
|
2121
|
+
readonly 2: {
|
|
2122
|
+
readonly fieldName: "md::UlnWorkerEvents::worker1Address";
|
|
2123
|
+
readonly fieldType: "cl::t::address";
|
|
2124
|
+
};
|
|
2125
|
+
readonly 3: {
|
|
2126
|
+
readonly fieldName: "md::UlnWorkerEvents::worker1Events";
|
|
2127
|
+
readonly fieldType: "cl::t::objRef";
|
|
2128
|
+
};
|
|
2129
|
+
readonly 4: {
|
|
2130
|
+
readonly fieldName: "md::UlnWorkerEvents::worker2Address";
|
|
2131
|
+
readonly fieldType: "cl::t::address";
|
|
2132
|
+
};
|
|
2133
|
+
readonly 5: {
|
|
2134
|
+
readonly fieldName: "md::UlnWorkerEvents::worker2Events";
|
|
2135
|
+
readonly fieldType: "cl::t::objRef";
|
|
2136
|
+
};
|
|
2137
|
+
readonly 6: {
|
|
2138
|
+
readonly fieldName: "md::UlnWorkerEvents::nextWorkerEvents";
|
|
2139
|
+
readonly fieldType: "cl::t::objRef";
|
|
2140
|
+
};
|
|
2141
|
+
};
|
|
2142
|
+
readonly UlnWorkerInfo: {
|
|
2143
|
+
readonly name: "UlnWrkInfo";
|
|
2144
|
+
readonly 0: {
|
|
2145
|
+
readonly fieldName: "UlnWorkerInfo::workerAddress";
|
|
2146
|
+
readonly fieldType: "cl::t::address";
|
|
2147
|
+
};
|
|
2148
|
+
readonly 1: {
|
|
2149
|
+
readonly fieldName: "UlnWorkerInfo::workerBytecode";
|
|
2150
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2151
|
+
};
|
|
2152
|
+
readonly 2: {
|
|
2153
|
+
readonly fieldName: "UlnWorkerInfo::workerStorage";
|
|
2154
|
+
readonly fieldType: "cl::t::objRef";
|
|
2155
|
+
};
|
|
2156
|
+
readonly 3: {
|
|
2157
|
+
readonly fieldName: "UlnWorkerInfo::friendWorkerAddress";
|
|
2158
|
+
readonly fieldType: "cl::t::address";
|
|
2159
|
+
};
|
|
2160
|
+
readonly 4: {
|
|
2161
|
+
readonly fieldName: "UlnWorkerInfo::dstEid";
|
|
2162
|
+
readonly fieldType: "cl::t::uint32";
|
|
2163
|
+
};
|
|
2164
|
+
readonly 5: {
|
|
2165
|
+
readonly fieldName: "UlnWorkerInfo::rentBalance";
|
|
2166
|
+
readonly fieldType: "cl::t::coins";
|
|
2167
|
+
};
|
|
2168
|
+
readonly 6: {
|
|
2169
|
+
readonly fieldName: "UlnWorkerInfo::lastRentTimestamp";
|
|
2170
|
+
readonly fieldType: "cl::t::uint64";
|
|
2171
|
+
};
|
|
2172
|
+
readonly 7: {
|
|
2173
|
+
readonly fieldName: "UlnWorkerInfo::isAdmin";
|
|
2174
|
+
readonly fieldType: "cl::t::bool";
|
|
2175
|
+
};
|
|
2176
|
+
};
|
|
2177
|
+
readonly Uln: {
|
|
2178
|
+
readonly name: "uln";
|
|
2179
|
+
readonly 0: {
|
|
2180
|
+
readonly fieldName: "Uln::baseStorage";
|
|
2181
|
+
readonly fieldType: "cl::t::objRef";
|
|
2182
|
+
};
|
|
2183
|
+
readonly 1: {
|
|
2184
|
+
readonly fieldName: "Uln::eid";
|
|
2185
|
+
readonly fieldType: "cl::t::uint32";
|
|
2186
|
+
};
|
|
2187
|
+
readonly 2: {
|
|
2188
|
+
readonly fieldName: "Uln::dstEid";
|
|
2189
|
+
readonly fieldType: "cl::t::uint32";
|
|
2190
|
+
};
|
|
2191
|
+
readonly 3: {
|
|
2192
|
+
readonly fieldName: "Uln::defaultUlnReceiveConfig";
|
|
2193
|
+
readonly fieldType: "cl::t::objRef";
|
|
2194
|
+
};
|
|
2195
|
+
readonly 4: {
|
|
2196
|
+
readonly fieldName: "Uln::defaultUlnSendConfig";
|
|
2197
|
+
readonly fieldType: "cl::t::objRef";
|
|
2198
|
+
};
|
|
2199
|
+
readonly 5: {
|
|
2200
|
+
readonly fieldName: "Uln::connectionCode";
|
|
2201
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2202
|
+
};
|
|
2203
|
+
readonly 6: {
|
|
2204
|
+
readonly fieldName: "Uln::workerInfos";
|
|
2205
|
+
readonly fieldType: "cl::t::dict256";
|
|
2206
|
+
};
|
|
2207
|
+
readonly 7: {
|
|
2208
|
+
readonly fieldName: "Uln::treasuryFeeBps";
|
|
2209
|
+
readonly fieldType: "cl::t::uint16";
|
|
2210
|
+
};
|
|
2211
|
+
};
|
|
2212
|
+
readonly UlnConnection: {
|
|
2213
|
+
readonly name: "connection";
|
|
2214
|
+
readonly 0: {
|
|
2215
|
+
readonly fieldName: "UlnConnection::baseStorage";
|
|
2216
|
+
readonly fieldType: "cl::t::objRef";
|
|
2217
|
+
};
|
|
2218
|
+
readonly 1: {
|
|
2219
|
+
readonly fieldName: "UlnConnection::path";
|
|
2220
|
+
readonly fieldType: "cl::t::objRef";
|
|
2221
|
+
};
|
|
2222
|
+
readonly 2: {
|
|
2223
|
+
readonly fieldName: "UlnConnection::endpointAddress";
|
|
2224
|
+
readonly fieldType: "cl::t::address";
|
|
2225
|
+
};
|
|
2226
|
+
readonly 3: {
|
|
2227
|
+
readonly fieldName: "UlnConnection::channelAddress";
|
|
2228
|
+
readonly fieldType: "cl::t::address";
|
|
2229
|
+
};
|
|
2230
|
+
readonly 4: {
|
|
2231
|
+
readonly fieldName: "UlnConnection::ulnAddress";
|
|
2232
|
+
readonly fieldType: "cl::t::address";
|
|
2233
|
+
};
|
|
2234
|
+
readonly 5: {
|
|
2235
|
+
readonly fieldName: "UlnConnection::UlnSendConfigOApp";
|
|
2236
|
+
readonly fieldType: "cl::t::objRef";
|
|
2237
|
+
};
|
|
2238
|
+
readonly 6: {
|
|
2239
|
+
readonly fieldName: "UlnConnection::UlnReceiveConfigOApp";
|
|
2240
|
+
readonly fieldType: "cl::t::objRef";
|
|
2241
|
+
};
|
|
2242
|
+
readonly 7: {
|
|
2243
|
+
readonly fieldName: "UlnConnection::hashLookups";
|
|
2244
|
+
readonly fieldType: "cl::t::dict256";
|
|
2245
|
+
};
|
|
2246
|
+
readonly 8: {
|
|
2247
|
+
readonly fieldName: "UlnConnection::noncePOOO";
|
|
2248
|
+
readonly fieldType: "cl::t::objRef";
|
|
2249
|
+
};
|
|
2250
|
+
readonly 9: {
|
|
2251
|
+
readonly fieldName: "UlnConnection::allCustomReceiveConfig";
|
|
2252
|
+
readonly fieldType: "cl::t::bool";
|
|
2253
|
+
};
|
|
2254
|
+
};
|
|
2255
|
+
readonly UlnManager: {
|
|
2256
|
+
readonly name: "ulnMgr";
|
|
2257
|
+
readonly 0: {
|
|
2258
|
+
readonly fieldName: "UlnManager::baseStorage";
|
|
2259
|
+
readonly fieldType: "cl::t::objRef";
|
|
2260
|
+
};
|
|
2261
|
+
readonly 1: {
|
|
2262
|
+
readonly fieldName: "UlnManager::ulnCode";
|
|
2263
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2264
|
+
};
|
|
2265
|
+
readonly 2: {
|
|
2266
|
+
readonly fieldName: "UlnManager::ulnConnectionCode";
|
|
2267
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2268
|
+
};
|
|
2269
|
+
readonly 3: {
|
|
2270
|
+
readonly fieldName: "UlnManager::controllerAddress";
|
|
2271
|
+
readonly fieldType: "cl::t::address";
|
|
2272
|
+
};
|
|
2273
|
+
readonly 4: {
|
|
2274
|
+
readonly fieldName: "UlnManager::eid";
|
|
2275
|
+
readonly fieldType: "cl::t::uint32";
|
|
2276
|
+
};
|
|
2277
|
+
readonly 5: {
|
|
2278
|
+
readonly fieldName: "UlnManager::endpointCode";
|
|
2279
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2280
|
+
};
|
|
2281
|
+
readonly 6: {
|
|
2282
|
+
readonly fieldName: "UlnManager::channelCode";
|
|
2283
|
+
readonly fieldType: "cl::t::cellRef";
|
|
2284
|
+
};
|
|
2285
|
+
readonly 7: {
|
|
2286
|
+
readonly fieldName: "UlnManager::workerInfos";
|
|
2287
|
+
readonly fieldType: "cl::t::dict256";
|
|
2288
|
+
};
|
|
2289
|
+
readonly 8: {
|
|
2290
|
+
readonly fieldName: "UlnManager::adminWorkers";
|
|
2291
|
+
readonly fieldType: "cl::t::dict256";
|
|
2292
|
+
};
|
|
2293
|
+
};
|
|
2294
|
+
readonly WorkerCoreStorage: {
|
|
2295
|
+
readonly name: "wrkCorStor";
|
|
2296
|
+
readonly 0: {
|
|
2297
|
+
readonly fieldName: "WorkerCoreStorage::owner";
|
|
2298
|
+
readonly fieldType: "cl::t::address";
|
|
2299
|
+
};
|
|
2300
|
+
readonly 1: {
|
|
2301
|
+
readonly fieldName: "WorkerCoreStorage::tentativeOwner";
|
|
2302
|
+
readonly fieldType: "cl::t::address";
|
|
2303
|
+
};
|
|
2304
|
+
readonly 2: {
|
|
2305
|
+
readonly fieldName: "WorkerCoreStorage::authenticated";
|
|
2306
|
+
readonly fieldType: "cl::t::bool";
|
|
2307
|
+
};
|
|
2308
|
+
readonly 3: {
|
|
2309
|
+
readonly fieldName: "WorkerCoreStorage::initialized";
|
|
2310
|
+
readonly fieldType: "cl::t::bool";
|
|
2311
|
+
};
|
|
2312
|
+
readonly 4: {
|
|
2313
|
+
readonly fieldName: "WorkerCoreStorage::admins";
|
|
2314
|
+
readonly fieldType: "cl::t::dict256";
|
|
2315
|
+
};
|
|
2316
|
+
readonly 5: {
|
|
2317
|
+
readonly fieldName: "WorkerCoreStorage::controllerAddress";
|
|
2318
|
+
readonly fieldType: "cl::t::address";
|
|
2319
|
+
};
|
|
2320
|
+
};
|
|
2321
|
+
readonly Dvn: {
|
|
2322
|
+
readonly name: "dvn";
|
|
2323
|
+
readonly 0: {
|
|
2324
|
+
readonly fieldName: "Dvn::workerCoreStorage";
|
|
2325
|
+
readonly fieldType: "cl::t::objRef";
|
|
2326
|
+
};
|
|
2327
|
+
readonly 1: {
|
|
2328
|
+
readonly fieldName: "Dvn::quorum";
|
|
2329
|
+
readonly fieldType: "cl::t::uint64";
|
|
2330
|
+
};
|
|
2331
|
+
readonly 2: {
|
|
2332
|
+
readonly fieldName: "Dvn::verifiers";
|
|
2333
|
+
readonly fieldType: "cl::t::dict256";
|
|
2334
|
+
};
|
|
2335
|
+
readonly 3: {
|
|
2336
|
+
readonly fieldName: "Dvn::setQuorumNonce";
|
|
2337
|
+
readonly fieldType: "cl::t::uint64";
|
|
2338
|
+
};
|
|
2339
|
+
readonly 4: {
|
|
2340
|
+
readonly fieldName: "Dvn::setVerifiersNonce";
|
|
2341
|
+
readonly fieldType: "cl::t::uint64";
|
|
2342
|
+
};
|
|
2343
|
+
readonly 5: {
|
|
2344
|
+
readonly fieldName: "Dvn::setAdminsByQuorumNonce";
|
|
2345
|
+
readonly fieldType: "cl::t::uint64";
|
|
2346
|
+
};
|
|
2347
|
+
};
|
|
2348
|
+
readonly Executor: {
|
|
2349
|
+
readonly name: "executor";
|
|
2350
|
+
readonly 0: {
|
|
2351
|
+
readonly fieldName: "Executor::workerCoreStorage";
|
|
2352
|
+
readonly fieldType: "cl::t::objRef";
|
|
2353
|
+
};
|
|
2354
|
+
readonly 1: {
|
|
2355
|
+
readonly fieldName: "Executor::nativeDropTotalCap";
|
|
2356
|
+
readonly fieldType: "cl::t::coins";
|
|
2357
|
+
};
|
|
2358
|
+
};
|
|
2359
|
+
readonly 'md::ExecuteParams': {
|
|
2360
|
+
readonly name: "execParams";
|
|
2361
|
+
readonly 0: {
|
|
2362
|
+
readonly fieldName: "md::ExecuteParams::target";
|
|
2363
|
+
readonly fieldType: "cl::t::address";
|
|
2364
|
+
};
|
|
2365
|
+
readonly 1: {
|
|
2366
|
+
readonly fieldName: "md::ExecuteParams::callData";
|
|
2367
|
+
readonly fieldType: "cl::t::objRef";
|
|
2368
|
+
};
|
|
2369
|
+
readonly 2: {
|
|
2370
|
+
readonly fieldName: "md::ExecuteParams::expiration";
|
|
2371
|
+
readonly fieldType: "cl::t::uint64";
|
|
2372
|
+
};
|
|
2373
|
+
readonly 3: {
|
|
2374
|
+
readonly fieldName: "md::ExecuteParams::opcode";
|
|
2375
|
+
readonly fieldType: "cl::t::uint64";
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
readonly 'md::CallContract': {
|
|
2379
|
+
readonly name: "MdClCtrct";
|
|
2380
|
+
readonly 0: {
|
|
2381
|
+
readonly fieldName: "md::CallContract::md";
|
|
2382
|
+
readonly fieldType: "cl::t::objRef";
|
|
2383
|
+
};
|
|
2384
|
+
readonly 1: {
|
|
2385
|
+
readonly fieldName: "md::CallContract::address";
|
|
2386
|
+
readonly fieldType: "cl::t::address";
|
|
2387
|
+
};
|
|
2388
|
+
readonly 2: {
|
|
2389
|
+
readonly fieldName: "md::CallContract::opcode";
|
|
2390
|
+
readonly fieldType: "cl::t::uint32";
|
|
2391
|
+
};
|
|
2392
|
+
};
|
|
2393
|
+
readonly 'md::MdDict': {
|
|
2394
|
+
readonly name: "MdDict";
|
|
2395
|
+
readonly 0: {
|
|
2396
|
+
readonly fieldName: "md::MdDict::dict";
|
|
2397
|
+
readonly fieldType: "cl::t::dict256";
|
|
2398
|
+
};
|
|
2399
|
+
};
|
|
2400
|
+
readonly 'md::NativeDrop': {
|
|
2401
|
+
readonly name: "NDrpItem";
|
|
2402
|
+
readonly 0: {
|
|
2403
|
+
readonly fieldName: "md::NativeDrop::to";
|
|
2404
|
+
readonly fieldType: "cl::t::address";
|
|
2405
|
+
};
|
|
2406
|
+
readonly 1: {
|
|
2407
|
+
readonly fieldName: "md::NativeDrop::amount";
|
|
2408
|
+
readonly fieldType: "cl::t::coins";
|
|
2409
|
+
};
|
|
2410
|
+
};
|
|
2411
|
+
readonly 'md::SetDict': {
|
|
2412
|
+
readonly name: "setDct";
|
|
2413
|
+
readonly 0: {
|
|
2414
|
+
readonly fieldName: "md::SetDict::nonce";
|
|
2415
|
+
readonly fieldType: "cl::t::uint64";
|
|
2416
|
+
};
|
|
2417
|
+
readonly 1: {
|
|
2418
|
+
readonly fieldName: "md::SetDict::opcode";
|
|
2419
|
+
readonly fieldType: "cl::t::uint64";
|
|
2420
|
+
};
|
|
2421
|
+
readonly 2: {
|
|
2422
|
+
readonly fieldName: "md::SetDict::dict";
|
|
2423
|
+
readonly fieldType: "cl::t::dict256";
|
|
2424
|
+
};
|
|
2425
|
+
};
|
|
2426
|
+
readonly 'md::SetQuorum': {
|
|
2427
|
+
readonly name: "setQrum";
|
|
2428
|
+
readonly 0: {
|
|
2429
|
+
readonly fieldName: "md::SetQuorum::nonce";
|
|
2430
|
+
readonly fieldType: "cl::t::uint64";
|
|
2431
|
+
};
|
|
2432
|
+
readonly 1: {
|
|
2433
|
+
readonly fieldName: "md::SetQuorum::opcode";
|
|
2434
|
+
readonly fieldType: "cl::t::uint64";
|
|
2435
|
+
};
|
|
2436
|
+
readonly 2: {
|
|
2437
|
+
readonly fieldName: "md::SetQuorum::quorum";
|
|
2438
|
+
readonly fieldType: "cl::t::uint64";
|
|
2439
|
+
};
|
|
2440
|
+
};
|
|
2441
|
+
readonly 'md::SignedRequest': {
|
|
2442
|
+
readonly name: "sgndReq";
|
|
2443
|
+
readonly 0: {
|
|
2444
|
+
readonly fieldName: "md::SignedRequest::request";
|
|
2445
|
+
readonly fieldType: "cl::t::objRef";
|
|
2446
|
+
};
|
|
2447
|
+
readonly 1: {
|
|
2448
|
+
readonly fieldName: "md::SignedRequest::signatures";
|
|
2449
|
+
readonly fieldType: "cl::t::dict256";
|
|
2450
|
+
};
|
|
2451
|
+
};
|
|
2452
|
+
readonly 'md::UlnCommitPacket': {
|
|
2453
|
+
readonly name: "CmPrams";
|
|
2454
|
+
readonly 0: {
|
|
2455
|
+
readonly fieldName: "md::UlnCommitPacket::packet";
|
|
2456
|
+
readonly fieldType: "cl::t::objRef";
|
|
2457
|
+
};
|
|
2458
|
+
readonly 1: {
|
|
2459
|
+
readonly fieldName: "md::UlnCommitPacket::endpointAddress";
|
|
2460
|
+
readonly fieldType: "cl::t::address";
|
|
2461
|
+
};
|
|
2462
|
+
readonly 2: {
|
|
2463
|
+
readonly fieldName: "md::UlnCommitPacket::msglibAddress";
|
|
2464
|
+
readonly fieldType: "cl::t::address";
|
|
2465
|
+
};
|
|
2466
|
+
};
|
|
2467
|
+
};
|
|
2468
|
+
|
|
2469
|
+
declare const OPCODES: {
|
|
2470
|
+
readonly OP_SetOwner: 3745877410n;
|
|
2471
|
+
readonly OP_DeployChannel: 1894438739n;
|
|
2472
|
+
readonly OP_DeployConnection: 3709853659n;
|
|
2473
|
+
readonly OP_ForceAbort: 452840351n;
|
|
2474
|
+
readonly OP_Burn: 740167509n;
|
|
2475
|
+
readonly OP_Nilify: 1804534537n;
|
|
2476
|
+
readonly OP_SetPeer: 1576500515n;
|
|
2477
|
+
readonly OP_SetEnforcedOptions: 7710253n;
|
|
2478
|
+
readonly OP_SetLzConfig: 2189430800n;
|
|
2479
|
+
readonly OP_TransferOwnership: 3072442064n;
|
|
2480
|
+
readonly OP_ClaimOwnership: 2792556744n;
|
|
2481
|
+
readonly Counter_OP_INCREMENT: 1146069063n;
|
|
2482
|
+
readonly Counter_OP_FAIL_NEXT_LZ_RECEIVE: 877369036n;
|
|
2483
|
+
readonly op_transfer_notification: 1935855772n;
|
|
2484
|
+
readonly op_transfer: 260734629n;
|
|
2485
|
+
readonly BaseInterface_OP_INITIALIZE: 4133284232n;
|
|
2486
|
+
readonly BaseInterface_OP_EVENT: 3812333683n;
|
|
2487
|
+
readonly op_internal_transfer: 395134233n;
|
|
2488
|
+
readonly op_excesses_copy: 3576854235n;
|
|
2489
|
+
readonly op_burn: 1499400124n;
|
|
2490
|
+
readonly op_burn_notification: 2078119902n;
|
|
2491
|
+
readonly op_mint: 1680571655n;
|
|
2492
|
+
readonly op_new_order: 4145565967n;
|
|
2493
|
+
readonly op_execute: 1963556701n;
|
|
2494
|
+
readonly op_execute_internal: 2737592767n;
|
|
2495
|
+
readonly op_init: 2624846754n;
|
|
2496
|
+
readonly op_approve: 2808226575n;
|
|
2497
|
+
readonly op_approve_accepted: 2187369462n;
|
|
2498
|
+
readonly op_approve_rejected: 2947491902n;
|
|
2499
|
+
readonly Layerzero_OP_CHANNEL_SEND_CALLBACK: 2729835438n;
|
|
2500
|
+
readonly Layerzero_OP_LZ_RECEIVE_PREPARE: 2547990604n;
|
|
2501
|
+
readonly Layerzero_OP_LZ_RECEIVE_EXECUTE: 209421336n;
|
|
2502
|
+
readonly Layerzero_OP_BURN_CALLBACK: 2512618370n;
|
|
2503
|
+
readonly Layerzero_OP_NILIFY_CALLBACK: 2067737187n;
|
|
2504
|
+
readonly Channel_OP_SET_EP_CONFIG_OAPP: 1726097956n;
|
|
2505
|
+
readonly Channel_OP_MSGLIB_SEND_CALLBACK: 1109137957n;
|
|
2506
|
+
readonly Channel_OP_CHANNEL_SEND: 1399843593n;
|
|
2507
|
+
readonly Channel_OP_CHANNEL_COMMIT_PACKET: 1401474440n;
|
|
2508
|
+
readonly Channel_OP_LZ_RECEIVE_PREPARE: 586394633n;
|
|
2509
|
+
readonly Channel_OP_DEPOSIT_ZRO: 617148342n;
|
|
2510
|
+
readonly Channel_OP_NILIFY: 1371314582n;
|
|
2511
|
+
readonly Channel_OP_BURN: 882743973n;
|
|
2512
|
+
readonly Channel_OP_FORCE_ABORT: 1504021698n;
|
|
2513
|
+
readonly Channel_OP_LZ_RECEIVE_LOCK: 3077049286n;
|
|
2514
|
+
readonly Channel_OP_SYNC_MSGLIB_CONNECTION: 2903748817n;
|
|
2515
|
+
readonly Channel_OP_LZ_RECEIVE_EXECUTE_CALLBACK: 3400410529n;
|
|
2516
|
+
readonly Channel_OP_NOTIFY_PACKET_EXECUTED: 2440175356n;
|
|
2517
|
+
readonly Channel_OP_EMIT_LZ_RECEIVE_ALERT: 1963505712n;
|
|
2518
|
+
readonly Controller_OP_DEPLOY_ENDPOINT: 845100267n;
|
|
2519
|
+
readonly Controller_OP_DEPLOY_CHANNEL: 115623346n;
|
|
2520
|
+
readonly Controller_OP_SET_EP_CONFIG_DEFAULTS: 4128322714n;
|
|
2521
|
+
readonly Controller_OP_SET_EP_CONFIG_OAPP: 172926131n;
|
|
2522
|
+
readonly Controller_OP_ADD_MSGLIB: 3874107087n;
|
|
2523
|
+
readonly Controller_OP_DEPOSIT_ZRO: 2294071196n;
|
|
2524
|
+
readonly Controller_OP_SET_ZRO_WALLET: 3875499446n;
|
|
2525
|
+
readonly Controller_OP_TRANSFER_OWNERSHIP: 3232004383n;
|
|
2526
|
+
readonly Controller_OP_CLAIM_OWNERSHIP: 3551207764n;
|
|
2527
|
+
readonly Endpoint_OP_ENDPOINT_SEND: 3712918452n;
|
|
2528
|
+
readonly Endpoint_OP_ENDPOINT_COMMIT_PACKET: 1571517594n;
|
|
2529
|
+
readonly Endpoint_OP_SET_EP_CONFIG_DEFAULTS: 2606379067n;
|
|
2530
|
+
readonly Endpoint_OP_SET_EP_CONFIG_OAPP: 2317840231n;
|
|
2531
|
+
readonly Endpoint_OP_ADD_MSGLIB: 3132988998n;
|
|
2532
|
+
readonly Endpoint_OP_GET_MSGLIB_INFO_CALLBACK: 3876417750n;
|
|
2533
|
+
readonly MsglibManager_OP_GET_MSGLIB_INFO: 3960526418n;
|
|
2534
|
+
readonly MsglibManager_OP_DEPLOY_CONNECTION: 2027065647n;
|
|
2535
|
+
readonly MsglibConnection_OP_MSGLIB_CONNECTION_QUOTE: 1159903224n;
|
|
2536
|
+
readonly MsglibConnection_OP_MSGLIB_CONNECTION_SEND: 1073919888n;
|
|
2537
|
+
readonly MsglibConnection_OP_MSGLIB_CONNECTION_COMMIT_PACKET_CALLBACK: 1578602291n;
|
|
2538
|
+
readonly MsglibConnection_OP_MSGLIB_CONNECTION_SYNC_CHANNEL_STATE: 2258172214n;
|
|
2539
|
+
readonly SmlConnection_OP_SML_CONNECTION_COMMIT_PACKET: 3361396149n;
|
|
2540
|
+
readonly SmlManager_OP_SET_MSGLIB_CONFIG: 1124227351n;
|
|
2541
|
+
readonly SmlManager_OP_SML_MANAGER_COMMIT_PACKET_CALLBACK: 1185790402n;
|
|
2542
|
+
readonly SmlManager_OP_SML_MANAGER_COMMIT_PACKET: 3047542339n;
|
|
2543
|
+
readonly SmlManager_OP_DEPLOY_CONNECTION: 2027065647n;
|
|
2544
|
+
readonly SmlManager_OP_SML_MANAGER_SEND: 1814685393n;
|
|
2545
|
+
readonly Uln_OP_SET_DEFAULT_ULN_CONFIG: 4197393501n;
|
|
2546
|
+
readonly Uln_OP_SET_OAPP_ULN_CONFIG: 1221496427n;
|
|
2547
|
+
readonly Uln_OP_UPDATE_ULN_WORKER: 1176833684n;
|
|
2548
|
+
readonly Uln_OP_DEREGISTER_WORKER: 1529911255n;
|
|
2549
|
+
readonly Uln_OP_COLLECT_WORKER_RENT: 1576272773n;
|
|
2550
|
+
readonly Uln_OP_ULN_WORKER_SET_STORAGE: 781973186n;
|
|
2551
|
+
readonly Uln_OP_ULN_COMMIT_VERIFICATION: 135634014n;
|
|
2552
|
+
readonly Uln_OP_ULN_VERIFY: 2571808590n;
|
|
2553
|
+
readonly Uln_OP_ULN_QUOTE: 3694527094n;
|
|
2554
|
+
readonly Uln_OP_ULN_SEND: 1575388051n;
|
|
2555
|
+
readonly UlnConnection_OP_ULN_CONNECTION_VERIFY: 1321793546n;
|
|
2556
|
+
readonly UlnConnection_OP_ULN_CONNECTION_COMMIT_PACKET: 4191386496n;
|
|
2557
|
+
readonly UlnConnection_OP_SET_OAPP_ULN_RECEIVE_CONFIG: 1704710509n;
|
|
2558
|
+
readonly UlnConnection_OP_SET_OAPP_ULN_SEND_CONFIG: 3959015374n;
|
|
2559
|
+
readonly UlnManager_OP_DEPLOY_ULN: 1733510307n;
|
|
2560
|
+
readonly UlnManager_OP_DEPLOY_CONNECTION: 1019891641n;
|
|
2561
|
+
readonly UlnManager_OP_SET_DEFAULT_ULN_CONFIG: 2804216360n;
|
|
2562
|
+
readonly UlnManager_OP_SET_OAPP_ULN_CONFIG: 845029339n;
|
|
2563
|
+
readonly UlnManager_OP_CLAIM_TREASURY_FEES: 1143535035n;
|
|
2564
|
+
readonly UlnManager_OP_REGISTER_ULN_WORKER_INFO: 712966233n;
|
|
2565
|
+
readonly UlnManager_OP_ADD_ULN_WORKER: 2837313722n;
|
|
2566
|
+
readonly UlnManager_OP_SET_ADMIN_WORKER: 445697340n;
|
|
2567
|
+
readonly UlnManager_OP_GET_MSGLIB_INFO: 1939134467n;
|
|
2568
|
+
readonly Worker_OP_CLAIM_TON: 561383380n;
|
|
2569
|
+
readonly Worker_OP_TRANSFER_OWNERSHIP: 4207273743n;
|
|
2570
|
+
readonly Worker_OP_CLAIM_OWNERSHIP: 4207273743n;
|
|
2571
|
+
readonly Worker_OP_CALL_CONTRACT: 2178604288n;
|
|
2572
|
+
readonly Worker_OP_SET_ADMINS_BY_ADMIN: 3114368649n;
|
|
2573
|
+
readonly Dvn_OP_SET_VERIFIERS: 594287520n;
|
|
2574
|
+
readonly Dvn_OP_SET_QUORUM: 2581239666n;
|
|
2575
|
+
readonly Dvn_OP_VERIFY: 2698320525n;
|
|
2576
|
+
readonly Dvn_OP_SET_ADMINS_BY_QUORUM: 152793178n;
|
|
2577
|
+
readonly Executor_OP_LZ_RECEIVE_PREPARE: 333322037n;
|
|
2578
|
+
readonly Executor_OP_COMMIT_PACKET: 1097876869n;
|
|
2579
|
+
readonly Executor_OP_NATIVE_DROP: 74966741n;
|
|
2580
|
+
readonly Executor_OP_NATIVE_DROP_AND_LZ_RECEIVE_PREPARE: 1812316278n;
|
|
2581
|
+
readonly Executor_OP_LZ_RECEIVE_ALERT: 3844476787n;
|
|
2582
|
+
};
|
|
2583
|
+
|
|
2584
|
+
declare const EVENTS: {
|
|
2585
|
+
readonly action_event_NAME: {
|
|
2586
|
+
readonly stringValue: "event";
|
|
2587
|
+
readonly intValue: 435778055796n;
|
|
2588
|
+
};
|
|
2589
|
+
readonly BaseInterface_event_AUTHENTICATED: {
|
|
2590
|
+
readonly stringValue: "AUTHENTICATED";
|
|
2591
|
+
readonly intValue: 5176238680319700227759262680388n;
|
|
2592
|
+
};
|
|
2593
|
+
readonly BaseInterface_event_INITIALIZED: {
|
|
2594
|
+
readonly stringValue: "INITIALIZED";
|
|
2595
|
+
readonly intValue: 88621282103306511267284292n;
|
|
2596
|
+
};
|
|
2597
|
+
readonly Channel_event_EP_CFG_OAPP_SET: {
|
|
2598
|
+
readonly stringValue: "Channel::event::EP_CFG_OAPP_SET";
|
|
2599
|
+
readonly intValue: 119099161704811121292864632451295737476869657197032916828228640468653786452n;
|
|
2600
|
+
};
|
|
2601
|
+
readonly Channel_event_PACKET_SENT: {
|
|
2602
|
+
readonly stringValue: "Channel::event::PACKET_SENT";
|
|
2603
|
+
readonly intValue: 27729934478367474231138972670607207686856031885933812545027919444n;
|
|
2604
|
+
};
|
|
2605
|
+
readonly Channel_event_PACKET_COMMITTED: {
|
|
2606
|
+
readonly stringValue: "Channel::event::PACKET_COMMITTED";
|
|
2607
|
+
readonly intValue: 30489385396431647050973345907531708794093175298667245388886869385143456646468n;
|
|
2608
|
+
};
|
|
2609
|
+
readonly Channel_event_PACKET_NILIFIED: {
|
|
2610
|
+
readonly stringValue: "Channel::event::PACKET_NILIFIED";
|
|
2611
|
+
readonly intValue: 119099161704811121292864632451295737476926466010418927301130277103531017540n;
|
|
2612
|
+
};
|
|
2613
|
+
readonly Channel_event_PACKET_BURNED: {
|
|
2614
|
+
readonly stringValue: "Channel::event::PACKET_BURNED";
|
|
2615
|
+
readonly intValue: 1817308985974290791211923712940913962965796905676558338932326817219908n;
|
|
2616
|
+
};
|
|
2617
|
+
readonly Channel_event_DELIVERED: {
|
|
2618
|
+
readonly stringValue: "Channel::event::DELIVERED";
|
|
2619
|
+
readonly intValue: 423125220922355258653853953103747675885643674185878272623940n;
|
|
2620
|
+
};
|
|
2621
|
+
readonly Channel_event_LZ_RECEIVE_ALERT: {
|
|
2622
|
+
readonly stringValue: "Channel::event::LZ_RECEIVE_ALERT";
|
|
2623
|
+
readonly intValue: 30489385396431647050973345907531708794087988762567614461523310285239087354452n;
|
|
2624
|
+
};
|
|
2625
|
+
readonly Channel_event_NOT_EXECUTABLE: {
|
|
2626
|
+
readonly stringValue: "Channel::event::NOT_EXECUTABLE";
|
|
2627
|
+
readonly intValue: 465231100409418442550252470512873974519204557513690586395473165336857669n;
|
|
2628
|
+
};
|
|
2629
|
+
readonly Channel_event_ZRO_DEPOSITED: {
|
|
2630
|
+
readonly stringValue: "Channel::event::ZRO_DEPOSITED";
|
|
2631
|
+
readonly intValue: 1817308985974290791211923712940913962966594463148405578391549560243524n;
|
|
2632
|
+
};
|
|
2633
|
+
readonly Controller_event_ZRO_WALLET_SET: {
|
|
2634
|
+
readonly stringValue: "Controller::event::ZRO_WALLT_SET";
|
|
2635
|
+
readonly intValue: 30501843210772647264491702514277939782107266009916322688686551688758036743508n;
|
|
2636
|
+
};
|
|
2637
|
+
readonly Controller_event_OWNER_SET: {
|
|
2638
|
+
readonly stringValue: "Controller::event::OWNER_SET";
|
|
2639
|
+
readonly intValue: 7101763787393608890588326033735168115726501217355569590414253180244n;
|
|
2640
|
+
};
|
|
2641
|
+
readonly Controller_event_OWNER_SET_TENTATIVE: {
|
|
2642
|
+
readonly stringValue: "Controller::event::OWNERSET_TENT";
|
|
2643
|
+
readonly intValue: 30501843210772647264491702514277939782107266009046358994280463886175177100884n;
|
|
2644
|
+
};
|
|
2645
|
+
readonly Endpoint_event_EP_CONFIG_DEFAULTS_SET: {
|
|
2646
|
+
readonly stringValue: "EP_CONFIG_DEFAULTS_SET";
|
|
2647
|
+
readonly intValue: 25933428907981203986586603491692636361258825927574868n;
|
|
2648
|
+
};
|
|
2649
|
+
readonly SmlManager_event_SET_MSGLIB_CONFIG: {
|
|
2650
|
+
readonly stringValue: "SET_MSGLIB_CONFIG";
|
|
2651
|
+
readonly intValue: 28335591272038422898517907845566096099655n;
|
|
2652
|
+
};
|
|
2653
|
+
readonly Uln_EVENT_ULN_WORKER_REGISTERED: {
|
|
2654
|
+
readonly stringValue: "Uln::EVENT::ULN_WRKR_REGISTRD";
|
|
2655
|
+
readonly intValue: 2303014539151513497721185155501932080212115464873841017993951045767748n;
|
|
2656
|
+
};
|
|
2657
|
+
readonly Uln_EVENT_ULN_WORKER_DEREGISTERED: {
|
|
2658
|
+
readonly stringValue: "Uln::EVENT::ULN_WRKR_DEREGISTRD";
|
|
2659
|
+
readonly intValue: 150930360837833588586655590350974620808781199105971978842912309953546179140n;
|
|
2660
|
+
};
|
|
2661
|
+
readonly Uln_EVENT_ULN_WORKER_EVICTED: {
|
|
2662
|
+
readonly stringValue: "Uln::EVENT::ULN_WORKER_EVICTED";
|
|
2663
|
+
readonly intValue: 589571722022787455416623399808494612534301323481025566169945898608772420n;
|
|
2664
|
+
};
|
|
2665
|
+
readonly Uln_EVENT_ULN_COLLECT_WORKER_RENT: {
|
|
2666
|
+
readonly stringValue: "Uln::EVENT::ULN_COLLECT_WRKR_RNT";
|
|
2667
|
+
readonly intValue: 38638172374485398678183831129849502927021386854121545542306104478498437615188n;
|
|
2668
|
+
};
|
|
2669
|
+
readonly Uln_EVENT_ULN_DEFAULT_SEND_CONFIG_SET: {
|
|
2670
|
+
readonly stringValue: "Uln::EVENT::ULN_DFLT_SND_CFG_SET";
|
|
2671
|
+
readonly intValue: 38638172374485398678183831129849502927022669352087494869081246263568567059796n;
|
|
2672
|
+
};
|
|
2673
|
+
readonly Uln_EVENT_ULN_DEFAULT_RECEIVE_CONFIG_SET: {
|
|
2674
|
+
readonly stringValue: "Uln::EVENT::ULN_DFLT_REC_CFG_SET";
|
|
2675
|
+
readonly intValue: 38638172374485398678183831129849502927022669352087493617635681559038875878740n;
|
|
2676
|
+
};
|
|
2677
|
+
readonly UlnConnection_EVENT_ULN_SEND_CONFIG_SET: {
|
|
2678
|
+
readonly stringValue: "UlnConn::EVENT::ULN_SEND_CFG_SET";
|
|
2679
|
+
readonly intValue: 38638172622723375059658780869721329125276574716422736669787144120654206551380n;
|
|
2680
|
+
};
|
|
2681
|
+
readonly UlnConnection_EVENT_ULN_RECEIVE_CONFIG_SET: {
|
|
2682
|
+
readonly stringValue: "UlnConn::EVENT::ULN_REC_CFG_SET";
|
|
2683
|
+
readonly intValue: 150930361807513183826792112772348941895611619986025105989559909324233590100n;
|
|
2684
|
+
};
|
|
2685
|
+
readonly UlnManager_EVENT_ADMIN_WORKER_SET: {
|
|
2686
|
+
readonly stringValue: "UlnMgr::EVENT::ADMIN_WORKER_SET";
|
|
2687
|
+
readonly intValue: 150930362857351192741668289866377313307180237067140065605040235563896227156n;
|
|
2688
|
+
};
|
|
2689
|
+
readonly WorkerCore_event_TENTATIVE_OWNER_SET: {
|
|
2690
|
+
readonly stringValue: "WrkrCore::event::TNTIVE_OWNR_SET";
|
|
2691
|
+
readonly intValue: 39553379959523708367160954857806217653195124620314693866040477314562122794324n;
|
|
2692
|
+
};
|
|
2693
|
+
readonly WorkerCore_event_OWNER_SET: {
|
|
2694
|
+
readonly stringValue: "WorkerCore::event::OWNER_SET";
|
|
2695
|
+
readonly intValue: 9208015991704526976978715809526055630755383056152662791358875125076n;
|
|
2696
|
+
};
|
|
2697
|
+
readonly WorkerCore_event_ADMINS_SET: {
|
|
2698
|
+
readonly stringValue: "WorkerCore::event::ADMINS_SET";
|
|
2699
|
+
readonly intValue: 2357252093876358906106551247238670241473378062308617984754153002583380n;
|
|
2700
|
+
};
|
|
2701
|
+
readonly Dvn_event_INVALID_SIGNATURE: {
|
|
2702
|
+
readonly stringValue: "Dvn::event::INVALID_SIGNATURE";
|
|
2703
|
+
readonly intValue: 1845748568727425907806402299282562526609276329313036843994008809460293n;
|
|
2704
|
+
};
|
|
2705
|
+
readonly Dvn_event_SET_VERIFIERS: {
|
|
2706
|
+
readonly stringValue: "Dvn::event::SET_VERIFIERS";
|
|
2707
|
+
readonly intValue: 429746827280015197537467419003591262141986117058117471916627n;
|
|
2708
|
+
};
|
|
2709
|
+
readonly Dvn_event_SET_QUORUM: {
|
|
2710
|
+
readonly stringValue: "Dvn::event::SET_QUORUM";
|
|
2711
|
+
readonly intValue: 25614906983376455160228456199383214839809837068604749n;
|
|
2712
|
+
};
|
|
2713
|
+
readonly Dvn_event_SET_ADMINS_BY_QUORUM: {
|
|
2714
|
+
readonly stringValue: "Dvn::event::SET_ADMINS_BY_QUORUM";
|
|
2715
|
+
readonly intValue: 30966522419230869579264097558017085579400280055672873861750144103661981291853n;
|
|
2716
|
+
};
|
|
2717
|
+
readonly Dvn_event_VERIFY: {
|
|
2718
|
+
readonly stringValue: "Dvn::event::VERIFY";
|
|
2719
|
+
readonly intValue: 5963935280073540089705133857065202153506393n;
|
|
2720
|
+
};
|
|
2721
|
+
readonly Executor_event_LZ_RECEIVE_ALERT: {
|
|
2722
|
+
readonly stringValue: "Executor::event::LZ_RCV_ALERT";
|
|
2723
|
+
readonly intValue: 1872915503847835639517843655130358044835956776372090239617289700069972n;
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2726
|
+
|
|
2727
|
+
declare const ERRORS: {
|
|
2728
|
+
readonly ERROR_PeerNotSet: 731n;
|
|
2729
|
+
readonly ERROR_WrongPeer: 1644n;
|
|
2730
|
+
readonly ERROR_WrongSrcEid: 1834n;
|
|
2731
|
+
readonly ERROR_WrongSrcOApp: 642n;
|
|
2732
|
+
readonly ERROR_WrongChannel: 1080n;
|
|
2733
|
+
readonly ERROR_WrongChannelOwner: 1240n;
|
|
2734
|
+
readonly ERROR_InsufficientGas: 415n;
|
|
2735
|
+
readonly ERROR_InvalidExtraOptions: 223n;
|
|
2736
|
+
readonly ERROR_InvalidEnforcedOptions: 759n;
|
|
2737
|
+
readonly ERROR_InvalidExtraOptionsVersion: 1697n;
|
|
2738
|
+
readonly ERROR_NullTentativeOwner: 1505n;
|
|
2739
|
+
readonly ERROR_OnlyTentativeOwner: 327n;
|
|
2740
|
+
readonly ERROR_OnlyOwner: 248n;
|
|
2741
|
+
readonly ERROR_NotAuthenticated: 1563n;
|
|
2742
|
+
readonly ERROR_NotInitialized: 432n;
|
|
2743
|
+
readonly Counter_ERROR_invalidIncrementType: 1955n;
|
|
2744
|
+
readonly lz_EpConfig_ERROR_sameMsglib: 198n;
|
|
2745
|
+
readonly lz_EpConfig_ERROR_invalidTimeoutExpiry: 1274n;
|
|
2746
|
+
readonly lz_EpConfig_ERROR_invalidTimeoutReceiveMsglib: 441n;
|
|
2747
|
+
readonly lz_Packet_ERROR_INVALID_MESSAGE: 1379n;
|
|
2748
|
+
readonly lz_Packet_ERROR_INVALID_NONCE: 1636n;
|
|
2749
|
+
readonly lz_Packet_ERROR_INVALID_PACKET_FIELD: 1706n;
|
|
2750
|
+
readonly BaseInterface_ERROR_notAuthenticated: 1809n;
|
|
2751
|
+
readonly BaseInterface_ERROR_onlyOwner: 40n;
|
|
2752
|
+
readonly BaseInterface_ERROR_notInitialized: 598n;
|
|
2753
|
+
readonly BaseInterface_ERROR_alreadyInitialized: 1274n;
|
|
2754
|
+
readonly BaseInterface_ERROR_invalidOpcode: 1320n;
|
|
2755
|
+
readonly BaseInterface_ERROR_eventEmitted: 1002n;
|
|
2756
|
+
readonly BaseInterface_ERROR_invalidActionType: 1454n;
|
|
2757
|
+
readonly BaseInterface_ERROR_invalidEventSource: 153n;
|
|
2758
|
+
readonly cl_ERROR_INVALID_CLASS: 1601n;
|
|
2759
|
+
readonly CLASSLIB_ERROR_INVALID_FIELD_TYPE: 509n;
|
|
2760
|
+
readonly CLASSLIB_ERROR_WRONG_ORDER_CONSTRUCTOR: 1027n;
|
|
2761
|
+
readonly DeterministicInsertionCircularQueue_ERROR_invalidObject: 420n;
|
|
2762
|
+
readonly POOO_ERROR_negativeIndex: 1313n;
|
|
2763
|
+
readonly error_unauthorized_new_order: 1007n;
|
|
2764
|
+
readonly error_invalid_new_order: 1008n;
|
|
2765
|
+
readonly error_not_enough_ton: 100n;
|
|
2766
|
+
readonly error_unauthorized_execute: 101n;
|
|
2767
|
+
readonly error_singers_outdated: 102n;
|
|
2768
|
+
readonly error_invalid_dictionary_sequence: 103n;
|
|
2769
|
+
readonly error_unauthorized_init: 104n;
|
|
2770
|
+
readonly error_already_inited: 105n;
|
|
2771
|
+
readonly error_unauthorized_sign: 106n;
|
|
2772
|
+
readonly error_already_approved: 107n;
|
|
2773
|
+
readonly error_inconsistent_data: 108n;
|
|
2774
|
+
readonly error_invalid_threshold: 109n;
|
|
2775
|
+
readonly error_invalid_signers: 110n;
|
|
2776
|
+
readonly error_expired: 111n;
|
|
2777
|
+
readonly error_already_executed: 112n;
|
|
2778
|
+
readonly error_unknown_op: 2047n;
|
|
2779
|
+
readonly Channel_ERROR_onlyEndpoint: 1328n;
|
|
2780
|
+
readonly Channel_ERROR_onlyOApp: 1931n;
|
|
2781
|
+
readonly Channel_ERROR_onlyApprovedSendMsglib: 1025n;
|
|
2782
|
+
readonly Channel_ERROR_onlyApprovedReceiveMsglib: 1278n;
|
|
2783
|
+
readonly Channel_ERROR_invalidNonce: 1144n;
|
|
2784
|
+
readonly Channel_ERROR_cannotAbortSend: 1211n;
|
|
2785
|
+
readonly Channel_ERROR_sendAborted: 268n;
|
|
2786
|
+
readonly Channel_ERROR_notEnoughNative: 1769n;
|
|
2787
|
+
readonly Channel_ERROR_notEnoughZroToken: 5n;
|
|
2788
|
+
readonly Channel_ERROR_sendQueueCongested: 313n;
|
|
2789
|
+
readonly Channel_ERROR_notEnoughZroTokenBalance: 1483n;
|
|
2790
|
+
readonly Channel_ERROR_notCommittable: 462n;
|
|
2791
|
+
readonly Channel_ERROR_notExecutable: 1482n;
|
|
2792
|
+
readonly Channel_ERROR_notExecuting: 1037n;
|
|
2793
|
+
readonly Channel_ERROR_wrongPath: 1780n;
|
|
2794
|
+
readonly Controller_ERROR_onlyOApp: 1442n;
|
|
2795
|
+
readonly Controller_ERROR_invalidEid: 1501n;
|
|
2796
|
+
readonly Controller_ERROR_onlyZroWallet: 1125n;
|
|
2797
|
+
readonly Controller_ERROR_onlyTentativeOwner: 463n;
|
|
2798
|
+
readonly Controller_ERROR_nullTentativeOwner: 1385n;
|
|
2799
|
+
readonly Endpoint_ERROR_notOApp: 593n;
|
|
2800
|
+
readonly Endpoint_ERROR_wrongPath: 1417n;
|
|
2801
|
+
readonly Endpoint_ERROR_unauthorizedMsglib: 1430n;
|
|
2802
|
+
readonly Endpoint_ERROR_invalidExpiry: 826n;
|
|
2803
|
+
readonly Endpoint_ERROR_unresolvedMsglib: 1818n;
|
|
2804
|
+
readonly Endpoint_ERROR_msglibInfoExists: 1484n;
|
|
2805
|
+
readonly Endpoint_ERROR_numMsglibsExceeded: 648n;
|
|
2806
|
+
readonly Endpoint_ERROR_sameTimeoutAndReceive: 504n;
|
|
2807
|
+
readonly BytesDecoder_ERROR_invalidOptionSize: 1082n;
|
|
2808
|
+
readonly BytesDecoder_ERROR_malformedOptions: 1034n;
|
|
2809
|
+
readonly BytesDecoder_ERROR_malformedArray: 1603n;
|
|
2810
|
+
readonly BytesEncoder_ERROR_malformed_subtree: 1144n;
|
|
2811
|
+
readonly BytesEncoder_ERROR_malformed_data: 368n;
|
|
2812
|
+
readonly Msglib_ERROR_ONLY_CHANNEL: 657n;
|
|
2813
|
+
readonly SmlManager_ERROR_packetHeaderNotFound: 979n;
|
|
2814
|
+
readonly SmlManager_ERROR_optionsNotEmpty: 631n;
|
|
2815
|
+
readonly SmlManager_ERROR_onlyConnection: 528n;
|
|
2816
|
+
readonly UlnReceiveConfig_ERROR_DVN_CONFIG_ERROR: 168n;
|
|
2817
|
+
readonly UlnReceiveConfig_ERROR_OPTIONAL_THRESHOLD_TOO_LARGE: 998n;
|
|
2818
|
+
readonly UlnReceiveConfig_ERROR_OPTIONAL_THRESHOLD_TOO_LOW: 1999n;
|
|
2819
|
+
readonly UlnReceiveConfig_ERROR_DVN_COUNTS_ALL_NIL: 1822n;
|
|
2820
|
+
readonly UlnReceiveConfig_ERROR_INVALID_MIN_COMMIT_PACKET_GAS: 1616n;
|
|
2821
|
+
readonly UlnSendConfig_ERROR_DVN_CONFIG_ERROR: 168n;
|
|
2822
|
+
readonly Uln_ERROR_INSUFFICIENT_RENT: 1032n;
|
|
2823
|
+
readonly Uln_ERROR_NONEXISTENT_WORKER: 853n;
|
|
2824
|
+
readonly Uln_ERROR_INVALID_TIMESTAMP: 890n;
|
|
2825
|
+
readonly Uln_ERROR_INVALID_WORKER_STORAGE: 1936n;
|
|
2826
|
+
readonly UlnConnection_ERROR_ONLY_ULN: 689n;
|
|
2827
|
+
readonly UlnConnection_ERROR_INVALID_ULN_SEND_CONFIG: 1941n;
|
|
2828
|
+
readonly UlnManager_ERROR_INSUFFUCIENT_BALANCE: 696n;
|
|
2829
|
+
readonly UlnManager_ERROR_INVALID_EID: 1724n;
|
|
2830
|
+
readonly UlnManager_ERROR_INVALID_WORKER_INFO: 522n;
|
|
2831
|
+
readonly UlnManager_ERROR_WORKER_IS_NOT_ADMIN: 709n;
|
|
2832
|
+
readonly WorkerCore_ERROR_notAuthenticated: 364n;
|
|
2833
|
+
readonly WorkerCore_ERROR_notInitialized: 1699n;
|
|
2834
|
+
readonly WorkerCore_ERROR_onlyOwner: 238n;
|
|
2835
|
+
readonly WorkerCore_ERROR_onlyAdmin: 1819n;
|
|
2836
|
+
readonly WorkerCore_ERROR_invalidOpcode: 104n;
|
|
2837
|
+
readonly Dvn_ERROR_expired: 860n;
|
|
2838
|
+
readonly Dvn_ERROR_quorumNotMet: 189n;
|
|
2839
|
+
readonly Dvn_ERROR_notEnoughSignatures: 943n;
|
|
2840
|
+
readonly Dvn_ERROR_invalidsetQuorumNonce: 2026n;
|
|
2841
|
+
readonly Dvn_ERROR_invalidQuorum: 289n;
|
|
2842
|
+
readonly Dvn_ERROR_invalidsetAdminsByQuorumNonce: 1629n;
|
|
2843
|
+
readonly Dvn_ERROR_invalidsetVerifiersNonce: 703n;
|
|
2844
|
+
readonly Dvn_ERROR_invalidSignedOpcode: 369n;
|
|
2845
|
+
readonly Executor_ERROR_nativeDropTotalCapExceeded: 1908n;
|
|
2846
|
+
};
|
|
2847
|
+
|
|
2848
|
+
declare class appsCounter {
|
|
2849
|
+
static getGetBaseOAppStorage(contract: ExtendedContract<TonContractWrapper>): Promise<[Cell]>;
|
|
2850
|
+
static getLzReceiveGas(contract: ExtendedContract<TonContractWrapper>, packet: Cell): Promise<[bigint]>;
|
|
2851
|
+
static get_lzReceiveGas(contract: ExtendedContract<TonContractWrapper>, packet: Cell): Promise<[bigint]>;
|
|
2852
|
+
static get_lzReceivePrepare(contract: ExtendedContract<TonContractWrapper>, storage: Cell, actions: Tuple, packet: Cell): Promise<[Tuple]>;
|
|
2853
|
+
static getFailNextLzReceive(contract: ExtendedContract<TonContractWrapper>): Promise<[Tuple]>;
|
|
2854
|
+
}
|
|
2855
|
+
declare class jettonsZro {
|
|
2856
|
+
static getGetJettonData(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint, bigint, Address, Cell, Cell]>;
|
|
2857
|
+
static getGetWalletAddress(contract: ExtendedContract<TonContractWrapper>, owner_address: Address): Promise<[Address]>;
|
|
2858
|
+
static getGetWalletData(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint, Address, Address, Cell]>;
|
|
2859
|
+
}
|
|
2860
|
+
declare class srcMultisig {
|
|
2861
|
+
static getGetMultisigData(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint, bigint, Cell, Cell]>;
|
|
2862
|
+
static getGetOrderEstimate(contract: ExtendedContract<TonContractWrapper>, order: Cell, expiration_date: bigint): Promise<[bigint]>;
|
|
2863
|
+
static getGetOrderAddress(contract: ExtendedContract<TonContractWrapper>, order_seqno: bigint): Promise<[Address]>;
|
|
2864
|
+
static getGetOrderData(contract: ExtendedContract<TonContractWrapper>): Promise<[unknown]>;
|
|
2865
|
+
}
|
|
2866
|
+
declare class protocolChannel {
|
|
2867
|
+
static get_buildSendRequestQueueEntry(contract: ExtendedContract<TonContractWrapper>, lzSend: Cell): Promise<[Cell]>;
|
|
2868
|
+
static get_readSendRequestQueueEntry(contract: ExtendedContract<TonContractWrapper>, contents: Cell): Promise<[bigint]>;
|
|
2869
|
+
static get_nonceCommittable(contract: ExtendedContract<TonContractWrapper>, incomingNonce: bigint): Promise<[bigint, Cell]>;
|
|
2870
|
+
static get_getExecutablePacket(contract: ExtendedContract<TonContractWrapper>, incomingNonce: bigint): Promise<[Cell]>;
|
|
2871
|
+
static get_viewInboundNonce(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
2872
|
+
static get_viewExecutionStatus(contract: ExtendedContract<TonContractWrapper>, incomingNonce: bigint): Promise<[bigint]>;
|
|
2873
|
+
static getSetEpConfigOApp(contract: ExtendedContract<TonContractWrapper>, epConfigOApp: Cell): Promise<[Tuple]>;
|
|
2874
|
+
static getChannelSend(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2875
|
+
static getMsglibSendCallback(contract: ExtendedContract<TonContractWrapper>, mdAddress: Cell): Promise<[Tuple]>;
|
|
2876
|
+
static getChannelCommitPacket(contract: ExtendedContract<TonContractWrapper>, mdExtended: Cell): Promise<[Tuple]>;
|
|
2877
|
+
static getLzReceivePrepare(contract: ExtendedContract<TonContractWrapper>, nonceMd: Cell): Promise<[Tuple]>;
|
|
2878
|
+
static getLzReceiveLock(contract: ExtendedContract<TonContractWrapper>, nonceMd: Cell): Promise<[Tuple]>;
|
|
2879
|
+
static getLzReceiveExecuteCallback(contract: ExtendedContract<TonContractWrapper>, lzReceiveStatus: Cell): Promise<[Tuple]>;
|
|
2880
|
+
static getNilify(contract: ExtendedContract<TonContractWrapper>, packetId: Cell): Promise<[Tuple]>;
|
|
2881
|
+
static getBurn(contract: ExtendedContract<TonContractWrapper>, packetId: Cell): Promise<[Tuple]>;
|
|
2882
|
+
static getDepositZro(contract: ExtendedContract<TonContractWrapper>, coinsAmount: Cell): Promise<[Tuple]>;
|
|
2883
|
+
static getForceAbort(contract: ExtendedContract<TonContractWrapper>, lzSend: Cell): Promise<[Tuple]>;
|
|
2884
|
+
static getSyncMsglibConnection(contract: ExtendedContract<TonContractWrapper>, mdAddress: Cell): Promise<[Tuple]>;
|
|
2885
|
+
static getNotifyPacketExecuted(contract: ExtendedContract<TonContractWrapper>, mdAddress: Cell): Promise<[Tuple]>;
|
|
2886
|
+
static getEmitLzReceiveAlert(contract: ExtendedContract<TonContractWrapper>, lzReceiveStatus: Cell): Promise<[Tuple]>;
|
|
2887
|
+
}
|
|
2888
|
+
declare class protocolController {
|
|
2889
|
+
static get_getZroWalletAddress(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
2890
|
+
static get_calculateEndpointAddress(contract: ExtendedContract<TonContractWrapper>, dstEid: bigint): Promise<[bigint]>;
|
|
2891
|
+
static get_verifyEventSender(contract: ExtendedContract<TonContractWrapper>, sender: bigint, senderStorageInit: Cell): Promise<[bigint]>;
|
|
2892
|
+
static getDeployEndpoint(contract: ExtendedContract<TonContractWrapper>, deploy: Cell): Promise<[Tuple]>;
|
|
2893
|
+
static getDeployChannel(contract: ExtendedContract<TonContractWrapper>, deploy: Cell): Promise<[Tuple]>;
|
|
2894
|
+
static getSetEpConfigDefaults(contract: ExtendedContract<TonContractWrapper>, mdEid: Cell): Promise<[Tuple]>;
|
|
2895
|
+
static getSetEpConfigOApp(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2896
|
+
static getAddMsglib(contract: ExtendedContract<TonContractWrapper>, addMsglibMd: Cell): Promise<[Tuple]>;
|
|
2897
|
+
static getDepositZro(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[Tuple]>;
|
|
2898
|
+
static getSetZroWallet(contract: ExtendedContract<TonContractWrapper>, setAddress: Cell): Promise<[Tuple]>;
|
|
2899
|
+
}
|
|
2900
|
+
declare class protocolEndpoint {
|
|
2901
|
+
static get_msglibManagerToShards(contract: ExtendedContract<TonContractWrapper>, msglibManagerAddress: bigint, path: Cell): Promise<[bigint, bigint]>;
|
|
2902
|
+
static get_getChannelAddress(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint]>;
|
|
2903
|
+
static get_getEpConfigFromManagerAddresses(contract: ExtendedContract<TonContractWrapper>, setEpConfigMd: Cell, path: Cell): Promise<[Cell]>;
|
|
2904
|
+
static get_getMsglibAndConnectionDefaults(contract: ExtendedContract<TonContractWrapper>, key: bigint, path: Cell): Promise<[bigint, bigint]>;
|
|
2905
|
+
static get_getSendMsglibAndConnectionDefaults(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint, bigint]>;
|
|
2906
|
+
static getGetReceiveMsglibAndConnectionDefaults(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint, bigint]>;
|
|
2907
|
+
static getGetTimeoutReceiveMsglibAndConnectionDefaults(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint, bigint]>;
|
|
2908
|
+
static getSetEpConfigDefaults(contract: ExtendedContract<TonContractWrapper>, setEpConfigMd: Cell): Promise<[Tuple]>;
|
|
2909
|
+
static getSetEpConfigOApp(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2910
|
+
static getEndpointSend(contract: ExtendedContract<TonContractWrapper>, lzSend: Cell): Promise<[Tuple]>;
|
|
2911
|
+
static getEndpointCommitPacket(contract: ExtendedContract<TonContractWrapper>, packet: Cell): Promise<[Tuple]>;
|
|
2912
|
+
static getAddMsglib(contract: ExtendedContract<TonContractWrapper>, addMsglib: Cell): Promise<[Tuple]>;
|
|
2913
|
+
static getGetMsglibInfoCallback(contract: ExtendedContract<TonContractWrapper>, msglibInfo: Cell): Promise<[Tuple]>;
|
|
2914
|
+
}
|
|
2915
|
+
declare class simpleMsglibSmlConnection {
|
|
2916
|
+
static getMsglibConnectionSend(contract: ExtendedContract<TonContractWrapper>, lzSend: Cell): Promise<[Tuple]>;
|
|
2917
|
+
static getSmlConnectionCommitPacket(contract: ExtendedContract<TonContractWrapper>, mdAddress: Cell): Promise<[Tuple]>;
|
|
2918
|
+
static getMsglibConnectionCommitPacketCallback(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2919
|
+
static getSyncChannelState(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2920
|
+
}
|
|
2921
|
+
declare class simpleMsglibSmlManager {
|
|
2922
|
+
static get_deriveEndpointAddress(contract: ExtendedContract<TonContractWrapper>, dstEid: bigint): Promise<[bigint]>;
|
|
2923
|
+
static get_deriveChannelAddress(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint]>;
|
|
2924
|
+
static get_deriveConnectionAddress(contract: ExtendedContract<TonContractWrapper>, path: Cell): Promise<[bigint]>;
|
|
2925
|
+
static getSetMsglibConfig(contract: ExtendedContract<TonContractWrapper>, mdExtended: Cell): Promise<[Tuple]>;
|
|
2926
|
+
static getSmlManagerSend(contract: ExtendedContract<TonContractWrapper>, extendedMd: Cell): Promise<[Tuple]>;
|
|
2927
|
+
static getSmlManagerCommitPacket(contract: ExtendedContract<TonContractWrapper>, mdAddress: Cell): Promise<[Tuple]>;
|
|
2928
|
+
static getGetMsgLibInfo(contract: ExtendedContract<TonContractWrapper>, addMsglibMd: Cell): Promise<[Tuple]>;
|
|
2929
|
+
static getSmlManagerCommitPacketCallback(contract: ExtendedContract<TonContractWrapper>, mdObj: Cell): Promise<[Tuple]>;
|
|
2930
|
+
static getDeployConnection(contract: ExtendedContract<TonContractWrapper>, deploy: Cell): Promise<[Tuple]>;
|
|
2931
|
+
}
|
|
2932
|
+
declare class ultralightnodeUlnManager {
|
|
2933
|
+
static get_calculateUlnAddress(contract: ExtendedContract<TonContractWrapper>, storage: Cell, dstEid: bigint): Promise<[bigint]>;
|
|
2934
|
+
static get_calculateEndpointAddress(contract: ExtendedContract<TonContractWrapper>, storage: Cell, dstEid: bigint): Promise<[bigint]>;
|
|
2935
|
+
static get_calculateChannelAddress(contract: ExtendedContract<TonContractWrapper>, storage: Cell, path: Cell): Promise<[bigint]>;
|
|
2936
|
+
static get_calculateUlnConnectionAddress(contract: ExtendedContract<TonContractWrapper>, storage: Cell, path: Cell): Promise<[bigint]>;
|
|
2937
|
+
}
|
|
2938
|
+
declare class ultralightnodeUlnSendWorkerFactory {
|
|
2939
|
+
static getUlnWorkerSetConfig(contract: ExtendedContract<TonContractWrapper>, storage: Cell, md: Cell): Promise<[Cell]>;
|
|
2940
|
+
static getUlnWorkerQuote(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[bigint, Cell]>;
|
|
2941
|
+
static getUlnWorkerSimpleQuote(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[Tuple]>;
|
|
2942
|
+
static getUlnWorkerTooManyInputs(contract: ExtendedContract<TonContractWrapper>, one: Tuple, two: Tuple, three: Tuple): Promise<[bigint]>;
|
|
2943
|
+
static getUlnWorkerTooFewInputs(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
2944
|
+
static getUlnWorkerSixtyFourOutputs(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[
|
|
2945
|
+
bigint,
|
|
2946
|
+
bigint,
|
|
2947
|
+
bigint,
|
|
2948
|
+
bigint,
|
|
2949
|
+
bigint,
|
|
2950
|
+
bigint,
|
|
2951
|
+
bigint,
|
|
2952
|
+
bigint,
|
|
2953
|
+
bigint,
|
|
2954
|
+
bigint,
|
|
2955
|
+
bigint,
|
|
2956
|
+
bigint,
|
|
2957
|
+
bigint,
|
|
2958
|
+
bigint,
|
|
2959
|
+
bigint,
|
|
2960
|
+
bigint,
|
|
2961
|
+
bigint,
|
|
2962
|
+
bigint,
|
|
2963
|
+
bigint,
|
|
2964
|
+
bigint,
|
|
2965
|
+
bigint,
|
|
2966
|
+
bigint,
|
|
2967
|
+
bigint,
|
|
2968
|
+
bigint,
|
|
2969
|
+
bigint,
|
|
2970
|
+
bigint,
|
|
2971
|
+
bigint,
|
|
2972
|
+
bigint,
|
|
2973
|
+
bigint,
|
|
2974
|
+
bigint,
|
|
2975
|
+
bigint,
|
|
2976
|
+
bigint,
|
|
2977
|
+
bigint,
|
|
2978
|
+
bigint,
|
|
2979
|
+
bigint,
|
|
2980
|
+
bigint,
|
|
2981
|
+
bigint,
|
|
2982
|
+
bigint,
|
|
2983
|
+
bigint,
|
|
2984
|
+
bigint,
|
|
2985
|
+
bigint,
|
|
2986
|
+
bigint,
|
|
2987
|
+
bigint,
|
|
2988
|
+
bigint,
|
|
2989
|
+
bigint,
|
|
2990
|
+
bigint,
|
|
2991
|
+
bigint,
|
|
2992
|
+
bigint,
|
|
2993
|
+
bigint,
|
|
2994
|
+
bigint,
|
|
2995
|
+
bigint,
|
|
2996
|
+
bigint,
|
|
2997
|
+
bigint,
|
|
2998
|
+
bigint,
|
|
2999
|
+
bigint,
|
|
3000
|
+
bigint,
|
|
3001
|
+
bigint,
|
|
3002
|
+
bigint,
|
|
3003
|
+
bigint,
|
|
3004
|
+
bigint,
|
|
3005
|
+
bigint,
|
|
3006
|
+
bigint,
|
|
3007
|
+
bigint,
|
|
3008
|
+
bigint
|
|
3009
|
+
]>;
|
|
3010
|
+
static getUlnWorkerPut16ItemsBeforeOOG(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[bigint]>;
|
|
3011
|
+
static getUlnWorkerPut32ItemsBeforeOOG(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[bigint]>;
|
|
3012
|
+
static getUlnWorkerPut64ItemsBeforeOOG(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[bigint]>;
|
|
3013
|
+
static getUlnWorkerFibonacci(contract: ExtendedContract<TonContractWrapper>, inputs: Tuple): Promise<[bigint]>;
|
|
3014
|
+
static getUlnWorkerTooFewInputs1(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3015
|
+
static getUlnWorkerTooFewInputs2(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3016
|
+
static getUlnWorkerTooFewInputs3(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3017
|
+
static getUlnWorkerTooFewInputs4(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3018
|
+
static getUlnWorkerTooFewInputs5(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3019
|
+
static getUlnWorkerTooFewInputs6(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3020
|
+
static getUlnWorkerTooFewInputs7(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3021
|
+
static getUlnWorkerTooFewInputs8(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3022
|
+
static getUlnWorkerTooFewInputs9(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3023
|
+
static getUlnWorkerTooFewInputs10(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3024
|
+
static getUlnWorkerTooFewInputs11(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3025
|
+
static getUlnWorkerTooFewInputs12(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3026
|
+
static getUlnWorkerTooFewInputs13(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3027
|
+
static getUlnWorkerTooFewInputs14(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3028
|
+
static getUlnWorkerTooFewInputs15(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3029
|
+
static getUlnWorkerTooFewInputs16(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3030
|
+
static getUlnWorkerTooFewInputs17(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3031
|
+
static getUlnWorkerTooFewInputs18(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3032
|
+
static getUlnWorkerTooFewInputs19(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3033
|
+
static getUlnWorkerTooFewInputs20(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3034
|
+
static getUlnWorkerTooFewInputs21(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3035
|
+
static getUlnWorkerTooFewInputs22(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3036
|
+
static getUlnWorkerTooFewInputs23(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3037
|
+
static getUlnWorkerTooFewInputs24(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3038
|
+
static getUlnWorkerTooFewInputs25(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3039
|
+
static getUlnWorkerTooFewInputs26(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3040
|
+
static getUlnWorkerTooFewInputs27(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3041
|
+
static getUlnWorkerTooFewInputs28(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3042
|
+
static getUlnWorkerTooFewInputs29(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3043
|
+
static getUlnWorkerTooFewInputs30(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3044
|
+
static getUlnWorkerTooFewInputs31(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3045
|
+
static getUlnWorkerTooFewInputs32(contract: ExtendedContract<TonContractWrapper>): Promise<[bigint]>;
|
|
3046
|
+
}
|
|
3047
|
+
declare class workersDvn {
|
|
3048
|
+
static getDecodeSignature(contract: ExtendedContract<TonContractWrapper>, signature: Cell): Promise<[bigint, bigint, bigint]>;
|
|
3049
|
+
static getEncodePublicKey(contract: ExtendedContract<TonContractWrapper>, x1: bigint, x2: bigint): Promise<[Cell]>;
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
declare const fieldTypes: readonly ["cl::t::address", "cl::t::uint32", "cl::t::bool", "cl::t::dict256", "cl::t::coins", "cl::t::cellRef", "cl::t::objRef", "cl::t::uint256", "cl::t::uint64", "cl::t::uint8", "cl::t::uint16"];
|
|
3053
|
+
type FieldTypes = (typeof fieldTypes)[number];
|
|
3054
|
+
type ValueOf<T> = T[keyof T];
|
|
3055
|
+
type Field<Name extends keyof typeof tonObjects> = Omit<(typeof tonObjects)[Name], 'name'>;
|
|
3056
|
+
type FieldTypeToValue<FieldType> = FieldType extends 'cl::t::dict256' | 'cl::t::cellRef' | 'cl::t::objRef' ? Cell : number | bigint;
|
|
3057
|
+
type FieldMapper<Name extends keyof typeof tonObjects, _Field extends {
|
|
3058
|
+
fieldName: string;
|
|
3059
|
+
fieldType: FieldTypes;
|
|
3060
|
+
}> = {
|
|
3061
|
+
[K in _Field as K['fieldName'] extends `${Name}::${infer PropName}` ? PropName : never]: FieldTypeToValue<K['fieldType']>;
|
|
3062
|
+
};
|
|
3063
|
+
type Fields<Name extends keyof typeof tonObjects> = ValueOf<Field<Name>> extends {
|
|
3064
|
+
fieldName: string;
|
|
3065
|
+
fieldType: FieldTypes;
|
|
3066
|
+
} ? FieldMapper<Name, ValueOf<Field<Name>>> : never;
|
|
3067
|
+
declare const buildClass: <Name extends "BaseOApp" | "Counter" | "cl::dict256" | "POOO" | "Channel" | "Controller" | "BaseStorage" | "Endpoint" | "SmlConnection" | "SmlManager" | "UlnReceiveConfig" | "UlnWorkerInfo" | "Uln" | "UlnConnection" | "UlnManager" | "WorkerCoreStorage" | "Dvn" | "Executor" | "lz::Attestation" | "lz::Config" | "lz::EpConfig::NewWithConnection" | "lz::EpConfig" | "lz::EpConfig::NewWithDefaults" | "lz::EpConfig::NewFrom" | "lz::MsglibInfo" | "lz::Packet" | "lz::Path" | "lz::ReceiveEpConfig" | "lz::SendEpConfig" | "lz::SmlJobAssigned" | "lz::Worker" | "md::AddMsglib" | "md::Amount" | "md::Bool" | "md::ChannelNonceInfo" | "md::CoinsAmount" | "md::CounterIncrement" | "md::Deploy" | "md::ExtendedMd" | "md::getMsglibInfoCallback" | "md::InitEndpoint" | "md::InitSmlConnection" | "md::InitUlnConnection" | "md::LzReceiveStatus" | "md::LzReceiveStatus::NewFull" | "md::LzSend" | "md::MdAddress" | "md::MdEid" | "md::MdObj" | "md::MessagingReceipt" | "md::MsglibSendCallback" | "md::Nonce" | "md::OptionsExtended" | "md::OptionsV1" | "md::OptionsV2" | "md::PacketId" | "md::PacketSent" | "md::SetAddress" | "md::SetEpConfig" | "md::SetPeer" | "md::SetSmlManagerConfig" | "POOO::NewWithBitsSets" | "UlnReceiveConfig::NewWithDefaults" | "md::UlnSend" | "UlnSendConfig" | "UlnSendConfig::NewWithDefaults" | "md::UlnWorkerEvents" | "md::ExecuteParams" | "md::CallContract" | "md::MdDict" | "md::NativeDrop" | "md::SetDict" | "md::SetQuorum" | "md::SignedRequest" | "md::UlnCommitPacket">(name: Name, fields: Fields<Name>) => Cell;
|
|
3068
|
+
declare const decodeClass: <Name extends "BaseOApp" | "Counter" | "cl::dict256" | "POOO" | "Channel" | "Controller" | "BaseStorage" | "Endpoint" | "SmlConnection" | "SmlManager" | "UlnReceiveConfig" | "UlnWorkerInfo" | "Uln" | "UlnConnection" | "UlnManager" | "WorkerCoreStorage" | "Dvn" | "Executor" | "lz::Attestation" | "lz::Config" | "lz::EpConfig::NewWithConnection" | "lz::EpConfig" | "lz::EpConfig::NewWithDefaults" | "lz::EpConfig::NewFrom" | "lz::MsglibInfo" | "lz::Packet" | "lz::Path" | "lz::ReceiveEpConfig" | "lz::SendEpConfig" | "lz::SmlJobAssigned" | "lz::Worker" | "md::AddMsglib" | "md::Amount" | "md::Bool" | "md::ChannelNonceInfo" | "md::CoinsAmount" | "md::CounterIncrement" | "md::Deploy" | "md::ExtendedMd" | "md::getMsglibInfoCallback" | "md::InitEndpoint" | "md::InitSmlConnection" | "md::InitUlnConnection" | "md::LzReceiveStatus" | "md::LzReceiveStatus::NewFull" | "md::LzSend" | "md::MdAddress" | "md::MdEid" | "md::MdObj" | "md::MessagingReceipt" | "md::MsglibSendCallback" | "md::Nonce" | "md::OptionsExtended" | "md::OptionsV1" | "md::OptionsV2" | "md::PacketId" | "md::PacketSent" | "md::SetAddress" | "md::SetEpConfig" | "md::SetPeer" | "md::SetSmlManagerConfig" | "POOO::NewWithBitsSets" | "UlnReceiveConfig::NewWithDefaults" | "md::UlnSend" | "UlnSendConfig" | "UlnSendConfig::NewWithDefaults" | "md::UlnWorkerEvents" | "md::ExecuteParams" | "md::CallContract" | "md::MdDict" | "md::NativeDrop" | "md::SetDict" | "md::SetQuorum" | "md::SignedRequest" | "md::UlnCommitPacket">(name: Name, cell: Cell) => Fields<Name>;
|
|
3069
|
+
|
|
3070
|
+
declare const hexToCells: (hex: string) => Cell;
|
|
3071
|
+
declare const getTotalBits: (cell: Cell) => number;
|
|
3072
|
+
declare const getClosestByteAlignedBits: (bits: number) => number;
|
|
3073
|
+
declare const cellsToHex: (cell: Cell) => string;
|
|
3074
|
+
declare const calculateCellConsumption: (cell: Cell) => {
|
|
3075
|
+
numberOfCells: number;
|
|
3076
|
+
bits: number;
|
|
3077
|
+
};
|
|
3078
|
+
declare const calculateCellConsumptionFromHex: (hex: string) => {
|
|
3079
|
+
numberOfCells: number;
|
|
3080
|
+
bits: number;
|
|
3081
|
+
};
|
|
3082
|
+
|
|
3083
|
+
declare const asciiStringToBigint: (target: string) => bigint;
|
|
3084
|
+
declare const bigintToAsciiString: (target: bigint) => string;
|
|
3085
|
+
declare const emptyCell: () => Cell;
|
|
3086
|
+
declare const nullObject: () => Cell;
|
|
3087
|
+
declare const emptyMap: () => Cell;
|
|
3088
|
+
declare const emptyPOOO: () => Cell;
|
|
3089
|
+
declare const initBaseStorage: (owner: bigint) => Cell;
|
|
3090
|
+
|
|
3091
|
+
declare const cl: {
|
|
3092
|
+
readonly t: {
|
|
3093
|
+
readonly bool: 0;
|
|
3094
|
+
readonly uint8: 3;
|
|
3095
|
+
readonly uint16: 4;
|
|
3096
|
+
readonly uint32: 5;
|
|
3097
|
+
readonly uint64: 6;
|
|
3098
|
+
readonly coins: 7;
|
|
3099
|
+
readonly uint256: 8;
|
|
3100
|
+
readonly address: 8;
|
|
3101
|
+
readonly cellRef: 9;
|
|
3102
|
+
readonly dict256: 9;
|
|
3103
|
+
readonly objRef: 9;
|
|
3104
|
+
};
|
|
3105
|
+
readonly NULL_CLASS_NAME: "NULL";
|
|
3106
|
+
readonly ERROR: {
|
|
3107
|
+
readonly INVALID_CLASS: "INVALID_CLASS";
|
|
3108
|
+
};
|
|
3109
|
+
};
|
|
3110
|
+
declare const MAX_NAME_LEN = 10;
|
|
3111
|
+
declare const _NAME_WIDTH: number;
|
|
3112
|
+
declare const MAX_CELL_BITS = 1023;
|
|
3113
|
+
type ClDeclareField = {
|
|
3114
|
+
type: typeof cl.t.objRef;
|
|
3115
|
+
value: Cell;
|
|
3116
|
+
} | {
|
|
3117
|
+
type: (typeof cl.t)[keyof typeof cl.t];
|
|
3118
|
+
value: number | bigint;
|
|
3119
|
+
};
|
|
3120
|
+
declare const _getTypeWidth: (clType: number) => number;
|
|
3121
|
+
declare const clDeclare: (name: bigint, fields: ClDeclareField[]) => Cell;
|
|
3122
|
+
declare const clGetUint: (cell: Cell, fieldName: number, width: number) => bigint;
|
|
3123
|
+
declare const clGetCellRef: (cell: Cell, fieldName: number) => Cell;
|
|
3124
|
+
|
|
3125
|
+
declare function getCompiledCode(name: string): Cell;
|
|
3126
|
+
declare function getCompiledJson(name: string): {
|
|
3127
|
+
hash: string;
|
|
3128
|
+
hashBase64: string;
|
|
3129
|
+
hex: string;
|
|
3130
|
+
};
|
|
3131
|
+
declare function bigintToAddress(value: bigint): Address;
|
|
3132
|
+
declare const addressToBigInt: (address: Address) => bigint;
|
|
3133
|
+
/**
|
|
3134
|
+
* Convert a value to a 32 byte buffer, if the value is a string, it can only be a hex string
|
|
3135
|
+
* @param value
|
|
3136
|
+
* @param maxIntermediateBufferSize
|
|
3137
|
+
*/
|
|
3138
|
+
declare function to32ByteBuffer(value: bigint | number | string | Uint8Array, maxIntermediateBufferSize?: number): Buffer;
|
|
3139
|
+
|
|
3140
|
+
export { type ActionEvent, BASE_CHAIN_ID, type BaseOApp, type BaseStorage, BaseWrapper, type Channel, type ClDeclareField, type Controller, type Counter, type Dvn, ERRORS, EVENTS, type Endpoint, type Executor, type ExtendedContract, type Field, type FieldMapper, type FieldTypeToValue, type FieldTypes, type Fields, type GetIntFnNames, type LzAttestation, type LzConfig, LzDict, type LzEpConfigNewWithConnection, LzEvent, LzEventHandler, LzGasTracker, type LzMsglibInfo, type LzPacket, type LzPath, type LzReceiveEpConfig, type LzSendEpConfig, type LzSmlJobAssigned, type LzWorker, MASTER_CHAIN_ID, MASTER_CHAIN_SHARD, MAX_CELL_BITS, MAX_NAME_LEN, type Md, type MdAddMsglib, type MdAmount, type MdBool, type MdCallContract, type MdChannelNonceInfo, type MdCoinsAmount, type MdCounterIncrement, type MdDeploy, type MdExecuteParams, type MdExtendedMd, type MdGetMsglibInfoCallback, type MdInitEndpoint, type MdInitSmlConnection, type MdInitUlnConnection, type MdLzReceiveStatus, type MdLzReceiveStatusNewFull, type MdLzSend, type MdMdAddress, type MdMdDict, type MdMdEid, type MdMdObj, type MdMessagingReceipt, type MdMsglibSendCallback, type MdNativeDrop, type MdNonce, type MdOptionsExtended, type MdOptionsV1, type MdOptionsV2, type MdPacketId, type MdPacketSent, type MdSetAddress, type MdSetDict, type MdSetEpConfig, type MdSetPeer, type MdSetQuorum, type MdSetSmlManagerConfig, type MdSignedRequest, type MdUlnCommitPacket, type MdUlnSend, type MdUlnWorkerEvents, OPCODES, type POOO, type POOONewWithBitsSets, type SendRequestOptions, type SmlConnection, type SmlManager, TonContractWrapper, TonObjectUnwrapper, type Uln, type UlnConnection, type UlnManager, type UlnReceiveConfig, type UlnSendConfig, type UlnWorkerInfo, type ValueOf, type WorkerCoreStorage, _NAME_WIDTH, _getTypeWidth, addressToBigInt, appsCounter, asciiStringToBigint, beginMessage, bigintToAddress, bigintToAsciiString, buildClass, calculateCellConsumption, calculateCellConsumptionFromHex, cellsToHex, cl, clDeclare, clGetCellRef, clGetUint, decodeClass, emptyCell, emptyMap, emptyPOOO, fieldTypes, getClosestByteAlignedBits, getCompiledCode, getCompiledJson, getTotalBits, hexToCells, initBaseStorage, jettonsZro, nameMap, nullObject, protocolChannel, protocolController, protocolEndpoint, randomQueryId, sendRequest, simpleMsglibSmlConnection, simpleMsglibSmlManager, srcMultisig, to32ByteBuffer, tonObjects, ultralightnodeUlnManager, ultralightnodeUlnSendWorkerFactory, workersDvn };
|