@bitgo/sdk-coin-sui 5.11.0 → 5.11.2
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 +8 -0
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts +3 -3
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +36 -36
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts +103 -103
- package/dist/src/lib/mystenlab/builder/Transactions.d.ts +178 -178
- package/dist/src/lib/mystenlab/framework/framework.d.ts +1 -1
- package/dist/src/lib/mystenlab/types/events.d.ts +6 -6
- package/dist/src/lib/mystenlab/types/objects.d.ts +86 -86
- package/dist/src/lib/mystenlab/types/transactions.d.ts +608 -608
- package/dist/src/lib/mystenlab/types/validator.d.ts +8 -8
- package/package.json +7 -7
|
@@ -7,24 +7,24 @@ export declare const TransactionExpiration: import("superstruct").Struct<{
|
|
|
7
7
|
} | null | undefined, null>;
|
|
8
8
|
export type TransactionExpiration = Infer<typeof TransactionExpiration>;
|
|
9
9
|
declare const GasConfig: import("superstruct").Struct<{
|
|
10
|
-
owner?: string | undefined;
|
|
11
10
|
payment?: {
|
|
12
|
-
version: string | number;
|
|
13
11
|
objectId: string;
|
|
12
|
+
version: string | number;
|
|
14
13
|
digest: string;
|
|
15
14
|
}[] | undefined;
|
|
15
|
+
owner?: string | undefined;
|
|
16
16
|
price?: string | undefined;
|
|
17
17
|
budget?: string | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
budget: import("superstruct").Struct<string | undefined, null>;
|
|
20
20
|
price: import("superstruct").Struct<string | undefined, null>;
|
|
21
21
|
payment: import("superstruct").Struct<{
|
|
22
|
-
version: string | number;
|
|
23
22
|
objectId: string;
|
|
23
|
+
version: string | number;
|
|
24
24
|
digest: string;
|
|
25
25
|
}[] | undefined, import("superstruct").Struct<{
|
|
26
|
-
version: string | number;
|
|
27
26
|
objectId: string;
|
|
27
|
+
version: string | number;
|
|
28
28
|
digest: string;
|
|
29
29
|
}, {
|
|
30
30
|
digest: import("superstruct").Struct<string, null>;
|
|
@@ -38,133 +38,133 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
38
38
|
version: 1;
|
|
39
39
|
transactions: ({
|
|
40
40
|
arguments: ({
|
|
41
|
-
index: number;
|
|
42
41
|
kind: "Input";
|
|
42
|
+
index: number;
|
|
43
43
|
type?: "object" | "pure" | undefined;
|
|
44
44
|
value?: any;
|
|
45
45
|
} | {
|
|
46
46
|
kind: "GasCoin";
|
|
47
47
|
} | {
|
|
48
|
-
index: number;
|
|
49
48
|
kind: "Result";
|
|
50
|
-
} | {
|
|
51
49
|
index: number;
|
|
50
|
+
} | {
|
|
52
51
|
kind: "NestedResult";
|
|
52
|
+
index: number;
|
|
53
53
|
resultIndex: number;
|
|
54
54
|
})[];
|
|
55
55
|
kind: "MoveCall";
|
|
56
56
|
typeArguments: string[];
|
|
57
57
|
target: `${string}::${string}::${string}`;
|
|
58
58
|
} | {
|
|
59
|
-
|
|
60
|
-
index: number;
|
|
59
|
+
objects: ({
|
|
61
60
|
kind: "Input";
|
|
61
|
+
index: number;
|
|
62
62
|
type?: "object" | "pure" | undefined;
|
|
63
63
|
value?: any;
|
|
64
64
|
} | {
|
|
65
65
|
kind: "GasCoin";
|
|
66
66
|
} | {
|
|
67
|
-
index: number;
|
|
68
67
|
kind: "Result";
|
|
69
|
-
} | {
|
|
70
68
|
index: number;
|
|
69
|
+
} | {
|
|
71
70
|
kind: "NestedResult";
|
|
72
|
-
resultIndex: number;
|
|
73
|
-
};
|
|
74
|
-
objects: ({
|
|
75
71
|
index: number;
|
|
72
|
+
resultIndex: number;
|
|
73
|
+
})[];
|
|
74
|
+
kind: "TransferObjects";
|
|
75
|
+
address: {
|
|
76
76
|
kind: "Input";
|
|
77
|
+
index: number;
|
|
77
78
|
type?: "object" | "pure" | undefined;
|
|
78
79
|
value?: any;
|
|
79
80
|
} | {
|
|
80
81
|
kind: "GasCoin";
|
|
81
82
|
} | {
|
|
82
|
-
index: number;
|
|
83
83
|
kind: "Result";
|
|
84
|
-
} | {
|
|
85
84
|
index: number;
|
|
85
|
+
} | {
|
|
86
86
|
kind: "NestedResult";
|
|
87
|
+
index: number;
|
|
87
88
|
resultIndex: number;
|
|
88
|
-
}
|
|
89
|
-
kind: "TransferObjects";
|
|
89
|
+
};
|
|
90
90
|
} | {
|
|
91
|
+
kind: "SplitCoins";
|
|
91
92
|
coin: {
|
|
92
|
-
index: number;
|
|
93
93
|
kind: "Input";
|
|
94
|
+
index: number;
|
|
94
95
|
type?: "object" | "pure" | undefined;
|
|
95
96
|
value?: any;
|
|
96
97
|
} | {
|
|
97
98
|
kind: "GasCoin";
|
|
98
99
|
} | {
|
|
99
|
-
index: number;
|
|
100
100
|
kind: "Result";
|
|
101
|
-
} | {
|
|
102
101
|
index: number;
|
|
102
|
+
} | {
|
|
103
103
|
kind: "NestedResult";
|
|
104
|
+
index: number;
|
|
104
105
|
resultIndex: number;
|
|
105
106
|
};
|
|
106
|
-
kind: "SplitCoins";
|
|
107
107
|
amounts: ({
|
|
108
|
-
index: number;
|
|
109
108
|
kind: "Input";
|
|
109
|
+
index: number;
|
|
110
110
|
type?: "object" | "pure" | undefined;
|
|
111
111
|
value?: any;
|
|
112
112
|
} | {
|
|
113
113
|
kind: "GasCoin";
|
|
114
114
|
} | {
|
|
115
|
-
index: number;
|
|
116
115
|
kind: "Result";
|
|
117
|
-
} | {
|
|
118
116
|
index: number;
|
|
117
|
+
} | {
|
|
119
118
|
kind: "NestedResult";
|
|
119
|
+
index: number;
|
|
120
120
|
resultIndex: number;
|
|
121
121
|
})[];
|
|
122
122
|
} | {
|
|
123
123
|
kind: "MergeCoins";
|
|
124
124
|
destination: {
|
|
125
|
-
index: number;
|
|
126
125
|
kind: "Input";
|
|
126
|
+
index: number;
|
|
127
127
|
type?: "object" | "pure" | undefined;
|
|
128
128
|
value?: any;
|
|
129
129
|
} | {
|
|
130
130
|
kind: "GasCoin";
|
|
131
131
|
} | {
|
|
132
|
-
index: number;
|
|
133
132
|
kind: "Result";
|
|
134
|
-
} | {
|
|
135
133
|
index: number;
|
|
134
|
+
} | {
|
|
136
135
|
kind: "NestedResult";
|
|
136
|
+
index: number;
|
|
137
137
|
resultIndex: number;
|
|
138
138
|
};
|
|
139
139
|
sources: ({
|
|
140
|
-
index: number;
|
|
141
140
|
kind: "Input";
|
|
141
|
+
index: number;
|
|
142
142
|
type?: "object" | "pure" | undefined;
|
|
143
143
|
value?: any;
|
|
144
144
|
} | {
|
|
145
145
|
kind: "GasCoin";
|
|
146
146
|
} | {
|
|
147
|
-
index: number;
|
|
148
147
|
kind: "Result";
|
|
149
|
-
} | {
|
|
150
148
|
index: number;
|
|
149
|
+
} | {
|
|
151
150
|
kind: "NestedResult";
|
|
151
|
+
index: number;
|
|
152
152
|
resultIndex: number;
|
|
153
153
|
})[];
|
|
154
154
|
} | {
|
|
155
155
|
objects: ({
|
|
156
|
-
index: number;
|
|
157
156
|
kind: "Input";
|
|
157
|
+
index: number;
|
|
158
158
|
type?: "object" | "pure" | undefined;
|
|
159
159
|
value?: any;
|
|
160
160
|
} | {
|
|
161
161
|
kind: "GasCoin";
|
|
162
162
|
} | {
|
|
163
|
-
index: number;
|
|
164
163
|
kind: "Result";
|
|
165
|
-
} | {
|
|
166
164
|
index: number;
|
|
165
|
+
} | {
|
|
167
166
|
kind: "NestedResult";
|
|
167
|
+
index: number;
|
|
168
168
|
resultIndex: number;
|
|
169
169
|
})[];
|
|
170
170
|
kind: "MakeMoveVec";
|
|
@@ -179,18 +179,18 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
179
179
|
modules: number[][];
|
|
180
180
|
})[];
|
|
181
181
|
inputs: {
|
|
182
|
-
index: number;
|
|
183
182
|
kind: "Input";
|
|
183
|
+
index: number;
|
|
184
184
|
type?: "object" | "pure" | undefined;
|
|
185
185
|
value?: any;
|
|
186
186
|
}[];
|
|
187
187
|
gasConfig: {
|
|
188
|
-
owner?: string | undefined;
|
|
189
188
|
payment?: {
|
|
190
|
-
version: string | number;
|
|
191
189
|
objectId: string;
|
|
190
|
+
version: string | number;
|
|
192
191
|
digest: string;
|
|
193
192
|
}[] | undefined;
|
|
193
|
+
owner?: string | undefined;
|
|
194
194
|
price?: string | undefined;
|
|
195
195
|
budget?: string | undefined;
|
|
196
196
|
};
|
|
@@ -209,24 +209,24 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
209
209
|
None: true | null;
|
|
210
210
|
} | null | undefined, null>;
|
|
211
211
|
gasConfig: import("superstruct").Struct<{
|
|
212
|
-
owner?: string | undefined;
|
|
213
212
|
payment?: {
|
|
214
|
-
version: string | number;
|
|
215
213
|
objectId: string;
|
|
214
|
+
version: string | number;
|
|
216
215
|
digest: string;
|
|
217
216
|
}[] | undefined;
|
|
217
|
+
owner?: string | undefined;
|
|
218
218
|
price?: string | undefined;
|
|
219
219
|
budget?: string | undefined;
|
|
220
220
|
}, {
|
|
221
221
|
budget: import("superstruct").Struct<string | undefined, null>;
|
|
222
222
|
price: import("superstruct").Struct<string | undefined, null>;
|
|
223
223
|
payment: import("superstruct").Struct<{
|
|
224
|
-
version: string | number;
|
|
225
224
|
objectId: string;
|
|
225
|
+
version: string | number;
|
|
226
226
|
digest: string;
|
|
227
227
|
}[] | undefined, import("superstruct").Struct<{
|
|
228
|
-
version: string | number;
|
|
229
228
|
objectId: string;
|
|
229
|
+
version: string | number;
|
|
230
230
|
digest: string;
|
|
231
231
|
}, {
|
|
232
232
|
digest: import("superstruct").Struct<string, null>;
|
|
@@ -236,13 +236,13 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
236
236
|
owner: import("superstruct").Struct<string | undefined, null>;
|
|
237
237
|
}>;
|
|
238
238
|
inputs: import("superstruct").Struct<{
|
|
239
|
-
index: number;
|
|
240
239
|
kind: "Input";
|
|
240
|
+
index: number;
|
|
241
241
|
type?: "object" | "pure" | undefined;
|
|
242
242
|
value?: any;
|
|
243
243
|
}[], import("superstruct").Struct<{
|
|
244
|
-
index: number;
|
|
245
244
|
kind: "Input";
|
|
245
|
+
index: number;
|
|
246
246
|
type?: "object" | "pure" | undefined;
|
|
247
247
|
value?: any;
|
|
248
248
|
}, {
|
|
@@ -253,133 +253,133 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
253
253
|
}>>;
|
|
254
254
|
transactions: import("superstruct").Struct<({
|
|
255
255
|
arguments: ({
|
|
256
|
-
index: number;
|
|
257
256
|
kind: "Input";
|
|
257
|
+
index: number;
|
|
258
258
|
type?: "object" | "pure" | undefined;
|
|
259
259
|
value?: any;
|
|
260
260
|
} | {
|
|
261
261
|
kind: "GasCoin";
|
|
262
262
|
} | {
|
|
263
|
-
index: number;
|
|
264
263
|
kind: "Result";
|
|
265
|
-
} | {
|
|
266
264
|
index: number;
|
|
265
|
+
} | {
|
|
267
266
|
kind: "NestedResult";
|
|
267
|
+
index: number;
|
|
268
268
|
resultIndex: number;
|
|
269
269
|
})[];
|
|
270
270
|
kind: "MoveCall";
|
|
271
271
|
typeArguments: string[];
|
|
272
272
|
target: `${string}::${string}::${string}`;
|
|
273
273
|
} | {
|
|
274
|
-
|
|
275
|
-
index: number;
|
|
274
|
+
objects: ({
|
|
276
275
|
kind: "Input";
|
|
276
|
+
index: number;
|
|
277
277
|
type?: "object" | "pure" | undefined;
|
|
278
278
|
value?: any;
|
|
279
279
|
} | {
|
|
280
280
|
kind: "GasCoin";
|
|
281
281
|
} | {
|
|
282
|
-
index: number;
|
|
283
282
|
kind: "Result";
|
|
284
|
-
} | {
|
|
285
283
|
index: number;
|
|
284
|
+
} | {
|
|
286
285
|
kind: "NestedResult";
|
|
287
|
-
resultIndex: number;
|
|
288
|
-
};
|
|
289
|
-
objects: ({
|
|
290
286
|
index: number;
|
|
287
|
+
resultIndex: number;
|
|
288
|
+
})[];
|
|
289
|
+
kind: "TransferObjects";
|
|
290
|
+
address: {
|
|
291
291
|
kind: "Input";
|
|
292
|
+
index: number;
|
|
292
293
|
type?: "object" | "pure" | undefined;
|
|
293
294
|
value?: any;
|
|
294
295
|
} | {
|
|
295
296
|
kind: "GasCoin";
|
|
296
297
|
} | {
|
|
297
|
-
index: number;
|
|
298
298
|
kind: "Result";
|
|
299
|
-
} | {
|
|
300
299
|
index: number;
|
|
300
|
+
} | {
|
|
301
301
|
kind: "NestedResult";
|
|
302
|
+
index: number;
|
|
302
303
|
resultIndex: number;
|
|
303
|
-
}
|
|
304
|
-
kind: "TransferObjects";
|
|
304
|
+
};
|
|
305
305
|
} | {
|
|
306
|
+
kind: "SplitCoins";
|
|
306
307
|
coin: {
|
|
307
|
-
index: number;
|
|
308
308
|
kind: "Input";
|
|
309
|
+
index: number;
|
|
309
310
|
type?: "object" | "pure" | undefined;
|
|
310
311
|
value?: any;
|
|
311
312
|
} | {
|
|
312
313
|
kind: "GasCoin";
|
|
313
314
|
} | {
|
|
314
|
-
index: number;
|
|
315
315
|
kind: "Result";
|
|
316
|
-
} | {
|
|
317
316
|
index: number;
|
|
317
|
+
} | {
|
|
318
318
|
kind: "NestedResult";
|
|
319
|
+
index: number;
|
|
319
320
|
resultIndex: number;
|
|
320
321
|
};
|
|
321
|
-
kind: "SplitCoins";
|
|
322
322
|
amounts: ({
|
|
323
|
-
index: number;
|
|
324
323
|
kind: "Input";
|
|
324
|
+
index: number;
|
|
325
325
|
type?: "object" | "pure" | undefined;
|
|
326
326
|
value?: any;
|
|
327
327
|
} | {
|
|
328
328
|
kind: "GasCoin";
|
|
329
329
|
} | {
|
|
330
|
-
index: number;
|
|
331
330
|
kind: "Result";
|
|
332
|
-
} | {
|
|
333
331
|
index: number;
|
|
332
|
+
} | {
|
|
334
333
|
kind: "NestedResult";
|
|
334
|
+
index: number;
|
|
335
335
|
resultIndex: number;
|
|
336
336
|
})[];
|
|
337
337
|
} | {
|
|
338
338
|
kind: "MergeCoins";
|
|
339
339
|
destination: {
|
|
340
|
-
index: number;
|
|
341
340
|
kind: "Input";
|
|
341
|
+
index: number;
|
|
342
342
|
type?: "object" | "pure" | undefined;
|
|
343
343
|
value?: any;
|
|
344
344
|
} | {
|
|
345
345
|
kind: "GasCoin";
|
|
346
346
|
} | {
|
|
347
|
-
index: number;
|
|
348
347
|
kind: "Result";
|
|
349
|
-
} | {
|
|
350
348
|
index: number;
|
|
349
|
+
} | {
|
|
351
350
|
kind: "NestedResult";
|
|
351
|
+
index: number;
|
|
352
352
|
resultIndex: number;
|
|
353
353
|
};
|
|
354
354
|
sources: ({
|
|
355
|
-
index: number;
|
|
356
355
|
kind: "Input";
|
|
356
|
+
index: number;
|
|
357
357
|
type?: "object" | "pure" | undefined;
|
|
358
358
|
value?: any;
|
|
359
359
|
} | {
|
|
360
360
|
kind: "GasCoin";
|
|
361
361
|
} | {
|
|
362
|
-
index: number;
|
|
363
362
|
kind: "Result";
|
|
364
|
-
} | {
|
|
365
363
|
index: number;
|
|
364
|
+
} | {
|
|
366
365
|
kind: "NestedResult";
|
|
366
|
+
index: number;
|
|
367
367
|
resultIndex: number;
|
|
368
368
|
})[];
|
|
369
369
|
} | {
|
|
370
370
|
objects: ({
|
|
371
|
-
index: number;
|
|
372
371
|
kind: "Input";
|
|
372
|
+
index: number;
|
|
373
373
|
type?: "object" | "pure" | undefined;
|
|
374
374
|
value?: any;
|
|
375
375
|
} | {
|
|
376
376
|
kind: "GasCoin";
|
|
377
377
|
} | {
|
|
378
|
-
index: number;
|
|
379
378
|
kind: "Result";
|
|
380
|
-
} | {
|
|
381
379
|
index: number;
|
|
380
|
+
} | {
|
|
382
381
|
kind: "NestedResult";
|
|
382
|
+
index: number;
|
|
383
383
|
resultIndex: number;
|
|
384
384
|
})[];
|
|
385
385
|
kind: "MakeMoveVec";
|
|
@@ -394,133 +394,133 @@ export declare const SerializedTransactionDataBuilder: import("superstruct").Str
|
|
|
394
394
|
modules: number[][];
|
|
395
395
|
})[], import("superstruct").Struct<{
|
|
396
396
|
arguments: ({
|
|
397
|
-
index: number;
|
|
398
397
|
kind: "Input";
|
|
398
|
+
index: number;
|
|
399
399
|
type?: "object" | "pure" | undefined;
|
|
400
400
|
value?: any;
|
|
401
401
|
} | {
|
|
402
402
|
kind: "GasCoin";
|
|
403
403
|
} | {
|
|
404
|
-
index: number;
|
|
405
404
|
kind: "Result";
|
|
406
|
-
} | {
|
|
407
405
|
index: number;
|
|
406
|
+
} | {
|
|
408
407
|
kind: "NestedResult";
|
|
408
|
+
index: number;
|
|
409
409
|
resultIndex: number;
|
|
410
410
|
})[];
|
|
411
411
|
kind: "MoveCall";
|
|
412
412
|
typeArguments: string[];
|
|
413
413
|
target: `${string}::${string}::${string}`;
|
|
414
414
|
} | {
|
|
415
|
-
|
|
416
|
-
index: number;
|
|
415
|
+
objects: ({
|
|
417
416
|
kind: "Input";
|
|
417
|
+
index: number;
|
|
418
418
|
type?: "object" | "pure" | undefined;
|
|
419
419
|
value?: any;
|
|
420
420
|
} | {
|
|
421
421
|
kind: "GasCoin";
|
|
422
422
|
} | {
|
|
423
|
-
index: number;
|
|
424
423
|
kind: "Result";
|
|
425
|
-
} | {
|
|
426
424
|
index: number;
|
|
425
|
+
} | {
|
|
427
426
|
kind: "NestedResult";
|
|
428
|
-
resultIndex: number;
|
|
429
|
-
};
|
|
430
|
-
objects: ({
|
|
431
427
|
index: number;
|
|
428
|
+
resultIndex: number;
|
|
429
|
+
})[];
|
|
430
|
+
kind: "TransferObjects";
|
|
431
|
+
address: {
|
|
432
432
|
kind: "Input";
|
|
433
|
+
index: number;
|
|
433
434
|
type?: "object" | "pure" | undefined;
|
|
434
435
|
value?: any;
|
|
435
436
|
} | {
|
|
436
437
|
kind: "GasCoin";
|
|
437
438
|
} | {
|
|
438
|
-
index: number;
|
|
439
439
|
kind: "Result";
|
|
440
|
-
} | {
|
|
441
440
|
index: number;
|
|
441
|
+
} | {
|
|
442
442
|
kind: "NestedResult";
|
|
443
|
+
index: number;
|
|
443
444
|
resultIndex: number;
|
|
444
|
-
}
|
|
445
|
-
kind: "TransferObjects";
|
|
445
|
+
};
|
|
446
446
|
} | {
|
|
447
|
+
kind: "SplitCoins";
|
|
447
448
|
coin: {
|
|
448
|
-
index: number;
|
|
449
449
|
kind: "Input";
|
|
450
|
+
index: number;
|
|
450
451
|
type?: "object" | "pure" | undefined;
|
|
451
452
|
value?: any;
|
|
452
453
|
} | {
|
|
453
454
|
kind: "GasCoin";
|
|
454
455
|
} | {
|
|
455
|
-
index: number;
|
|
456
456
|
kind: "Result";
|
|
457
|
-
} | {
|
|
458
457
|
index: number;
|
|
458
|
+
} | {
|
|
459
459
|
kind: "NestedResult";
|
|
460
|
+
index: number;
|
|
460
461
|
resultIndex: number;
|
|
461
462
|
};
|
|
462
|
-
kind: "SplitCoins";
|
|
463
463
|
amounts: ({
|
|
464
|
-
index: number;
|
|
465
464
|
kind: "Input";
|
|
465
|
+
index: number;
|
|
466
466
|
type?: "object" | "pure" | undefined;
|
|
467
467
|
value?: any;
|
|
468
468
|
} | {
|
|
469
469
|
kind: "GasCoin";
|
|
470
470
|
} | {
|
|
471
|
-
index: number;
|
|
472
471
|
kind: "Result";
|
|
473
|
-
} | {
|
|
474
472
|
index: number;
|
|
473
|
+
} | {
|
|
475
474
|
kind: "NestedResult";
|
|
475
|
+
index: number;
|
|
476
476
|
resultIndex: number;
|
|
477
477
|
})[];
|
|
478
478
|
} | {
|
|
479
479
|
kind: "MergeCoins";
|
|
480
480
|
destination: {
|
|
481
|
-
index: number;
|
|
482
481
|
kind: "Input";
|
|
482
|
+
index: number;
|
|
483
483
|
type?: "object" | "pure" | undefined;
|
|
484
484
|
value?: any;
|
|
485
485
|
} | {
|
|
486
486
|
kind: "GasCoin";
|
|
487
487
|
} | {
|
|
488
|
-
index: number;
|
|
489
488
|
kind: "Result";
|
|
490
|
-
} | {
|
|
491
489
|
index: number;
|
|
490
|
+
} | {
|
|
492
491
|
kind: "NestedResult";
|
|
492
|
+
index: number;
|
|
493
493
|
resultIndex: number;
|
|
494
494
|
};
|
|
495
495
|
sources: ({
|
|
496
|
-
index: number;
|
|
497
496
|
kind: "Input";
|
|
497
|
+
index: number;
|
|
498
498
|
type?: "object" | "pure" | undefined;
|
|
499
499
|
value?: any;
|
|
500
500
|
} | {
|
|
501
501
|
kind: "GasCoin";
|
|
502
502
|
} | {
|
|
503
|
-
index: number;
|
|
504
503
|
kind: "Result";
|
|
505
|
-
} | {
|
|
506
504
|
index: number;
|
|
505
|
+
} | {
|
|
507
506
|
kind: "NestedResult";
|
|
507
|
+
index: number;
|
|
508
508
|
resultIndex: number;
|
|
509
509
|
})[];
|
|
510
510
|
} | {
|
|
511
511
|
objects: ({
|
|
512
|
-
index: number;
|
|
513
512
|
kind: "Input";
|
|
513
|
+
index: number;
|
|
514
514
|
type?: "object" | "pure" | undefined;
|
|
515
515
|
value?: any;
|
|
516
516
|
} | {
|
|
517
517
|
kind: "GasCoin";
|
|
518
518
|
} | {
|
|
519
|
-
index: number;
|
|
520
519
|
kind: "Result";
|
|
521
|
-
} | {
|
|
522
520
|
index: number;
|
|
521
|
+
} | {
|
|
523
522
|
kind: "NestedResult";
|
|
523
|
+
index: number;
|
|
524
524
|
resultIndex: number;
|
|
525
525
|
})[];
|
|
526
526
|
kind: "MakeMoveVec";
|