@sentio/sdk 2.46.0-rc.1 → 2.46.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/lib/aptos/builtin/0x1.d.ts +65 -65
- package/lib/aptos/builtin/0x1.js +27 -27
- package/lib/aptos/builtin/0x3.d.ts +1 -1
- package/lib/aptos/builtin/0x4.d.ts +34 -34
- package/lib/sui/builtin/0x1.d.ts +172 -311
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +17 -17
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +673 -1589
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +106 -106
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +359 -831
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +20 -20
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/package.json +6 -6
- package/src/aptos/builtin/0x1.ts +78 -78
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +34 -34
- package/src/sui/builtin/0x1.ts +178 -317
- package/src/sui/builtin/0x2.ts +752 -1668
- package/src/sui/builtin/0x3.ts +374 -846
package/lib/sui/builtin/0x2.d.ts
CHANGED
@@ -19,15 +19,15 @@ export declare namespace address {
|
|
19
19
|
function toU256(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
20
20
|
}
|
21
21
|
namespace view {
|
22
|
-
function fromAsciiBytes(client: SuiClient, args: [string
|
23
|
-
function fromBytes(client: SuiClient, args: [
|
24
|
-
function fromU256(client: SuiClient, args: [bigint
|
22
|
+
function fromAsciiBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
23
|
+
function fromBytes(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[string]>>;
|
24
|
+
function fromU256(client: SuiClient, args: [bigint]): Promise<TypedDevInspectResults<[string]>>;
|
25
25
|
function length(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
26
26
|
function max(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
27
|
-
function toAsciiString(client: SuiClient, args: [string
|
28
|
-
function toBytes(client: SuiClient, args: [string
|
29
|
-
function toString(client: SuiClient, args: [string
|
30
|
-
function toU256(client: SuiClient, args: [string
|
27
|
+
function toAsciiString(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
28
|
+
function toBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
29
|
+
function toString(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
30
|
+
function toU256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
31
31
|
}
|
32
32
|
}
|
33
33
|
export declare class authenticator_state extends SuiBaseProcessor {
|
@@ -53,7 +53,7 @@ export declare namespace authenticator_state {
|
|
53
53
|
type_arguments: [];
|
54
54
|
}
|
55
55
|
interface AuthenticatorState {
|
56
|
-
id:
|
56
|
+
id: object$.UID;
|
57
57
|
version: bigint;
|
58
58
|
}
|
59
59
|
namespace AuthenticatorState {
|
@@ -99,7 +99,7 @@ export declare namespace authenticator_state {
|
|
99
99
|
}
|
100
100
|
export declare namespace bag {
|
101
101
|
interface Bag {
|
102
|
-
id:
|
102
|
+
id: object$.UID;
|
103
103
|
size: bigint;
|
104
104
|
}
|
105
105
|
namespace Bag {
|
@@ -135,42 +135,23 @@ export declare namespace bag {
|
|
135
135
|
function destroyEmpty(tx: Transaction, args: [bag.Bag | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
136
136
|
function isEmpty(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
137
137
|
function length(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
138
|
-
function
|
138
|
+
function new$(tx: Transaction, args: []): TransactionArgument & [];
|
139
139
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [
|
140
140
|
string | TransactionObjectArgument | TransactionArgument,
|
141
141
|
T0 | TransactionArgument
|
142
142
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
143
143
|
}
|
144
144
|
namespace view {
|
145
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
150
|
-
function
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
function
|
155
|
-
string | TransactionObjectArgument | TransactionArgument,
|
156
|
-
T0 | TransactionArgument
|
157
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
158
|
-
function contains<T0 = any>(client: SuiClient, args: [
|
159
|
-
string | TransactionObjectArgument | TransactionArgument,
|
160
|
-
T0 | TransactionArgument
|
161
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
162
|
-
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
163
|
-
string | TransactionObjectArgument | TransactionArgument,
|
164
|
-
T0 | TransactionArgument
|
165
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
166
|
-
function destroyEmpty(client: SuiClient, args: [bag.Bag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
167
|
-
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
168
|
-
function length(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
169
|
-
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
170
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
171
|
-
string | TransactionObjectArgument | TransactionArgument,
|
172
|
-
T0 | TransactionArgument
|
173
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
145
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
146
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
147
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
148
|
+
function contains<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
149
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
150
|
+
function destroyEmpty(client: SuiClient, args: [bag.Bag]): Promise<TypedDevInspectResults<[]>>;
|
151
|
+
function isEmpty(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
152
|
+
function length(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
153
|
+
function new$(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
154
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
174
155
|
}
|
175
156
|
}
|
176
157
|
export declare namespace balance {
|
@@ -212,28 +193,16 @@ export declare namespace balance {
|
|
212
193
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
213
194
|
}
|
214
195
|
namespace view {
|
215
|
-
function createSupply<T0 = any>(client: SuiClient, args: [T0
|
216
|
-
function decreaseSupply<T0 = any>(client: SuiClient, args: [
|
217
|
-
|
218
|
-
|
219
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
220
|
-
function
|
221
|
-
function
|
222
|
-
function
|
223
|
-
|
224
|
-
|
225
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
226
|
-
function join<T0 = any>(client: SuiClient, args: [
|
227
|
-
string | TransactionObjectArgument | TransactionArgument,
|
228
|
-
balance.Balance<T0> | TransactionArgument
|
229
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
230
|
-
function split<T0 = any>(client: SuiClient, args: [
|
231
|
-
string | TransactionObjectArgument | TransactionArgument,
|
232
|
-
bigint | TransactionArgument
|
233
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
234
|
-
function supplyValue<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
235
|
-
function value<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
236
|
-
function withdrawAll<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
196
|
+
function createSupply<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
197
|
+
function decreaseSupply<T0 = any>(client: SuiClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
198
|
+
function destroySupply<T0 = any>(client: SuiClient, args: [balance.Supply<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
199
|
+
function destroyZero<T0 = any>(client: SuiClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
200
|
+
function increaseSupply<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
201
|
+
function join<T0 = any>(client: SuiClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
202
|
+
function split<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
203
|
+
function supplyValue<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
204
|
+
function value<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
205
|
+
function withdrawAll<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
237
206
|
function zero<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
238
207
|
}
|
239
208
|
}
|
@@ -257,7 +226,7 @@ export declare namespace bcs {
|
|
257
226
|
}
|
258
227
|
namespace builder {
|
259
228
|
function intoRemainderBytes(tx: Transaction, args: [bcs.BCS | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
260
|
-
function
|
229
|
+
function new$(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
261
230
|
function peelAddress(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
262
231
|
function peelBool(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
263
232
|
function peelOptionAddress(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
@@ -287,35 +256,35 @@ export declare namespace bcs {
|
|
287
256
|
function toBytes<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
288
257
|
}
|
289
258
|
namespace view {
|
290
|
-
function intoRemainderBytes(client: SuiClient, args: [bcs.BCS
|
291
|
-
function
|
292
|
-
function peelAddress(client: SuiClient, args: [string
|
293
|
-
function peelBool(client: SuiClient, args: [string
|
294
|
-
function peelOptionAddress(client: SuiClient, args: [string
|
295
|
-
function peelOptionBool(client: SuiClient, args: [string
|
296
|
-
function peelOptionU128(client: SuiClient, args: [string
|
297
|
-
function peelOptionU16(client: SuiClient, args: [string
|
298
|
-
function peelOptionU256(client: SuiClient, args: [string
|
299
|
-
function peelOptionU32(client: SuiClient, args: [string
|
300
|
-
function peelOptionU64(client: SuiClient, args: [string
|
301
|
-
function peelOptionU8(client: SuiClient, args: [string
|
302
|
-
function peelU128(client: SuiClient, args: [string
|
303
|
-
function peelU16(client: SuiClient, args: [string
|
304
|
-
function peelU256(client: SuiClient, args: [string
|
305
|
-
function peelU32(client: SuiClient, args: [string
|
306
|
-
function peelU64(client: SuiClient, args: [string
|
307
|
-
function peelU8(client: SuiClient, args: [string
|
308
|
-
function peelVecAddress(client: SuiClient, args: [string
|
309
|
-
function peelVecBool(client: SuiClient, args: [string
|
310
|
-
function peelVecLength(client: SuiClient, args: [string
|
311
|
-
function peelVecU128(client: SuiClient, args: [string
|
312
|
-
function peelVecU16(client: SuiClient, args: [string
|
313
|
-
function peelVecU256(client: SuiClient, args: [string
|
314
|
-
function peelVecU32(client: SuiClient, args: [string
|
315
|
-
function peelVecU64(client: SuiClient, args: [string
|
316
|
-
function peelVecU8(client: SuiClient, args: [string
|
317
|
-
function peelVecVecU8(client: SuiClient, args: [string
|
318
|
-
function toBytes<T0 = any>(client: SuiClient, args: [string
|
259
|
+
function intoRemainderBytes(client: SuiClient, args: [bcs.BCS]): Promise<TypedDevInspectResults<[number[]]>>;
|
260
|
+
function new$(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[bcs.BCS]>>;
|
261
|
+
function peelAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
262
|
+
function peelBool(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
263
|
+
function peelOptionAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
264
|
+
function peelOptionBool(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<boolean>]>>;
|
265
|
+
function peelOptionU128(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
266
|
+
function peelOptionU16(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
267
|
+
function peelOptionU256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
268
|
+
function peelOptionU32(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
269
|
+
function peelOptionU64(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
270
|
+
function peelOptionU8(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
271
|
+
function peelU128(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
272
|
+
function peelU16(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
273
|
+
function peelU256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
274
|
+
function peelU32(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
275
|
+
function peelU64(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
276
|
+
function peelU8(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
277
|
+
function peelVecAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string[]]>>;
|
278
|
+
function peelVecBool(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[boolean[]]>>;
|
279
|
+
function peelVecLength(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
280
|
+
function peelVecU128(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
281
|
+
function peelVecU16(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
282
|
+
function peelVecU256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
283
|
+
function peelVecU32(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
284
|
+
function peelVecU64(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
285
|
+
function peelVecU8(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
286
|
+
function peelVecVecU8(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[][]]>>;
|
287
|
+
function toBytes<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
319
288
|
}
|
320
289
|
}
|
321
290
|
export declare namespace bls12381 {
|
@@ -463,117 +432,52 @@ export declare namespace bls12381 {
|
|
463
432
|
function scalarZero(tx: Transaction, args: []): TransactionArgument & [];
|
464
433
|
}
|
465
434
|
namespace view {
|
466
|
-
function bls12381MinPkVerify(client: SuiClient, args: [
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
]): Promise<TypedDevInspectResults<[
|
471
|
-
function bls12381MinSigVerify(client: SuiClient, args: [
|
472
|
-
string | TransactionObjectArgument | TransactionArgument,
|
473
|
-
string | TransactionObjectArgument | TransactionArgument,
|
474
|
-
string | TransactionObjectArgument | TransactionArgument
|
475
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
476
|
-
function g1Add(client: SuiClient, args: [
|
477
|
-
string | TransactionObjectArgument | TransactionArgument,
|
478
|
-
string | TransactionObjectArgument | TransactionArgument
|
479
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
480
|
-
function g1Div(client: SuiClient, args: [
|
481
|
-
string | TransactionObjectArgument | TransactionArgument,
|
482
|
-
string | TransactionObjectArgument | TransactionArgument
|
483
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
484
|
-
function g1FromBytes(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
435
|
+
function bls12381MinPkVerify(client: SuiClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
436
|
+
function bls12381MinSigVerify(client: SuiClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
437
|
+
function g1Add(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
438
|
+
function g1Div(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
439
|
+
function g1FromBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
485
440
|
function g1Generator(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
486
441
|
function g1Identity(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
487
|
-
function g1Mul(client: SuiClient, args: [
|
488
|
-
|
489
|
-
|
490
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
491
|
-
function
|
492
|
-
|
493
|
-
|
494
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
495
|
-
function g1Neg(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
496
|
-
function g1Sub(client: SuiClient, args: [
|
497
|
-
string | TransactionObjectArgument | TransactionArgument,
|
498
|
-
string | TransactionObjectArgument | TransactionArgument
|
499
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
500
|
-
function g2Add(client: SuiClient, args: [
|
501
|
-
string | TransactionObjectArgument | TransactionArgument,
|
502
|
-
string | TransactionObjectArgument | TransactionArgument
|
503
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
504
|
-
function g2Div(client: SuiClient, args: [
|
505
|
-
string | TransactionObjectArgument | TransactionArgument,
|
506
|
-
string | TransactionObjectArgument | TransactionArgument
|
507
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
508
|
-
function g2FromBytes(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
442
|
+
function g1Mul(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
443
|
+
function g1MultiScalarMultiplication(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
444
|
+
function g1Neg(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
445
|
+
function g1Sub(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
446
|
+
function g2Add(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
447
|
+
function g2Div(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
448
|
+
function g2FromBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
509
449
|
function g2Generator(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
510
450
|
function g2Identity(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
511
|
-
function g2Mul(client: SuiClient, args: [
|
512
|
-
|
513
|
-
|
514
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
515
|
-
function
|
516
|
-
|
517
|
-
string | TransactionObjectArgument | TransactionArgument
|
518
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
519
|
-
function g2Neg(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
520
|
-
function g2Sub(client: SuiClient, args: [
|
521
|
-
string | TransactionObjectArgument | TransactionArgument,
|
522
|
-
string | TransactionObjectArgument | TransactionArgument
|
523
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
524
|
-
function gtAdd(client: SuiClient, args: [
|
525
|
-
string | TransactionObjectArgument | TransactionArgument,
|
526
|
-
string | TransactionObjectArgument | TransactionArgument
|
527
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
528
|
-
function gtDiv(client: SuiClient, args: [
|
529
|
-
string | TransactionObjectArgument | TransactionArgument,
|
530
|
-
string | TransactionObjectArgument | TransactionArgument
|
531
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
451
|
+
function g2Mul(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
452
|
+
function g2MultiScalarMultiplication(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
453
|
+
function g2Neg(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
454
|
+
function g2Sub(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
455
|
+
function gtAdd(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
456
|
+
function gtDiv(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
532
457
|
function gtGenerator(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
533
458
|
function gtIdentity(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
534
|
-
function gtMul(client: SuiClient, args: [
|
535
|
-
|
536
|
-
|
537
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.
|
538
|
-
function
|
539
|
-
function
|
540
|
-
|
541
|
-
|
542
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.
|
543
|
-
function
|
544
|
-
function
|
545
|
-
function
|
546
|
-
|
547
|
-
string | TransactionObjectArgument | TransactionArgument
|
548
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
549
|
-
function scalarAdd(client: SuiClient, args: [
|
550
|
-
string | TransactionObjectArgument | TransactionArgument,
|
551
|
-
string | TransactionObjectArgument | TransactionArgument
|
552
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
553
|
-
function scalarDiv(client: SuiClient, args: [
|
554
|
-
string | TransactionObjectArgument | TransactionArgument,
|
555
|
-
string | TransactionObjectArgument | TransactionArgument
|
556
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
557
|
-
function scalarFromBytes(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
558
|
-
function scalarFromU64(client: SuiClient, args: [bigint | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
559
|
-
function scalarInv(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
560
|
-
function scalarMul(client: SuiClient, args: [
|
561
|
-
string | TransactionObjectArgument | TransactionArgument,
|
562
|
-
string | TransactionObjectArgument | TransactionArgument
|
563
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
564
|
-
function scalarNeg(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
459
|
+
function gtMul(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
460
|
+
function gtNeg(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
461
|
+
function gtSub(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
462
|
+
function hashToG1(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
463
|
+
function hashToG2(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
464
|
+
function pairing(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
465
|
+
function scalarAdd(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
466
|
+
function scalarDiv(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
467
|
+
function scalarFromBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
468
|
+
function scalarFromU64(client: SuiClient, args: [bigint]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
469
|
+
function scalarInv(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
470
|
+
function scalarMul(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
471
|
+
function scalarNeg(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
565
472
|
function scalarOne(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
566
|
-
function scalarSub(client: SuiClient, args: [
|
567
|
-
string | TransactionObjectArgument | TransactionArgument,
|
568
|
-
string | TransactionObjectArgument | TransactionArgument
|
569
|
-
]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
473
|
+
function scalarSub(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
570
474
|
function scalarZero(client: SuiClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
571
475
|
}
|
572
476
|
}
|
573
477
|
export declare namespace borrow {
|
574
478
|
interface Borrow {
|
575
479
|
ref: string;
|
576
|
-
obj:
|
480
|
+
obj: object$.ID;
|
577
481
|
}
|
578
482
|
namespace Borrow {
|
579
483
|
const TYPE_QNAME = "0x2::borrow::Borrow";
|
@@ -590,7 +494,7 @@ export declare namespace borrow {
|
|
590
494
|
namespace builder {
|
591
495
|
function borrow<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
592
496
|
function destroy<T0 = any>(tx: Transaction, args: [borrow.Referent<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
593
|
-
function
|
497
|
+
function new$<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
594
498
|
function putBack<T0 = any>(tx: Transaction, args: [
|
595
499
|
string | TransactionObjectArgument | TransactionArgument,
|
596
500
|
T0 | TransactionArgument,
|
@@ -602,19 +506,15 @@ export declare namespace borrow {
|
|
602
506
|
];
|
603
507
|
}
|
604
508
|
namespace view {
|
605
|
-
function borrow<T0 = any>(client: SuiClient, args: [string
|
606
|
-
function destroy<T0 = any>(client: SuiClient, args: [borrow.Referent<T0>
|
607
|
-
function
|
608
|
-
function putBack<T0 = any>(client: SuiClient, args: [
|
609
|
-
string | TransactionObjectArgument | TransactionArgument,
|
610
|
-
T0 | TransactionArgument,
|
611
|
-
borrow.Borrow | TransactionArgument
|
612
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
509
|
+
function borrow<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, borrow.Borrow]>>;
|
510
|
+
function destroy<T0 = any>(client: SuiClient, args: [borrow.Referent<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
511
|
+
function new$<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[borrow.Referent<T0>]>>;
|
512
|
+
function putBack<T0 = any>(client: SuiClient, args: [string, T0, borrow.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
613
513
|
}
|
614
514
|
}
|
615
515
|
export declare namespace clock {
|
616
516
|
interface Clock {
|
617
|
-
id:
|
517
|
+
id: object$.UID;
|
618
518
|
timestamp_ms: bigint;
|
619
519
|
}
|
620
520
|
namespace Clock {
|
@@ -625,7 +525,7 @@ export declare namespace clock {
|
|
625
525
|
function timestampMs(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
626
526
|
}
|
627
527
|
namespace view {
|
628
|
-
function timestampMs(client: SuiClient, args: [string
|
528
|
+
function timestampMs(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
629
529
|
}
|
630
530
|
}
|
631
531
|
export declare class coin extends SuiBaseProcessor {
|
@@ -648,7 +548,7 @@ export declare namespace coin {
|
|
648
548
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Coin<T0>>;
|
649
549
|
}
|
650
550
|
interface CoinMetadata<T0> {
|
651
|
-
id:
|
551
|
+
id: object$.UID;
|
652
552
|
decimals: number;
|
653
553
|
name: string;
|
654
554
|
symbol: _0x1.ascii.String;
|
@@ -671,14 +571,14 @@ export declare namespace coin {
|
|
671
571
|
type_arguments: [string];
|
672
572
|
}
|
673
573
|
interface DenyCap<T0> {
|
674
|
-
id:
|
574
|
+
id: object$.UID;
|
675
575
|
}
|
676
576
|
namespace DenyCap {
|
677
577
|
const TYPE_QNAME = "0x2::coin::DenyCap";
|
678
578
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<DenyCap<T0>>;
|
679
579
|
}
|
680
580
|
interface DenyCapV2<T0> {
|
681
|
-
id:
|
581
|
+
id: object$.UID;
|
682
582
|
allow_global_pause: boolean;
|
683
583
|
}
|
684
584
|
namespace DenyCapV2 {
|
@@ -686,16 +586,16 @@ export declare namespace coin {
|
|
686
586
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<DenyCapV2<T0>>;
|
687
587
|
}
|
688
588
|
interface RegulatedCoinMetadata<T0> {
|
689
|
-
id:
|
690
|
-
coin_metadata_object:
|
691
|
-
deny_cap_object:
|
589
|
+
id: object$.UID;
|
590
|
+
coin_metadata_object: object$.ID;
|
591
|
+
deny_cap_object: object$.ID;
|
692
592
|
}
|
693
593
|
namespace RegulatedCoinMetadata {
|
694
594
|
const TYPE_QNAME = "0x2::coin::RegulatedCoinMetadata";
|
695
595
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<RegulatedCoinMetadata<T0>>;
|
696
596
|
}
|
697
597
|
interface TreasuryCap<T0> {
|
698
|
-
id:
|
598
|
+
id: object$.UID;
|
699
599
|
total_supply: balance.Supply<T0>;
|
700
600
|
}
|
701
601
|
namespace TreasuryCap {
|
@@ -913,159 +813,80 @@ export declare namespace coin {
|
|
913
813
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
914
814
|
}
|
915
815
|
namespace view {
|
916
|
-
function balance<T0 = any>(client: SuiClient, args: [string
|
917
|
-
function balanceMut<T0 = any>(client: SuiClient, args: [string
|
918
|
-
function burn<T0 = any>(client: SuiClient, args: [
|
919
|
-
string | TransactionObjectArgument | TransactionArgument,
|
920
|
-
coin.Coin<T0> | TransactionArgument
|
921
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
816
|
+
function balance<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
817
|
+
function balanceMut<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
818
|
+
function burn<T0 = any>(client: SuiClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
922
819
|
function createCurrency<T0 = any>(client: SuiClient, args: [
|
923
|
-
T0
|
924
|
-
number
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
_0x1.option.Option<url.Url>
|
820
|
+
T0,
|
821
|
+
number,
|
822
|
+
string[],
|
823
|
+
string[],
|
824
|
+
string[],
|
825
|
+
_0x1.option.Option<url.Url>
|
929
826
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>, coin.CoinMetadata<T0>]>>;
|
930
827
|
function createRegulatedCurrency<T0 = any>(client: SuiClient, args: [
|
931
|
-
T0
|
932
|
-
number
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
_0x1.option.Option<url.Url>
|
828
|
+
T0,
|
829
|
+
number,
|
830
|
+
string[],
|
831
|
+
string[],
|
832
|
+
string[],
|
833
|
+
_0x1.option.Option<url.Url>
|
937
834
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
938
835
|
coin.TreasuryCap<T0>,
|
939
836
|
coin.DenyCap<T0>,
|
940
837
|
coin.CoinMetadata<T0>
|
941
838
|
]>>;
|
942
839
|
function createRegulatedCurrencyV2<T0 = any>(client: SuiClient, args: [
|
943
|
-
T0
|
944
|
-
number
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
_0x1.option.Option<url.Url
|
949
|
-
boolean
|
840
|
+
T0,
|
841
|
+
number,
|
842
|
+
string[],
|
843
|
+
string[],
|
844
|
+
string[],
|
845
|
+
_0x1.option.Option<url.Url>,
|
846
|
+
boolean
|
950
847
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
951
848
|
coin.TreasuryCap<T0>,
|
952
849
|
coin.DenyCapV2<T0>,
|
953
850
|
coin.CoinMetadata<T0>
|
954
851
|
]>>;
|
955
|
-
function denyListAdd<T0 = any>(client: SuiClient, args: [
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
960
|
-
function
|
961
|
-
|
962
|
-
|
963
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
964
|
-
function
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
969
|
-
function
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
974
|
-
function
|
975
|
-
|
976
|
-
|
977
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
978
|
-
function
|
979
|
-
|
980
|
-
|
981
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
982
|
-
function
|
983
|
-
|
984
|
-
|
985
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
986
|
-
function
|
987
|
-
|
988
|
-
|
989
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
990
|
-
function
|
991
|
-
function
|
992
|
-
function
|
993
|
-
string | TransactionObjectArgument | TransactionArgument,
|
994
|
-
string | TransactionObjectArgument | TransactionArgument,
|
995
|
-
string | TransactionArgument
|
996
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
997
|
-
function destroyZero<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
998
|
-
function divideIntoN<T0 = any>(client: SuiClient, args: [
|
999
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1000
|
-
bigint | TransactionArgument
|
1001
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>[]]>>;
|
1002
|
-
function fromBalance<T0 = any>(client: SuiClient, args: [balance.Balance<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
1003
|
-
function getDecimals<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
1004
|
-
function getDescription<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1005
|
-
function getIconUrl<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<url.Url>]>>;
|
1006
|
-
function getName<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1007
|
-
function getSymbol<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
1008
|
-
function intoBalance<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
1009
|
-
function join<T0 = any>(client: SuiClient, args: [
|
1010
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1011
|
-
coin.Coin<T0> | TransactionArgument
|
1012
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1013
|
-
function migrateRegulatedCurrencyToV2<T0 = any>(client: SuiClient, args: [
|
1014
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1015
|
-
coin.DenyCap<T0> | TransactionArgument,
|
1016
|
-
boolean | TransactionArgument
|
1017
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
1018
|
-
function mint<T0 = any>(client: SuiClient, args: [
|
1019
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1020
|
-
bigint | TransactionArgument
|
1021
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
1022
|
-
function mintAndTransfer<T0 = any>(client: SuiClient, args: [
|
1023
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1024
|
-
bigint | TransactionArgument,
|
1025
|
-
string | TransactionArgument
|
1026
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1027
|
-
function mintBalance<T0 = any>(client: SuiClient, args: [
|
1028
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1029
|
-
bigint | TransactionArgument
|
1030
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
1031
|
-
function put<T0 = any>(client: SuiClient, args: [
|
1032
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1033
|
-
coin.Coin<T0> | TransactionArgument
|
1034
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1035
|
-
function split<T0 = any>(client: SuiClient, args: [
|
1036
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1037
|
-
bigint | TransactionArgument
|
1038
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
1039
|
-
function supply<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1040
|
-
function supplyImmut<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1041
|
-
function supplyMut<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1042
|
-
function take<T0 = any>(client: SuiClient, args: [
|
1043
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1044
|
-
bigint | TransactionArgument
|
1045
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
1046
|
-
function totalSupply<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
1047
|
-
function treasuryIntoSupply<T0 = any>(client: SuiClient, args: [coin.TreasuryCap<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
1048
|
-
function updateDescription<T0 = any>(client: SuiClient, args: [
|
1049
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1050
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1051
|
-
string | TransactionArgument
|
1052
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1053
|
-
function updateIconUrl<T0 = any>(client: SuiClient, args: [
|
1054
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1055
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1056
|
-
_0x1.ascii.String | TransactionArgument
|
1057
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1058
|
-
function updateName<T0 = any>(client: SuiClient, args: [
|
1059
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1060
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1061
|
-
string | TransactionArgument
|
1062
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1063
|
-
function updateSymbol<T0 = any>(client: SuiClient, args: [
|
1064
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1065
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1066
|
-
_0x1.ascii.String | TransactionArgument
|
1067
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1068
|
-
function value<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
852
|
+
function denyListAdd<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
853
|
+
function denyListContains<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
854
|
+
function denyListRemove<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
855
|
+
function denyListV2Add<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
856
|
+
function denyListV2ContainsCurrentEpoch<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
857
|
+
function denyListV2ContainsNextEpoch<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
858
|
+
function denyListV2DisableGlobalPause<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
859
|
+
function denyListV2EnableGlobalPause<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
860
|
+
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
861
|
+
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
862
|
+
function denyListV2Remove<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
863
|
+
function destroyZero<T0 = any>(client: SuiClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
864
|
+
function divideIntoN<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>[]]>>;
|
865
|
+
function fromBalance<T0 = any>(client: SuiClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
866
|
+
function getDecimals<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
867
|
+
function getDescription<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
868
|
+
function getIconUrl<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<url.Url>]>>;
|
869
|
+
function getName<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
870
|
+
function getSymbol<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
871
|
+
function intoBalance<T0 = any>(client: SuiClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
872
|
+
function join<T0 = any>(client: SuiClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
873
|
+
function migrateRegulatedCurrencyToV2<T0 = any>(client: SuiClient, args: [string, coin.DenyCap<T0>, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
874
|
+
function mint<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
875
|
+
function mintAndTransfer<T0 = any>(client: SuiClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
876
|
+
function mintBalance<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
877
|
+
function put<T0 = any>(client: SuiClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
878
|
+
function split<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
879
|
+
function supply<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
880
|
+
function supplyImmut<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
881
|
+
function supplyMut<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
882
|
+
function take<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
883
|
+
function totalSupply<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
884
|
+
function treasuryIntoSupply<T0 = any>(client: SuiClient, args: [coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
885
|
+
function updateDescription<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
886
|
+
function updateIconUrl<T0 = any>(client: SuiClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
887
|
+
function updateName<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
888
|
+
function updateSymbol<T0 = any>(client: SuiClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
889
|
+
function value<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
1069
890
|
function zero<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
1070
891
|
}
|
1071
892
|
interface BurnPayload<T0 = any> extends TypedFunctionPayload<[string, coin.Coin<T0>]> {
|
@@ -1099,7 +920,7 @@ export declare namespace coin {
|
|
1099
920
|
}
|
1100
921
|
export declare namespace config {
|
1101
922
|
interface Config<T0> {
|
1102
|
-
id:
|
923
|
+
id: object$.UID;
|
1103
924
|
}
|
1104
925
|
namespace Config {
|
1105
926
|
const TYPE_QNAME = "0x2::config::Config";
|
@@ -1166,8 +987,8 @@ export declare namespace config {
|
|
1166
987
|
TypeDescriptor<T1> | string,
|
1167
988
|
TypeDescriptor<T2> | string
|
1168
989
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
1169
|
-
function
|
1170
|
-
function readSetting<T0 = any, T1 = any>(tx: Transaction, args: [
|
990
|
+
function new$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
991
|
+
function readSetting<T0 = any, T1 = any>(tx: Transaction, args: [object$.ID | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
1171
992
|
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(tx: Transaction, args: [
|
1172
993
|
string | TransactionObjectArgument | TransactionArgument,
|
1173
994
|
T1 | TransactionArgument
|
@@ -1196,65 +1017,40 @@ export declare namespace config {
|
|
1196
1017
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
1197
1018
|
}
|
1198
1019
|
namespace view {
|
1199
|
-
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1200
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1201
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1202
|
-
T1 | TransactionArgument,
|
1203
|
-
T2 | TransactionArgument
|
1204
|
-
], typeArguments: [
|
1020
|
+
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, string, T1, T2], typeArguments: [
|
1205
1021
|
TypeDescriptor<T0> | string,
|
1206
1022
|
TypeDescriptor<T1> | string,
|
1207
1023
|
TypeDescriptor<T2> | string
|
1208
1024
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
1209
|
-
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1210
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1211
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1212
|
-
T1 | TransactionArgument
|
1213
|
-
], typeArguments: [
|
1025
|
+
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, string, T1], typeArguments: [
|
1214
1026
|
TypeDescriptor<T0> | string,
|
1215
1027
|
TypeDescriptor<T1> | string,
|
1216
1028
|
TypeDescriptor<T2> | string
|
1217
1029
|
]): Promise<TypedDevInspectResults<[string]>>;
|
1218
|
-
function existsWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1219
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1220
|
-
T1 | TransactionArgument
|
1221
|
-
], typeArguments: [
|
1030
|
+
function existsWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, T1], typeArguments: [
|
1222
1031
|
TypeDescriptor<T0> | string,
|
1223
1032
|
TypeDescriptor<T1> | string,
|
1224
1033
|
TypeDescriptor<T2> | string
|
1225
1034
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1226
|
-
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1227
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1228
|
-
T1 | TransactionArgument
|
1229
|
-
], typeArguments: [
|
1035
|
+
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, T1], typeArguments: [
|
1230
1036
|
TypeDescriptor<T0> | string,
|
1231
1037
|
TypeDescriptor<T1> | string,
|
1232
1038
|
TypeDescriptor<T2> | string
|
1233
1039
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1234
|
-
function
|
1235
|
-
function readSetting<T0 = any, T1 = any>(client: SuiClient, args: [
|
1236
|
-
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1237
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1238
|
-
T1 | TransactionArgument
|
1239
|
-
], typeArguments: [
|
1040
|
+
function new$<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[config.Config<T0>]>>;
|
1041
|
+
function readSetting<T0 = any, T1 = any>(client: SuiClient, args: [object$.ID, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
1042
|
+
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, T1], typeArguments: [
|
1240
1043
|
TypeDescriptor<T0> | string,
|
1241
1044
|
TypeDescriptor<T1> | string,
|
1242
1045
|
TypeDescriptor<T2> | string
|
1243
1046
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
1244
|
-
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
1245
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1246
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1247
|
-
T1 | TransactionArgument
|
1248
|
-
], typeArguments: [
|
1047
|
+
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, string, T1], typeArguments: [
|
1249
1048
|
TypeDescriptor<T0> | string,
|
1250
1049
|
TypeDescriptor<T1> | string,
|
1251
1050
|
TypeDescriptor<T2> | string
|
1252
1051
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
1253
|
-
function share<T0 = any>(client: SuiClient, args: [config.Config<T0>
|
1254
|
-
function transfer<T0 = any>(client: SuiClient, args: [
|
1255
|
-
config.Config<T0> | TransactionArgument,
|
1256
|
-
string | TransactionArgument
|
1257
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1052
|
+
function share<T0 = any>(client: SuiClient, args: [config.Config<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1053
|
+
function transfer<T0 = any>(client: SuiClient, args: [config.Config<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1258
1054
|
}
|
1259
1055
|
}
|
1260
1056
|
export declare class deny_list extends SuiBaseProcessor {
|
@@ -1298,7 +1094,7 @@ export declare namespace deny_list {
|
|
1298
1094
|
function type(): TypeDescriptor<ConfigWriteCap>;
|
1299
1095
|
}
|
1300
1096
|
interface DenyList {
|
1301
|
-
id:
|
1097
|
+
id: object$.UID;
|
1302
1098
|
lists: bag.Bag;
|
1303
1099
|
}
|
1304
1100
|
namespace DenyList {
|
@@ -1318,7 +1114,7 @@ export declare namespace deny_list {
|
|
1318
1114
|
}
|
1319
1115
|
interface PerTypeConfigCreated {
|
1320
1116
|
key: deny_list.ConfigKey;
|
1321
|
-
config_id:
|
1117
|
+
config_id: object$.ID;
|
1322
1118
|
}
|
1323
1119
|
namespace PerTypeConfigCreated {
|
1324
1120
|
const TYPE_QNAME = "0x2::deny_list::PerTypeConfigCreated";
|
@@ -1329,7 +1125,7 @@ export declare namespace deny_list {
|
|
1329
1125
|
type_arguments: [];
|
1330
1126
|
}
|
1331
1127
|
interface PerTypeList {
|
1332
|
-
id:
|
1128
|
+
id: object$.UID;
|
1333
1129
|
denied_count: table.Table<string, bigint>;
|
1334
1130
|
denied_addresses: table.Table<number[], vec_set.VecSet<string>>;
|
1335
1131
|
}
|
@@ -1462,73 +1258,18 @@ export declare namespace deny_list {
|
|
1462
1258
|
];
|
1463
1259
|
}
|
1464
1260
|
namespace view {
|
1465
|
-
function migrateV1ToV2(client: SuiClient, args: [
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1470
|
-
function
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1476
|
-
function
|
1477
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1478
|
-
bigint | TransactionArgument,
|
1479
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1480
|
-
string | TransactionArgument
|
1481
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1482
|
-
function v1Remove(client: SuiClient, args: [
|
1483
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1484
|
-
bigint | TransactionArgument,
|
1485
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1486
|
-
string | TransactionArgument
|
1487
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1488
|
-
function v2Add(client: SuiClient, args: [
|
1489
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1490
|
-
bigint | TransactionArgument,
|
1491
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1492
|
-
string | TransactionArgument
|
1493
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1494
|
-
function v2ContainsCurrentEpoch(client: SuiClient, args: [
|
1495
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1496
|
-
bigint | TransactionArgument,
|
1497
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1498
|
-
string | TransactionArgument
|
1499
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1500
|
-
function v2ContainsNextEpoch(client: SuiClient, args: [
|
1501
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1502
|
-
bigint | TransactionArgument,
|
1503
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1504
|
-
string | TransactionArgument
|
1505
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1506
|
-
function v2DisableGlobalPause(client: SuiClient, args: [
|
1507
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1508
|
-
bigint | TransactionArgument,
|
1509
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
1510
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1511
|
-
function v2EnableGlobalPause(client: SuiClient, args: [
|
1512
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1513
|
-
bigint | TransactionArgument,
|
1514
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
1515
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1516
|
-
function v2IsGlobalPauseEnabledCurrentEpoch(client: SuiClient, args: [
|
1517
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1518
|
-
bigint | TransactionArgument,
|
1519
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
1520
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1521
|
-
function v2IsGlobalPauseEnabledNextEpoch(client: SuiClient, args: [
|
1522
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1523
|
-
bigint | TransactionArgument,
|
1524
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
1525
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1526
|
-
function v2Remove(client: SuiClient, args: [
|
1527
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1528
|
-
bigint | TransactionArgument,
|
1529
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1530
|
-
string | TransactionArgument
|
1531
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
1261
|
+
function migrateV1ToV2(client: SuiClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
1262
|
+
function v1Add(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
1263
|
+
function v1Contains(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1264
|
+
function v1Remove(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
1265
|
+
function v2Add(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
1266
|
+
function v2ContainsCurrentEpoch(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1267
|
+
function v2ContainsNextEpoch(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1268
|
+
function v2DisableGlobalPause(client: SuiClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
1269
|
+
function v2EnableGlobalPause(client: SuiClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
1270
|
+
function v2IsGlobalPauseEnabledCurrentEpoch(client: SuiClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
1271
|
+
function v2IsGlobalPauseEnabledNextEpoch(client: SuiClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
1272
|
+
function v2Remove(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
1532
1273
|
}
|
1533
1274
|
}
|
1534
1275
|
export declare class display extends SuiBaseProcessor {
|
@@ -1546,7 +1287,7 @@ export declare class display extends SuiBaseProcessor {
|
|
1546
1287
|
}
|
1547
1288
|
export declare namespace display {
|
1548
1289
|
interface Display<T0> {
|
1549
|
-
id:
|
1290
|
+
id: object$.UID;
|
1550
1291
|
fields: vec_map.VecMap<string, string>;
|
1551
1292
|
version: number;
|
1552
1293
|
}
|
@@ -1555,7 +1296,7 @@ export declare namespace display {
|
|
1555
1296
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Display<T0>>;
|
1556
1297
|
}
|
1557
1298
|
interface DisplayCreated<T0> {
|
1558
|
-
id:
|
1299
|
+
id: object$.ID;
|
1559
1300
|
}
|
1560
1301
|
namespace DisplayCreated {
|
1561
1302
|
const TYPE_QNAME = "0x2::display::DisplayCreated";
|
@@ -1566,7 +1307,7 @@ export declare namespace display {
|
|
1566
1307
|
type_arguments: [string];
|
1567
1308
|
}
|
1568
1309
|
interface VersionUpdated<T0> {
|
1569
|
-
id:
|
1310
|
+
id: object$.ID;
|
1570
1311
|
version: number;
|
1571
1312
|
fields: vec_map.VecMap<string, string>;
|
1572
1313
|
}
|
@@ -1609,7 +1350,7 @@ export declare namespace display {
|
|
1609
1350
|
];
|
1610
1351
|
function fields<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
1611
1352
|
function isAuthorized<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
1612
|
-
function
|
1353
|
+
function new$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
1613
1354
|
function newWithFields<T0 = any>(tx: Transaction, args: [
|
1614
1355
|
string | TransactionObjectArgument | TransactionArgument,
|
1615
1356
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
@@ -1627,36 +1368,17 @@ export declare namespace display {
|
|
1627
1368
|
function version<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
1628
1369
|
}
|
1629
1370
|
namespace view {
|
1630
|
-
function add<T0 = any>(client: SuiClient, args: [
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1635
|
-
function
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1640
|
-
function
|
1641
|
-
function edit<T0 = any>(client: SuiClient, args: [
|
1642
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1643
|
-
string | TransactionArgument,
|
1644
|
-
string | TransactionArgument
|
1645
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1646
|
-
function fields<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1647
|
-
function isAuthorized<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1648
|
-
function new_<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
1649
|
-
function newWithFields<T0 = any>(client: SuiClient, args: [
|
1650
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1651
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1652
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
1653
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
1654
|
-
function remove<T0 = any>(client: SuiClient, args: [
|
1655
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1656
|
-
string | TransactionArgument
|
1657
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1658
|
-
function updateVersion<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1659
|
-
function version<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
1371
|
+
function add<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1372
|
+
function addMultiple<T0 = any>(client: SuiClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1373
|
+
function createAndKeep<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1374
|
+
function edit<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1375
|
+
function fields<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1376
|
+
function isAuthorized<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1377
|
+
function new$<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
1378
|
+
function newWithFields<T0 = any>(client: SuiClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
1379
|
+
function remove<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1380
|
+
function updateVersion<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1381
|
+
function version<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
1660
1382
|
}
|
1661
1383
|
interface AddPayload<T0 = any> extends TypedFunctionPayload<[string, string, string]> {
|
1662
1384
|
arguments_decoded: [string, string, string];
|
@@ -1685,7 +1407,7 @@ export declare namespace display {
|
|
1685
1407
|
}
|
1686
1408
|
export declare namespace dynamic_field {
|
1687
1409
|
interface Field<T0, T1> {
|
1688
|
-
id:
|
1410
|
+
id: object$.UID;
|
1689
1411
|
name: T0;
|
1690
1412
|
value: T1;
|
1691
1413
|
}
|
@@ -1750,56 +1472,22 @@ export declare namespace dynamic_field {
|
|
1750
1472
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
1751
1473
|
}
|
1752
1474
|
namespace view {
|
1753
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
function
|
1759
|
-
function
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
function
|
1764
|
-
|
1765
|
-
|
1766
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
1767
|
-
function
|
1768
|
-
|
1769
|
-
string | TransactionArgument
|
1770
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1771
|
-
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [
|
1772
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1773
|
-
T0 | TransactionArgument
|
1774
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1775
|
-
function exists_<T0 = any>(client: SuiClient, args: [
|
1776
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1777
|
-
T0 | TransactionArgument
|
1778
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1779
|
-
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
1780
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1781
|
-
T0 | TransactionArgument
|
1782
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1783
|
-
function fieldInfo<T0 = any>(client: SuiClient, args: [
|
1784
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1785
|
-
T0 | TransactionArgument
|
1786
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
1787
|
-
function fieldInfoMut<T0 = any>(client: SuiClient, args: [
|
1788
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1789
|
-
T0 | TransactionArgument
|
1790
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
1791
|
-
function hasChildObject(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
1792
|
-
function hasChildObjectWithTy<T0 = any>(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1793
|
-
function hashTypeAndKey<T0 = any>(client: SuiClient, args: [string | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1794
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
1795
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1796
|
-
T0 | TransactionArgument
|
1797
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1798
|
-
function removeChildObject<T0 = any>(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
1799
|
-
function removeIfExists<T0 = any, T1 = any>(client: SuiClient, args: [
|
1800
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1801
|
-
T0 | TransactionArgument
|
1802
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
1475
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
1476
|
+
function addChildObject<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
1477
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1478
|
+
function borrowChildObject<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1479
|
+
function borrowChildObjectMut<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1480
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1481
|
+
function exists_<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1482
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1483
|
+
function fieldInfo<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
1484
|
+
function fieldInfoMut<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
1485
|
+
function hasChildObject(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1486
|
+
function hasChildObjectWithTy<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1487
|
+
function hashTypeAndKey<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1488
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1489
|
+
function removeChildObject<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
1490
|
+
function removeIfExists<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
1803
1491
|
}
|
1804
1492
|
}
|
1805
1493
|
export declare class dynamic_object_field extends SuiBaseProcessor {
|
@@ -1881,56 +1569,18 @@ export declare namespace dynamic_object_field {
|
|
1881
1569
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
1882
1570
|
}
|
1883
1571
|
namespace view {
|
1884
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
1885
|
-
|
1886
|
-
|
1887
|
-
|
1888
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
1889
|
-
function
|
1890
|
-
|
1891
|
-
|
1892
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1893
|
-
function
|
1894
|
-
|
1895
|
-
|
1896
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1897
|
-
function exists_<T0 = any>(client: SuiClient, args: [
|
1898
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1899
|
-
T0 | TransactionArgument
|
1900
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1901
|
-
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
1902
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1903
|
-
T0 | TransactionArgument
|
1904
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1905
|
-
function id<T0 = any>(client: SuiClient, args: [
|
1906
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1907
|
-
T0 | TransactionArgument
|
1908
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object_.ID>]>>;
|
1909
|
-
function internalAdd<T0 = any, T1 = any>(client: SuiClient, args: [
|
1910
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1911
|
-
T0 | TransactionArgument,
|
1912
|
-
T1 | TransactionArgument
|
1913
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
1914
|
-
function internalBorrow<T0 = any, T1 = any>(client: SuiClient, args: [
|
1915
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1916
|
-
T0 | TransactionArgument
|
1917
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1918
|
-
function internalBorrowMut<T0 = any, T1 = any>(client: SuiClient, args: [
|
1919
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1920
|
-
T0 | TransactionArgument
|
1921
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1922
|
-
function internalExistsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
1923
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1924
|
-
T0 | TransactionArgument
|
1925
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1926
|
-
function internalRemove<T0 = any, T1 = any>(client: SuiClient, args: [
|
1927
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1928
|
-
T0 | TransactionArgument
|
1929
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1930
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
1931
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1932
|
-
T0 | TransactionArgument
|
1933
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1572
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
1573
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1574
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1575
|
+
function exists_<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1576
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1577
|
+
function id<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
1578
|
+
function internalAdd<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
1579
|
+
function internalBorrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1580
|
+
function internalBorrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1581
|
+
function internalExistsWithType<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1582
|
+
function internalRemove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1583
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
1934
1584
|
}
|
1935
1585
|
}
|
1936
1586
|
export declare namespace ecdsa_k1 {
|
@@ -1958,18 +1608,9 @@ export declare namespace ecdsa_k1 {
|
|
1958
1608
|
];
|
1959
1609
|
}
|
1960
1610
|
namespace view {
|
1961
|
-
function decompressPubkey(client: SuiClient, args: [string
|
1962
|
-
function secp256k1Ecrecover(client: SuiClient, args: [
|
1963
|
-
|
1964
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1965
|
-
number | TransactionArgument
|
1966
|
-
]): Promise<TypedDevInspectResults<[number[]]>>;
|
1967
|
-
function secp256k1Verify(client: SuiClient, args: [
|
1968
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1969
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1970
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1971
|
-
number | TransactionArgument
|
1972
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1611
|
+
function decompressPubkey(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
1612
|
+
function secp256k1Ecrecover(client: SuiClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
1613
|
+
function secp256k1Verify(client: SuiClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
1973
1614
|
}
|
1974
1615
|
}
|
1975
1616
|
export declare namespace ecdsa_r1 {
|
@@ -1996,17 +1637,8 @@ export declare namespace ecdsa_r1 {
|
|
1996
1637
|
];
|
1997
1638
|
}
|
1998
1639
|
namespace view {
|
1999
|
-
function secp256r1Ecrecover(client: SuiClient, args: [
|
2000
|
-
|
2001
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2002
|
-
number | TransactionArgument
|
2003
|
-
]): Promise<TypedDevInspectResults<[number[]]>>;
|
2004
|
-
function secp256r1Verify(client: SuiClient, args: [
|
2005
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2006
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2007
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2008
|
-
number | TransactionArgument
|
2009
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1640
|
+
function secp256r1Ecrecover(client: SuiClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
1641
|
+
function secp256r1Verify(client: SuiClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
2010
1642
|
}
|
2011
1643
|
}
|
2012
1644
|
export declare namespace ecvrf {
|
@@ -2024,12 +1656,7 @@ export declare namespace ecvrf {
|
|
2024
1656
|
];
|
2025
1657
|
}
|
2026
1658
|
namespace view {
|
2027
|
-
function ecvrfVerify(client: SuiClient, args: [
|
2028
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2029
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2030
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2031
|
-
string | TransactionObjectArgument | TransactionArgument
|
2032
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1659
|
+
function ecvrfVerify(client: SuiClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2033
1660
|
}
|
2034
1661
|
}
|
2035
1662
|
export declare namespace ed25519 {
|
@@ -2045,11 +1672,7 @@ export declare namespace ed25519 {
|
|
2045
1672
|
];
|
2046
1673
|
}
|
2047
1674
|
namespace view {
|
2048
|
-
function ed25519Verify(client: SuiClient, args: [
|
2049
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2050
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2051
|
-
string | TransactionObjectArgument | TransactionArgument
|
2052
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1675
|
+
function ed25519Verify(client: SuiClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2053
1676
|
}
|
2054
1677
|
}
|
2055
1678
|
export declare namespace event {
|
@@ -2057,7 +1680,7 @@ export declare namespace event {
|
|
2057
1680
|
function emit<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
2058
1681
|
}
|
2059
1682
|
namespace view {
|
2060
|
-
function emit<T0 = any>(client: SuiClient, args: [T0
|
1683
|
+
function emit<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2061
1684
|
}
|
2062
1685
|
}
|
2063
1686
|
export declare class groth16 extends SuiBaseProcessor {
|
@@ -2153,25 +1776,12 @@ export declare namespace groth16 {
|
|
2153
1776
|
namespace view {
|
2154
1777
|
function bls12381(client: SuiClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
2155
1778
|
function bn254(client: SuiClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
2156
|
-
function prepareVerifyingKey(client: SuiClient, args: [
|
2157
|
-
|
2158
|
-
|
2159
|
-
]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
2160
|
-
function
|
2161
|
-
function
|
2162
|
-
function pvkFromBytes(client: SuiClient, args: [
|
2163
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
2164
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
2165
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
2166
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
2167
|
-
]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
2168
|
-
function pvkToBytes(client: SuiClient, args: [groth16.PreparedVerifyingKey | TransactionArgument]): Promise<TypedDevInspectResults<[number[][]]>>;
|
2169
|
-
function verifyGroth16Proof(client: SuiClient, args: [
|
2170
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2171
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2172
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2173
|
-
string | TransactionObjectArgument | TransactionArgument
|
2174
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
1779
|
+
function prepareVerifyingKey(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
1780
|
+
function proofPointsFromBytes(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.ProofPoints]>>;
|
1781
|
+
function publicProofInputsFromBytes(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.PublicProofInputs]>>;
|
1782
|
+
function pvkFromBytes(client: SuiClient, args: [string[], string[], string[], string[]]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
1783
|
+
function pvkToBytes(client: SuiClient, args: [groth16.PreparedVerifyingKey]): Promise<TypedDevInspectResults<[number[][]]>>;
|
1784
|
+
function verifyGroth16Proof(client: SuiClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2175
1785
|
}
|
2176
1786
|
}
|
2177
1787
|
export declare class group_ops extends SuiBaseProcessor {
|
@@ -2280,59 +1890,21 @@ export declare namespace group_ops {
|
|
2280
1890
|
];
|
2281
1891
|
}
|
2282
1892
|
namespace view {
|
2283
|
-
function add<T0 = any>(client: SuiClient, args: [
|
2284
|
-
|
2285
|
-
|
2286
|
-
|
2287
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
2288
|
-
function
|
2289
|
-
function
|
2290
|
-
|
2291
|
-
|
2292
|
-
string | TransactionObjectArgument | TransactionArgument
|
2293
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
2294
|
-
function equal<T0 = any>(client: SuiClient, args: [
|
2295
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2296
|
-
string | TransactionObjectArgument | TransactionArgument
|
2297
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2298
|
-
function fromBytes<T0 = any>(client: SuiClient, args: [
|
2299
|
-
number | TransactionArgument,
|
2300
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2301
|
-
boolean | TransactionArgument
|
2302
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
2303
|
-
function hashTo<T0 = any>(client: SuiClient, args: [
|
2304
|
-
number | TransactionArgument,
|
2305
|
-
string | TransactionObjectArgument | TransactionArgument
|
2306
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
2307
|
-
function mul<T0 = any, T1 = any>(client: SuiClient, args: [
|
2308
|
-
number | TransactionArgument,
|
2309
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2310
|
-
string | TransactionObjectArgument | TransactionArgument
|
2311
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
2312
|
-
function multiScalarMultiplication<T0 = any, T1 = any>(client: SuiClient, args: [
|
2313
|
-
number | TransactionArgument,
|
2314
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2315
|
-
string | TransactionObjectArgument | TransactionArgument
|
2316
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
2317
|
-
function pairing<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
2318
|
-
number | TransactionArgument,
|
2319
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2320
|
-
string | TransactionObjectArgument | TransactionArgument
|
2321
|
-
], typeArguments: [
|
1893
|
+
function add<T0 = any>(client: SuiClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
1894
|
+
function bytes<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
1895
|
+
function div<T0 = any, T1 = any>(client: SuiClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
1896
|
+
function equal<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
1897
|
+
function fromBytes<T0 = any>(client: SuiClient, args: [number, string, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
1898
|
+
function hashTo<T0 = any>(client: SuiClient, args: [number, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
1899
|
+
function mul<T0 = any, T1 = any>(client: SuiClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
1900
|
+
function multiScalarMultiplication<T0 = any, T1 = any>(client: SuiClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
1901
|
+
function pairing<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [number, string, string], typeArguments: [
|
2322
1902
|
TypeDescriptor<T0> | string,
|
2323
1903
|
TypeDescriptor<T1> | string,
|
2324
1904
|
TypeDescriptor<T2> | string
|
2325
1905
|
]): Promise<TypedDevInspectResults<[group_ops.Element<T2>]>>;
|
2326
|
-
function setAsPrefix(client: SuiClient, args: [
|
2327
|
-
|
2328
|
-
boolean | TransactionArgument,
|
2329
|
-
string | TransactionObjectArgument | TransactionArgument
|
2330
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
2331
|
-
function sub<T0 = any>(client: SuiClient, args: [
|
2332
|
-
number | TransactionArgument,
|
2333
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2334
|
-
string | TransactionObjectArgument | TransactionArgument
|
2335
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
1906
|
+
function setAsPrefix(client: SuiClient, args: [bigint, boolean, string]): Promise<TypedDevInspectResults<[]>>;
|
1907
|
+
function sub<T0 = any>(client: SuiClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
2336
1908
|
}
|
2337
1909
|
}
|
2338
1910
|
export declare namespace hash {
|
@@ -2341,8 +1913,8 @@ export declare namespace hash {
|
|
2341
1913
|
function keccak256(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
2342
1914
|
}
|
2343
1915
|
namespace view {
|
2344
|
-
function blake2b256(client: SuiClient, args: [string
|
2345
|
-
function keccak256(client: SuiClient, args: [string
|
1916
|
+
function blake2b256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
1917
|
+
function keccak256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
2346
1918
|
}
|
2347
1919
|
}
|
2348
1920
|
export declare namespace hex {
|
@@ -2351,8 +1923,8 @@ export declare namespace hex {
|
|
2351
1923
|
function encode(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
2352
1924
|
}
|
2353
1925
|
namespace view {
|
2354
|
-
function decode(client: SuiClient, args: [
|
2355
|
-
function encode(client: SuiClient, args: [
|
1926
|
+
function decode(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
1927
|
+
function encode(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
2356
1928
|
}
|
2357
1929
|
}
|
2358
1930
|
export declare namespace hmac {
|
@@ -2363,10 +1935,7 @@ export declare namespace hmac {
|
|
2363
1935
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2364
1936
|
}
|
2365
1937
|
namespace view {
|
2366
|
-
function hmacSha3256(client: SuiClient, args: [
|
2367
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2368
|
-
string | TransactionObjectArgument | TransactionArgument
|
2369
|
-
]): Promise<TypedDevInspectResults<[number[]]>>;
|
1938
|
+
function hmacSha3256(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[number[]]>>;
|
2370
1939
|
}
|
2371
1940
|
}
|
2372
1941
|
export declare class kiosk extends SuiBaseProcessor {
|
@@ -2383,15 +1952,15 @@ export declare class kiosk extends SuiBaseProcessor {
|
|
2383
1952
|
}
|
2384
1953
|
export declare namespace kiosk {
|
2385
1954
|
interface Borrow {
|
2386
|
-
kiosk_id:
|
2387
|
-
item_id:
|
1955
|
+
kiosk_id: object$.ID;
|
1956
|
+
item_id: object$.ID;
|
2388
1957
|
}
|
2389
1958
|
namespace Borrow {
|
2390
1959
|
const TYPE_QNAME = "0x2::kiosk::Borrow";
|
2391
1960
|
function type(): TypeDescriptor<Borrow>;
|
2392
1961
|
}
|
2393
1962
|
interface Item {
|
2394
|
-
id:
|
1963
|
+
id: object$.ID;
|
2395
1964
|
}
|
2396
1965
|
namespace Item {
|
2397
1966
|
const TYPE_QNAME = "0x2::kiosk::Item";
|
@@ -2402,8 +1971,8 @@ export declare namespace kiosk {
|
|
2402
1971
|
type_arguments: [];
|
2403
1972
|
}
|
2404
1973
|
interface ItemDelisted<T0> {
|
2405
|
-
kiosk:
|
2406
|
-
id:
|
1974
|
+
kiosk: object$.ID;
|
1975
|
+
id: object$.ID;
|
2407
1976
|
}
|
2408
1977
|
namespace ItemDelisted {
|
2409
1978
|
const TYPE_QNAME = "0x2::kiosk::ItemDelisted";
|
@@ -2414,8 +1983,8 @@ export declare namespace kiosk {
|
|
2414
1983
|
type_arguments: [string];
|
2415
1984
|
}
|
2416
1985
|
interface ItemListed<T0> {
|
2417
|
-
kiosk:
|
2418
|
-
id:
|
1986
|
+
kiosk: object$.ID;
|
1987
|
+
id: object$.ID;
|
2419
1988
|
price: bigint;
|
2420
1989
|
}
|
2421
1990
|
namespace ItemListed {
|
@@ -2427,8 +1996,8 @@ export declare namespace kiosk {
|
|
2427
1996
|
type_arguments: [string];
|
2428
1997
|
}
|
2429
1998
|
interface ItemPurchased<T0> {
|
2430
|
-
kiosk:
|
2431
|
-
id:
|
1999
|
+
kiosk: object$.ID;
|
2000
|
+
id: object$.ID;
|
2432
2001
|
price: bigint;
|
2433
2002
|
}
|
2434
2003
|
namespace ItemPurchased {
|
@@ -2440,7 +2009,7 @@ export declare namespace kiosk {
|
|
2440
2009
|
type_arguments: [string];
|
2441
2010
|
}
|
2442
2011
|
interface Kiosk {
|
2443
|
-
id:
|
2012
|
+
id: object$.UID;
|
2444
2013
|
profits: balance.Balance<sui.SUI>;
|
2445
2014
|
owner: string;
|
2446
2015
|
item_count: number;
|
@@ -2451,15 +2020,15 @@ export declare namespace kiosk {
|
|
2451
2020
|
function type(): TypeDescriptor<Kiosk>;
|
2452
2021
|
}
|
2453
2022
|
interface KioskOwnerCap {
|
2454
|
-
id:
|
2455
|
-
for:
|
2023
|
+
id: object$.UID;
|
2024
|
+
for: object$.ID;
|
2456
2025
|
}
|
2457
2026
|
namespace KioskOwnerCap {
|
2458
2027
|
const TYPE_QNAME = "0x2::kiosk::KioskOwnerCap";
|
2459
2028
|
function type(): TypeDescriptor<KioskOwnerCap>;
|
2460
2029
|
}
|
2461
2030
|
interface Listing {
|
2462
|
-
id:
|
2031
|
+
id: object$.ID;
|
2463
2032
|
is_exclusive: boolean;
|
2464
2033
|
}
|
2465
2034
|
namespace Listing {
|
@@ -2471,7 +2040,7 @@ export declare namespace kiosk {
|
|
2471
2040
|
type_arguments: [];
|
2472
2041
|
}
|
2473
2042
|
interface Lock {
|
2474
|
-
id:
|
2043
|
+
id: object$.ID;
|
2475
2044
|
}
|
2476
2045
|
namespace Lock {
|
2477
2046
|
const TYPE_QNAME = "0x2::kiosk::Lock";
|
@@ -2482,9 +2051,9 @@ export declare namespace kiosk {
|
|
2482
2051
|
type_arguments: [];
|
2483
2052
|
}
|
2484
2053
|
interface PurchaseCap<T0> {
|
2485
|
-
id:
|
2486
|
-
kiosk_id:
|
2487
|
-
item_id:
|
2054
|
+
id: object$.UID;
|
2055
|
+
kiosk_id: object$.ID;
|
2056
|
+
item_id: object$.ID;
|
2488
2057
|
min_price: bigint;
|
2489
2058
|
}
|
2490
2059
|
namespace PurchaseCap {
|
@@ -2495,7 +2064,7 @@ export declare namespace kiosk {
|
|
2495
2064
|
function borrow<T0 = any>(tx: Transaction, args: [
|
2496
2065
|
string | TransactionObjectArgument | TransactionArgument,
|
2497
2066
|
string | TransactionObjectArgument | TransactionArgument,
|
2498
|
-
|
2067
|
+
object$.ID | TransactionArgument
|
2499
2068
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2500
2069
|
TransactionArgument,
|
2501
2070
|
TransactionArgument,
|
@@ -2504,7 +2073,7 @@ export declare namespace kiosk {
|
|
2504
2073
|
function borrowMut<T0 = any>(tx: Transaction, args: [
|
2505
2074
|
string | TransactionObjectArgument | TransactionArgument,
|
2506
2075
|
string | TransactionObjectArgument | TransactionArgument,
|
2507
|
-
|
2076
|
+
object$.ID | TransactionArgument
|
2508
2077
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2509
2078
|
TransactionArgument,
|
2510
2079
|
TransactionArgument,
|
@@ -2513,7 +2082,7 @@ export declare namespace kiosk {
|
|
2513
2082
|
function borrowVal<T0 = any>(tx: Transaction, args: [
|
2514
2083
|
string | TransactionObjectArgument | TransactionArgument,
|
2515
2084
|
string | TransactionObjectArgument | TransactionArgument,
|
2516
|
-
|
2085
|
+
object$.ID | TransactionArgument
|
2517
2086
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2518
2087
|
TransactionArgument,
|
2519
2088
|
TransactionArgument,
|
@@ -2523,11 +2092,11 @@ export declare namespace kiosk {
|
|
2523
2092
|
kiosk.Kiosk | TransactionArgument,
|
2524
2093
|
kiosk.KioskOwnerCap | TransactionArgument
|
2525
2094
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2526
|
-
function
|
2095
|
+
function default$(tx: Transaction, args: []): TransactionArgument & [];
|
2527
2096
|
function delist<T0 = any>(tx: Transaction, args: [
|
2528
2097
|
string | TransactionObjectArgument | TransactionArgument,
|
2529
2098
|
string | TransactionObjectArgument | TransactionArgument,
|
2530
|
-
|
2099
|
+
object$.ID | TransactionArgument
|
2531
2100
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2532
2101
|
TransactionArgument,
|
2533
2102
|
TransactionArgument,
|
@@ -2539,30 +2108,30 @@ export declare namespace kiosk {
|
|
2539
2108
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2540
2109
|
function hasItem(tx: Transaction, args: [
|
2541
2110
|
string | TransactionObjectArgument | TransactionArgument,
|
2542
|
-
|
2111
|
+
object$.ID | TransactionArgument
|
2543
2112
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2544
2113
|
function hasItemWithType<T0 = any>(tx: Transaction, args: [
|
2545
2114
|
string | TransactionObjectArgument | TransactionArgument,
|
2546
|
-
|
2115
|
+
object$.ID | TransactionArgument
|
2547
2116
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2548
2117
|
function isListed(tx: Transaction, args: [
|
2549
2118
|
string | TransactionObjectArgument | TransactionArgument,
|
2550
|
-
|
2119
|
+
object$.ID | TransactionArgument
|
2551
2120
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2552
2121
|
function isListedExclusively(tx: Transaction, args: [
|
2553
2122
|
string | TransactionObjectArgument | TransactionArgument,
|
2554
|
-
|
2123
|
+
object$.ID | TransactionArgument
|
2555
2124
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2556
2125
|
function isLocked(tx: Transaction, args: [
|
2557
2126
|
string | TransactionObjectArgument | TransactionArgument,
|
2558
|
-
|
2127
|
+
object$.ID | TransactionArgument
|
2559
2128
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2560
2129
|
function itemCount(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
2561
2130
|
function kioskOwnerCapFor(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
2562
2131
|
function list<T0 = any>(tx: Transaction, args: [
|
2563
2132
|
string | TransactionObjectArgument | TransactionArgument,
|
2564
2133
|
string | TransactionObjectArgument | TransactionArgument,
|
2565
|
-
|
2134
|
+
object$.ID | TransactionArgument,
|
2566
2135
|
bigint | TransactionArgument
|
2567
2136
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2568
2137
|
TransactionArgument,
|
@@ -2573,7 +2142,7 @@ export declare namespace kiosk {
|
|
2573
2142
|
function listWithPurchaseCap<T0 = any>(tx: Transaction, args: [
|
2574
2143
|
string | TransactionObjectArgument | TransactionArgument,
|
2575
2144
|
string | TransactionObjectArgument | TransactionArgument,
|
2576
|
-
|
2145
|
+
object$.ID | TransactionArgument,
|
2577
2146
|
bigint | TransactionArgument
|
2578
2147
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2579
2148
|
TransactionArgument,
|
@@ -2596,7 +2165,7 @@ export declare namespace kiosk {
|
|
2596
2165
|
string | TransactionObjectArgument | TransactionArgument,
|
2597
2166
|
T0 | TransactionArgument
|
2598
2167
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2599
|
-
function
|
2168
|
+
function new$(tx: Transaction, args: []): TransactionArgument & [];
|
2600
2169
|
function owner(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
2601
2170
|
function place<T0 = any>(tx: Transaction, args: [
|
2602
2171
|
string | TransactionObjectArgument | TransactionArgument,
|
@@ -2629,7 +2198,7 @@ export declare namespace kiosk {
|
|
2629
2198
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2630
2199
|
function purchase<T0 = any>(tx: Transaction, args: [
|
2631
2200
|
string | TransactionObjectArgument | TransactionArgument,
|
2632
|
-
|
2201
|
+
object$.ID | TransactionArgument,
|
2633
2202
|
coin.Coin<sui.SUI> | TransactionArgument
|
2634
2203
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2635
2204
|
TransactionArgument,
|
@@ -2686,7 +2255,7 @@ export declare namespace kiosk {
|
|
2686
2255
|
function take<T0 = any>(tx: Transaction, args: [
|
2687
2256
|
string | TransactionObjectArgument | TransactionArgument,
|
2688
2257
|
string | TransactionObjectArgument | TransactionArgument,
|
2689
|
-
|
2258
|
+
object$.ID | TransactionArgument
|
2690
2259
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
2691
2260
|
TransactionArgument,
|
2692
2261
|
TransactionArgument,
|
@@ -2710,153 +2279,46 @@ export declare namespace kiosk {
|
|
2710
2279
|
];
|
2711
2280
|
}
|
2712
2281
|
namespace view {
|
2713
|
-
function borrow<T0 = any>(client: SuiClient, args: [
|
2714
|
-
|
2715
|
-
|
2716
|
-
|
2717
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
2718
|
-
function
|
2719
|
-
|
2720
|
-
|
2721
|
-
|
2722
|
-
|
2723
|
-
function
|
2724
|
-
|
2725
|
-
|
2726
|
-
|
2727
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
2728
|
-
function
|
2729
|
-
|
2730
|
-
|
2731
|
-
]): Promise<TypedDevInspectResults<[
|
2732
|
-
function
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2737
|
-
function
|
2738
|
-
|
2739
|
-
|
2740
|
-
]): Promise<TypedDevInspectResults<[
|
2741
|
-
function
|
2742
|
-
|
2743
|
-
|
2744
|
-
]): Promise<TypedDevInspectResults<[
|
2745
|
-
function
|
2746
|
-
|
2747
|
-
|
2748
|
-
|
2749
|
-
function
|
2750
|
-
|
2751
|
-
|
2752
|
-
]): Promise<TypedDevInspectResults<[
|
2753
|
-
function isListedExclusively(client: SuiClient, args: [
|
2754
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2755
|
-
object_.ID | TransactionArgument
|
2756
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
2757
|
-
function isLocked(client: SuiClient, args: [
|
2758
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2759
|
-
object_.ID | TransactionArgument
|
2760
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
2761
|
-
function itemCount(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number]>>;
|
2762
|
-
function kioskOwnerCapFor(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
2763
|
-
function list<T0 = any>(client: SuiClient, args: [
|
2764
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2765
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2766
|
-
object_.ID | TransactionArgument,
|
2767
|
-
bigint | TransactionArgument
|
2768
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2769
|
-
function listWithPurchaseCap<T0 = any>(client: SuiClient, args: [
|
2770
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2771
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2772
|
-
object_.ID | TransactionArgument,
|
2773
|
-
bigint | TransactionArgument
|
2774
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[kiosk.PurchaseCap<T0>]>>;
|
2775
|
-
function lock<T0 = any>(client: SuiClient, args: [
|
2776
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2777
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2778
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2779
|
-
T0 | TransactionArgument
|
2780
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2781
|
-
function lockInternal<T0 = any>(client: SuiClient, args: [
|
2782
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2783
|
-
T0 | TransactionArgument
|
2784
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2785
|
-
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[kiosk.Kiosk, kiosk.KioskOwnerCap]>>;
|
2786
|
-
function owner(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
2787
|
-
function place<T0 = any>(client: SuiClient, args: [
|
2788
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2789
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2790
|
-
T0 | TransactionArgument
|
2791
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2792
|
-
function placeAndList<T0 = any>(client: SuiClient, args: [
|
2793
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2794
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2795
|
-
T0 | TransactionArgument,
|
2796
|
-
bigint | TransactionArgument
|
2797
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2798
|
-
function placeInternal<T0 = any>(client: SuiClient, args: [
|
2799
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2800
|
-
T0 | TransactionArgument
|
2801
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2802
|
-
function profitsAmount(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
2803
|
-
function profitsMut(client: SuiClient, args: [
|
2804
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2805
|
-
string | TransactionObjectArgument | TransactionArgument
|
2806
|
-
]): Promise<TypedDevInspectResults<[string]>>;
|
2807
|
-
function purchase<T0 = any>(client: SuiClient, args: [
|
2808
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2809
|
-
object_.ID | TransactionArgument,
|
2810
|
-
coin.Coin<sui.SUI> | TransactionArgument
|
2811
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
2812
|
-
function purchaseCapItem<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
2813
|
-
function purchaseCapKiosk<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
2814
|
-
function purchaseCapMinPrice<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2815
|
-
function purchaseWithCap<T0 = any>(client: SuiClient, args: [
|
2816
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2817
|
-
kiosk.PurchaseCap<T0> | TransactionArgument,
|
2818
|
-
coin.Coin<sui.SUI> | TransactionArgument
|
2819
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
2820
|
-
function returnPurchaseCap<T0 = any>(client: SuiClient, args: [
|
2821
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2822
|
-
kiosk.PurchaseCap<T0> | TransactionArgument
|
2823
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2824
|
-
function returnVal<T0 = any>(client: SuiClient, args: [
|
2825
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2826
|
-
T0 | TransactionArgument,
|
2827
|
-
kiosk.Borrow | TransactionArgument
|
2828
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2829
|
-
function setAllowExtensions(client: SuiClient, args: [
|
2830
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2831
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2832
|
-
boolean | TransactionArgument
|
2833
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
2834
|
-
function setOwner(client: SuiClient, args: [
|
2835
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2836
|
-
string | TransactionObjectArgument | TransactionArgument
|
2837
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
2838
|
-
function setOwnerCustom(client: SuiClient, args: [
|
2839
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2840
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2841
|
-
string | TransactionArgument
|
2842
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
2843
|
-
function take<T0 = any>(client: SuiClient, args: [
|
2844
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2845
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2846
|
-
object_.ID | TransactionArgument
|
2847
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
2848
|
-
function uid(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
2849
|
-
function uidMut(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
2850
|
-
function uidMutAsOwner(client: SuiClient, args: [
|
2851
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2852
|
-
string | TransactionObjectArgument | TransactionArgument
|
2853
|
-
]): Promise<TypedDevInspectResults<[string]>>;
|
2854
|
-
function uidMutInternal(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
2855
|
-
function withdraw(client: SuiClient, args: [
|
2856
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2857
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2858
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
2859
|
-
]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
2282
|
+
function borrow<T0 = any>(client: SuiClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2283
|
+
function borrowMut<T0 = any>(client: SuiClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2284
|
+
function borrowVal<T0 = any>(client: SuiClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, kiosk.Borrow]>>;
|
2285
|
+
function closeAndWithdraw(client: SuiClient, args: [kiosk.Kiosk, kiosk.KioskOwnerCap]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
2286
|
+
function delist<T0 = any>(client: SuiClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2287
|
+
function hasAccess(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2288
|
+
function hasItem(client: SuiClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
2289
|
+
function hasItemWithType<T0 = any>(client: SuiClient, args: [string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2290
|
+
function isListed(client: SuiClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
2291
|
+
function isListedExclusively(client: SuiClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
2292
|
+
function isLocked(client: SuiClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
2293
|
+
function itemCount(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
2294
|
+
function kioskOwnerCapFor(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2295
|
+
function list<T0 = any>(client: SuiClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2296
|
+
function listWithPurchaseCap<T0 = any>(client: SuiClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[kiosk.PurchaseCap<T0>]>>;
|
2297
|
+
function lock<T0 = any>(client: SuiClient, args: [string, string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2298
|
+
function lockInternal<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2299
|
+
function new$(client: SuiClient, args: []): Promise<TypedDevInspectResults<[kiosk.Kiosk, kiosk.KioskOwnerCap]>>;
|
2300
|
+
function owner(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2301
|
+
function place<T0 = any>(client: SuiClient, args: [string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2302
|
+
function placeAndList<T0 = any>(client: SuiClient, args: [string, string, T0, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2303
|
+
function placeInternal<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2304
|
+
function profitsAmount(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2305
|
+
function profitsMut(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
2306
|
+
function purchase<T0 = any>(client: SuiClient, args: [string, object$.ID, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
2307
|
+
function purchaseCapItem<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2308
|
+
function purchaseCapKiosk<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2309
|
+
function purchaseCapMinPrice<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2310
|
+
function purchaseWithCap<T0 = any>(client: SuiClient, args: [string, kiosk.PurchaseCap<T0>, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
2311
|
+
function returnPurchaseCap<T0 = any>(client: SuiClient, args: [string, kiosk.PurchaseCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2312
|
+
function returnVal<T0 = any>(client: SuiClient, args: [string, T0, kiosk.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2313
|
+
function setAllowExtensions(client: SuiClient, args: [string, string, boolean]): Promise<TypedDevInspectResults<[]>>;
|
2314
|
+
function setOwner(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[]>>;
|
2315
|
+
function setOwnerCustom(client: SuiClient, args: [string, string, string]): Promise<TypedDevInspectResults<[]>>;
|
2316
|
+
function take<T0 = any>(client: SuiClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
2317
|
+
function uid(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2318
|
+
function uidMut(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2319
|
+
function uidMutAsOwner(client: SuiClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
2320
|
+
function uidMutInternal(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2321
|
+
function withdraw(client: SuiClient, args: [string, string, _0x1.option.Option<bigint>]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
2860
2322
|
}
|
2861
2323
|
interface DefaultPayload extends TypedFunctionPayload<[string]> {
|
2862
2324
|
arguments_decoded: [string];
|
@@ -2950,53 +2412,23 @@ export declare namespace kiosk_extension {
|
|
2950
2412
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
2951
2413
|
}
|
2952
2414
|
namespace view {
|
2953
|
-
function add<T0 = any>(client: SuiClient, args: [
|
2954
|
-
|
2955
|
-
|
2956
|
-
|
2957
|
-
|
2958
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2959
|
-
function
|
2960
|
-
function
|
2961
|
-
function
|
2962
|
-
|
2963
|
-
|
2964
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2965
|
-
function enable<T0 = any>(client: SuiClient, args: [
|
2966
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2967
|
-
string | TransactionObjectArgument | TransactionArgument
|
2968
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2969
|
-
function isEnabled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2970
|
-
function isInstalled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2971
|
-
function lock<T0 = any, T1 = any>(client: SuiClient, args: [
|
2972
|
-
T0 | TransactionArgument,
|
2973
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2974
|
-
T1 | TransactionArgument,
|
2975
|
-
string | TransactionObjectArgument | TransactionArgument
|
2976
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2977
|
-
function place<T0 = any, T1 = any>(client: SuiClient, args: [
|
2978
|
-
T0 | TransactionArgument,
|
2979
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2980
|
-
T1 | TransactionArgument,
|
2981
|
-
string | TransactionObjectArgument | TransactionArgument
|
2982
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2983
|
-
function remove<T0 = any>(client: SuiClient, args: [
|
2984
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2985
|
-
string | TransactionObjectArgument | TransactionArgument
|
2986
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2987
|
-
function storage<T0 = any>(client: SuiClient, args: [
|
2988
|
-
T0 | TransactionArgument,
|
2989
|
-
string | TransactionObjectArgument | TransactionArgument
|
2990
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2991
|
-
function storageMut<T0 = any>(client: SuiClient, args: [
|
2992
|
-
T0 | TransactionArgument,
|
2993
|
-
string | TransactionObjectArgument | TransactionArgument
|
2994
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2415
|
+
function add<T0 = any>(client: SuiClient, args: [T0, string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2416
|
+
function canLock<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2417
|
+
function canPlace<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2418
|
+
function disable<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2419
|
+
function enable<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2420
|
+
function isEnabled<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2421
|
+
function isInstalled<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2422
|
+
function lock<T0 = any, T1 = any>(client: SuiClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2423
|
+
function place<T0 = any, T1 = any>(client: SuiClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2424
|
+
function remove<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2425
|
+
function storage<T0 = any>(client: SuiClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2426
|
+
function storageMut<T0 = any>(client: SuiClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2995
2427
|
}
|
2996
2428
|
}
|
2997
2429
|
export declare namespace linked_table {
|
2998
2430
|
interface LinkedTable<T0, T1> {
|
2999
|
-
id:
|
2431
|
+
id: object$.UID;
|
3000
2432
|
size: bigint;
|
3001
2433
|
head: _0x1.option.Option<T0>;
|
3002
2434
|
tail: _0x1.option.Option<T0>;
|
@@ -3033,7 +2465,7 @@ export declare namespace linked_table {
|
|
3033
2465
|
function front<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3034
2466
|
function isEmpty<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3035
2467
|
function length<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3036
|
-
function
|
2468
|
+
function new$<T0 = any, T1 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
3037
2469
|
function next<T0 = any, T1 = any>(tx: Transaction, args: [
|
3038
2470
|
string | TransactionObjectArgument | TransactionArgument,
|
3039
2471
|
T0 | TransactionArgument
|
@@ -3067,50 +2499,24 @@ export declare namespace linked_table {
|
|
3067
2499
|
T0 | TransactionArgument
|
3068
2500
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3069
2501
|
}
|
3070
|
-
namespace view {
|
3071
|
-
function back<T0 = any, T1 = any>(client: SuiClient, args: [string
|
3072
|
-
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [
|
3073
|
-
|
3074
|
-
|
3075
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
3076
|
-
function
|
3077
|
-
|
3078
|
-
|
3079
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
3080
|
-
function
|
3081
|
-
|
3082
|
-
|
3083
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
3084
|
-
function
|
3085
|
-
function
|
3086
|
-
function
|
3087
|
-
function
|
3088
|
-
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3089
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
3090
|
-
function next<T0 = any, T1 = any>(client: SuiClient, args: [
|
3091
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3092
|
-
T0 | TransactionArgument
|
3093
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3094
|
-
function popBack<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
3095
|
-
function popFront<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
3096
|
-
function prev<T0 = any, T1 = any>(client: SuiClient, args: [
|
3097
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3098
|
-
T0 | TransactionArgument
|
3099
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3100
|
-
function pushBack<T0 = any, T1 = any>(client: SuiClient, args: [
|
3101
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3102
|
-
T0 | TransactionArgument,
|
3103
|
-
T1 | TransactionArgument
|
3104
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3105
|
-
function pushFront<T0 = any, T1 = any>(client: SuiClient, args: [
|
3106
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3107
|
-
T0 | TransactionArgument,
|
3108
|
-
T1 | TransactionArgument
|
3109
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3110
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
3111
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3112
|
-
T0 | TransactionArgument
|
3113
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
2502
|
+
namespace view {
|
2503
|
+
function back<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2504
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2505
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2506
|
+
function contains<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2507
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2508
|
+
function drop<T0 = any, T1 = any>(client: SuiClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2509
|
+
function front<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2510
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2511
|
+
function length<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2512
|
+
function new$<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
2513
|
+
function next<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2514
|
+
function popBack<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
2515
|
+
function popFront<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
2516
|
+
function prev<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2517
|
+
function pushBack<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2518
|
+
function pushFront<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2519
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
3114
2520
|
}
|
3115
2521
|
}
|
3116
2522
|
export declare namespace math {
|
@@ -3124,23 +2530,23 @@ export declare namespace math {
|
|
3124
2530
|
function sqrtU128(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3125
2531
|
}
|
3126
2532
|
namespace view {
|
3127
|
-
function diff(client: SuiClient, args: [bigint
|
3128
|
-
function divideAndRoundUp(client: SuiClient, args: [bigint
|
3129
|
-
function max(client: SuiClient, args: [bigint
|
3130
|
-
function min(client: SuiClient, args: [bigint
|
3131
|
-
function pow(client: SuiClient, args: [bigint
|
3132
|
-
function sqrt(client: SuiClient, args: [bigint
|
3133
|
-
function sqrtU128(client: SuiClient, args: [bigint
|
2533
|
+
function diff(client: SuiClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
2534
|
+
function divideAndRoundUp(client: SuiClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
2535
|
+
function max(client: SuiClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
2536
|
+
function min(client: SuiClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
2537
|
+
function pow(client: SuiClient, args: [bigint, number]): Promise<TypedDevInspectResults<[bigint]>>;
|
2538
|
+
function sqrt(client: SuiClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
2539
|
+
function sqrtU128(client: SuiClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
3134
2540
|
}
|
3135
2541
|
}
|
3136
|
-
export declare namespace
|
2542
|
+
export declare namespace object$ {
|
3137
2543
|
type ID = string;
|
3138
2544
|
namespace ID {
|
3139
2545
|
const TYPE_QNAME = "0x2::object::ID";
|
3140
2546
|
function type(): TypeDescriptor<ID>;
|
3141
2547
|
}
|
3142
2548
|
interface UID {
|
3143
|
-
id:
|
2549
|
+
id: object$.ID;
|
3144
2550
|
}
|
3145
2551
|
namespace UID {
|
3146
2552
|
const TYPE_QNAME = "0x2::object::UID";
|
@@ -3150,7 +2556,7 @@ export declare namespace object_ {
|
|
3150
2556
|
function authenticatorState(tx: Transaction, args: []): TransactionArgument & [];
|
3151
2557
|
function borrowId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3152
2558
|
function clock(tx: Transaction, args: []): TransactionArgument & [];
|
3153
|
-
function
|
2559
|
+
function delete$(tx: Transaction, args: [object$.UID | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3154
2560
|
function id<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3155
2561
|
function idAddress<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3156
2562
|
function idBytes<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
@@ -3158,7 +2564,7 @@ export declare namespace object_ {
|
|
3158
2564
|
function idFromBytes(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3159
2565
|
function idToAddress(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3160
2566
|
function idToBytes(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3161
|
-
function
|
2567
|
+
function new$(tx: Transaction, args: []): TransactionArgument & [];
|
3162
2568
|
function newUidFromHash(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3163
2569
|
function randomnessState(tx: Transaction, args: []): TransactionArgument & [];
|
3164
2570
|
function suiDenyListObjectId(tx: Transaction, args: []): TransactionArgument & [];
|
@@ -3168,30 +2574,30 @@ export declare namespace object_ {
|
|
3168
2574
|
function uidToInner(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3169
2575
|
}
|
3170
2576
|
namespace view {
|
3171
|
-
function authenticatorState(client: SuiClient, args: []): Promise<TypedDevInspectResults<[
|
3172
|
-
function borrowId<T0 = any>(client: SuiClient, args: [string
|
3173
|
-
function clock(client: SuiClient, args: []): Promise<TypedDevInspectResults<[
|
3174
|
-
function
|
3175
|
-
function id<T0 = any>(client: SuiClient, args: [string
|
3176
|
-
function idAddress<T0 = any>(client: SuiClient, args: [string
|
3177
|
-
function idBytes<T0 = any>(client: SuiClient, args: [string
|
3178
|
-
function idFromAddress(client: SuiClient, args: [string
|
3179
|
-
function idFromBytes(client: SuiClient, args: [
|
3180
|
-
function idToAddress(client: SuiClient, args: [string
|
3181
|
-
function idToBytes(client: SuiClient, args: [string
|
3182
|
-
function
|
3183
|
-
function newUidFromHash(client: SuiClient, args: [string
|
3184
|
-
function randomnessState(client: SuiClient, args: []): Promise<TypedDevInspectResults<[
|
3185
|
-
function suiDenyListObjectId(client: SuiClient, args: []): Promise<TypedDevInspectResults<[
|
3186
|
-
function uidAsInner(client: SuiClient, args: [string
|
3187
|
-
function uidToAddress(client: SuiClient, args: [string
|
3188
|
-
function uidToBytes(client: SuiClient, args: [string
|
3189
|
-
function uidToInner(client: SuiClient, args: [string
|
2577
|
+
function authenticatorState(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2578
|
+
function borrowId<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2579
|
+
function clock(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2580
|
+
function delete$(client: SuiClient, args: [object$.UID]): Promise<TypedDevInspectResults<[]>>;
|
2581
|
+
function id<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2582
|
+
function idAddress<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2583
|
+
function idBytes<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
2584
|
+
function idFromAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2585
|
+
function idFromBytes(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2586
|
+
function idToAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2587
|
+
function idToBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
2588
|
+
function new$(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2589
|
+
function newUidFromHash(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2590
|
+
function randomnessState(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2591
|
+
function suiDenyListObjectId(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
2592
|
+
function uidAsInner(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2593
|
+
function uidToAddress(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2594
|
+
function uidToBytes(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
2595
|
+
function uidToInner(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
3190
2596
|
}
|
3191
2597
|
}
|
3192
2598
|
export declare namespace object_bag {
|
3193
2599
|
interface ObjectBag {
|
3194
|
-
id:
|
2600
|
+
id: object$.UID;
|
3195
2601
|
size: bigint;
|
3196
2602
|
}
|
3197
2603
|
namespace ObjectBag {
|
@@ -3227,7 +2633,7 @@ export declare namespace object_bag {
|
|
3227
2633
|
function destroyEmpty(tx: Transaction, args: [object_bag.ObjectBag | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3228
2634
|
function isEmpty(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3229
2635
|
function length(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3230
|
-
function
|
2636
|
+
function new$(tx: Transaction, args: []): TransactionArgument & [];
|
3231
2637
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [
|
3232
2638
|
string | TransactionObjectArgument | TransactionArgument,
|
3233
2639
|
T0 | TransactionArgument
|
@@ -3238,44 +2644,22 @@ export declare namespace object_bag {
|
|
3238
2644
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3239
2645
|
}
|
3240
2646
|
namespace view {
|
3241
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
3242
|
-
|
3243
|
-
|
3244
|
-
|
3245
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3246
|
-
function
|
3247
|
-
|
3248
|
-
|
3249
|
-
|
3250
|
-
function
|
3251
|
-
|
3252
|
-
T0 | TransactionArgument
|
3253
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3254
|
-
function contains<T0 = any>(client: SuiClient, args: [
|
3255
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3256
|
-
T0 | TransactionArgument
|
3257
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3258
|
-
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
3259
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3260
|
-
T0 | TransactionArgument
|
3261
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3262
|
-
function destroyEmpty(client: SuiClient, args: [object_bag.ObjectBag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
3263
|
-
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
3264
|
-
function length(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
3265
|
-
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
3266
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
3267
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3268
|
-
T0 | TransactionArgument
|
3269
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
3270
|
-
function valueId<T0 = any>(client: SuiClient, args: [
|
3271
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3272
|
-
T0 | TransactionArgument
|
3273
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object_.ID>]>>;
|
2647
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2648
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2649
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2650
|
+
function contains<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2651
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2652
|
+
function destroyEmpty(client: SuiClient, args: [object_bag.ObjectBag]): Promise<TypedDevInspectResults<[]>>;
|
2653
|
+
function isEmpty(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2654
|
+
function length(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2655
|
+
function new$(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
2656
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
2657
|
+
function valueId<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
3274
2658
|
}
|
3275
2659
|
}
|
3276
2660
|
export declare namespace object_table {
|
3277
2661
|
interface ObjectTable<T0, T1> {
|
3278
|
-
id:
|
2662
|
+
id: object$.UID;
|
3279
2663
|
size: bigint;
|
3280
2664
|
}
|
3281
2665
|
namespace ObjectTable {
|
@@ -3307,7 +2691,7 @@ export declare namespace object_table {
|
|
3307
2691
|
function destroyEmpty<T0 = any, T1 = any>(tx: Transaction, args: [object_table.ObjectTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3308
2692
|
function isEmpty<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3309
2693
|
function length<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3310
|
-
function
|
2694
|
+
function new$<T0 = any, T1 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
3311
2695
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [
|
3312
2696
|
string | TransactionObjectArgument | TransactionArgument,
|
3313
2697
|
T0 | TransactionArgument
|
@@ -3318,48 +2702,29 @@ export declare namespace object_table {
|
|
3318
2702
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3319
2703
|
}
|
3320
2704
|
namespace view {
|
3321
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
3322
|
-
|
3323
|
-
|
3324
|
-
|
3325
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3326
|
-
function
|
3327
|
-
|
3328
|
-
|
3329
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
3330
|
-
function
|
3331
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3332
|
-
T0 | TransactionArgument
|
3333
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3334
|
-
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
3335
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3336
|
-
T0 | TransactionArgument
|
3337
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3338
|
-
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [object_table.ObjectTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3339
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3340
|
-
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3341
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
3342
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
3343
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3344
|
-
T0 | TransactionArgument
|
3345
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
3346
|
-
function valueId<T0 = any, T1 = any>(client: SuiClient, args: [
|
3347
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3348
|
-
T0 | TransactionArgument
|
3349
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object_.ID>]>>;
|
2705
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2706
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2707
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
2708
|
+
function contains<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2709
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [object_table.ObjectTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
2710
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2711
|
+
function length<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2712
|
+
function new$<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
2713
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
2714
|
+
function valueId<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
3350
2715
|
}
|
3351
2716
|
}
|
3352
|
-
export declare class
|
2717
|
+
export declare class package$ extends SuiBaseProcessor {
|
3353
2718
|
constructor(options: SuiBindOptions);
|
3354
2719
|
static DEFAULT_OPTIONS: SuiBindOptions;
|
3355
|
-
static bind(options?: Partial<SuiBindOptions>):
|
3356
|
-
onEntryMakeImmutable(func: (call:
|
3357
|
-
onEntryOnlyAdditiveUpgrades(func: (call:
|
3358
|
-
onEntryOnlyDepUpgrades(func: (call:
|
2720
|
+
static bind(options?: Partial<SuiBindOptions>): package$;
|
2721
|
+
onEntryMakeImmutable(func: (call: package$.MakeImmutablePayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): package$;
|
2722
|
+
onEntryOnlyAdditiveUpgrades(func: (call: package$.OnlyAdditiveUpgradesPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): package$;
|
2723
|
+
onEntryOnlyDepUpgrades(func: (call: package$.OnlyDepUpgradesPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): package$;
|
3359
2724
|
}
|
3360
|
-
export declare namespace
|
2725
|
+
export declare namespace package$ {
|
3361
2726
|
interface Publisher {
|
3362
|
-
id:
|
2727
|
+
id: object$.UID;
|
3363
2728
|
package: _0x1.ascii.String;
|
3364
2729
|
module_name: _0x1.ascii.String;
|
3365
2730
|
}
|
@@ -3368,8 +2733,8 @@ export declare namespace package_ {
|
|
3368
2733
|
function type(): TypeDescriptor<Publisher>;
|
3369
2734
|
}
|
3370
2735
|
interface UpgradeCap {
|
3371
|
-
id:
|
3372
|
-
package:
|
2736
|
+
id: object$.UID;
|
2737
|
+
package: object$.ID;
|
3373
2738
|
version: bigint;
|
3374
2739
|
policy: number;
|
3375
2740
|
}
|
@@ -3378,16 +2743,16 @@ export declare namespace package_ {
|
|
3378
2743
|
function type(): TypeDescriptor<UpgradeCap>;
|
3379
2744
|
}
|
3380
2745
|
interface UpgradeReceipt {
|
3381
|
-
cap:
|
3382
|
-
package:
|
2746
|
+
cap: object$.ID;
|
2747
|
+
package: object$.ID;
|
3383
2748
|
}
|
3384
2749
|
namespace UpgradeReceipt {
|
3385
2750
|
const TYPE_QNAME = "0x2::package::UpgradeReceipt";
|
3386
2751
|
function type(): TypeDescriptor<UpgradeReceipt>;
|
3387
2752
|
}
|
3388
2753
|
interface UpgradeTicket {
|
3389
|
-
cap:
|
3390
|
-
package:
|
2754
|
+
cap: object$.ID;
|
2755
|
+
package: object$.ID;
|
3391
2756
|
policy: number;
|
3392
2757
|
digest: number[];
|
3393
2758
|
}
|
@@ -3406,18 +2771,18 @@ export declare namespace package_ {
|
|
3406
2771
|
TransactionArgument,
|
3407
2772
|
TransactionArgument
|
3408
2773
|
];
|
3409
|
-
function burnPublisher(tx: Transaction, args: [
|
2774
|
+
function burnPublisher(tx: Transaction, args: [package$.Publisher | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3410
2775
|
function claim<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3411
2776
|
function claimAndKeep<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3412
2777
|
function commitUpgrade(tx: Transaction, args: [
|
3413
2778
|
string | TransactionObjectArgument | TransactionArgument,
|
3414
|
-
|
2779
|
+
package$.UpgradeReceipt | TransactionArgument
|
3415
2780
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3416
2781
|
function compatiblePolicy(tx: Transaction, args: []): TransactionArgument & [];
|
3417
2782
|
function depOnlyPolicy(tx: Transaction, args: []): TransactionArgument & [];
|
3418
2783
|
function fromModule<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3419
2784
|
function fromPackage<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3420
|
-
function makeImmutable(tx: Transaction, args: [
|
2785
|
+
function makeImmutable(tx: Transaction, args: [package$.UpgradeCap | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3421
2786
|
function onlyAdditiveUpgrades(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3422
2787
|
function onlyDepUpgrades(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3423
2788
|
function publishedModule(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
@@ -3433,38 +2798,31 @@ export declare namespace package_ {
|
|
3433
2798
|
}
|
3434
2799
|
namespace view {
|
3435
2800
|
function additivePolicy(client: SuiClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
3436
|
-
function authorizeUpgrade(client: SuiClient, args: [
|
3437
|
-
|
3438
|
-
|
3439
|
-
|
3440
|
-
]): Promise<TypedDevInspectResults<[
|
3441
|
-
function burnPublisher(client: SuiClient, args: [package_.Publisher | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
3442
|
-
function claim<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package_.Publisher]>>;
|
3443
|
-
function claimAndKeep<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3444
|
-
function commitUpgrade(client: SuiClient, args: [
|
3445
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3446
|
-
package_.UpgradeReceipt | TransactionArgument
|
3447
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
2801
|
+
function authorizeUpgrade(client: SuiClient, args: [string, number, string[]]): Promise<TypedDevInspectResults<[package$.UpgradeTicket]>>;
|
2802
|
+
function burnPublisher(client: SuiClient, args: [package$.Publisher]): Promise<TypedDevInspectResults<[]>>;
|
2803
|
+
function claim<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package$.Publisher]>>;
|
2804
|
+
function claimAndKeep<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2805
|
+
function commitUpgrade(client: SuiClient, args: [string, package$.UpgradeReceipt]): Promise<TypedDevInspectResults<[]>>;
|
3448
2806
|
function compatiblePolicy(client: SuiClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
3449
2807
|
function depOnlyPolicy(client: SuiClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
3450
|
-
function fromModule<T0 = any>(client: SuiClient, args: [string
|
3451
|
-
function fromPackage<T0 = any>(client: SuiClient, args: [string
|
3452
|
-
function makeImmutable(client: SuiClient, args: [
|
3453
|
-
function onlyAdditiveUpgrades(client: SuiClient, args: [string
|
3454
|
-
function onlyDepUpgrades(client: SuiClient, args: [string
|
3455
|
-
function publishedModule(client: SuiClient, args: [string
|
3456
|
-
function publishedPackage(client: SuiClient, args: [string
|
3457
|
-
function receiptCap(client: SuiClient, args: [string
|
3458
|
-
function receiptPackage(client: SuiClient, args: [string
|
3459
|
-
function ticketDigest(client: SuiClient, args: [string
|
3460
|
-
function ticketPackage(client: SuiClient, args: [string
|
3461
|
-
function ticketPolicy(client: SuiClient, args: [string
|
3462
|
-
function upgradePackage(client: SuiClient, args: [string
|
3463
|
-
function upgradePolicy(client: SuiClient, args: [string
|
3464
|
-
function version(client: SuiClient, args: [string
|
3465
|
-
}
|
3466
|
-
interface MakeImmutablePayload extends TypedFunctionPayload<[
|
3467
|
-
arguments_decoded: [
|
2808
|
+
function fromModule<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2809
|
+
function fromPackage<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
2810
|
+
function makeImmutable(client: SuiClient, args: [package$.UpgradeCap]): Promise<TypedDevInspectResults<[]>>;
|
2811
|
+
function onlyAdditiveUpgrades(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
2812
|
+
function onlyDepUpgrades(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
2813
|
+
function publishedModule(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2814
|
+
function publishedPackage(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2815
|
+
function receiptCap(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2816
|
+
function receiptPackage(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2817
|
+
function ticketDigest(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
2818
|
+
function ticketPackage(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2819
|
+
function ticketPolicy(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
2820
|
+
function upgradePackage(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
2821
|
+
function upgradePolicy(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
2822
|
+
function version(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
2823
|
+
}
|
2824
|
+
interface MakeImmutablePayload extends TypedFunctionPayload<[package$.UpgradeCap]> {
|
2825
|
+
arguments_decoded: [package$.UpgradeCap];
|
3468
2826
|
type_arguments: [];
|
3469
2827
|
}
|
3470
2828
|
interface OnlyAdditiveUpgradesPayload extends TypedFunctionPayload<[string]> {
|
@@ -3526,36 +2884,14 @@ export declare namespace pay {
|
|
3526
2884
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3527
2885
|
}
|
3528
2886
|
namespace view {
|
3529
|
-
function divideAndKeep<T0 = any>(client: SuiClient, args: [
|
3530
|
-
|
3531
|
-
|
3532
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3533
|
-
function
|
3534
|
-
|
3535
|
-
|
3536
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3537
|
-
function joinVec<T0 = any>(client: SuiClient, args: [
|
3538
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3539
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
3540
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3541
|
-
function joinVecAndTransfer<T0 = any>(client: SuiClient, args: [
|
3542
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3543
|
-
string | TransactionArgument
|
3544
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3545
|
-
function keep<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3546
|
-
function split<T0 = any>(client: SuiClient, args: [
|
3547
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3548
|
-
bigint | TransactionArgument
|
3549
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3550
|
-
function splitAndTransfer<T0 = any>(client: SuiClient, args: [
|
3551
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3552
|
-
bigint | TransactionArgument,
|
3553
|
-
string | TransactionArgument
|
3554
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3555
|
-
function splitVec<T0 = any>(client: SuiClient, args: [
|
3556
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3557
|
-
(string | TransactionObjectArgument)[] | TransactionArgument
|
3558
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2887
|
+
function divideAndKeep<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2888
|
+
function join<T0 = any>(client: SuiClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2889
|
+
function joinVec<T0 = any>(client: SuiClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2890
|
+
function joinVecAndTransfer<T0 = any>(client: SuiClient, args: [string[], string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2891
|
+
function keep<T0 = any>(client: SuiClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2892
|
+
function split<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2893
|
+
function splitAndTransfer<T0 = any>(client: SuiClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2894
|
+
function splitVec<T0 = any>(client: SuiClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3559
2895
|
}
|
3560
2896
|
interface DivideAndKeepPayload<T0 = any> extends TypedFunctionPayload<[string, bigint, string]> {
|
3561
2897
|
arguments_decoded: [string, bigint, string];
|
@@ -3591,7 +2927,7 @@ export declare namespace poseidon {
|
|
3591
2927
|
function poseidonBn254(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
3592
2928
|
}
|
3593
2929
|
namespace view {
|
3594
|
-
function poseidonBn254(client: SuiClient, args: [string
|
2930
|
+
function poseidonBn254(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3595
2931
|
}
|
3596
2932
|
}
|
3597
2933
|
export declare namespace priority_queue {
|
@@ -3624,25 +2960,18 @@ export declare namespace priority_queue {
|
|
3624
2960
|
TransactionArgument,
|
3625
2961
|
TransactionArgument
|
3626
2962
|
];
|
3627
|
-
function
|
2963
|
+
function new$<T0 = any>(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3628
2964
|
function newEntry<T0 = any>(tx: Transaction, args: [bigint | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3629
2965
|
function popMax<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3630
2966
|
function priorities<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
3631
2967
|
}
|
3632
2968
|
namespace view {
|
3633
|
-
function createEntries<T0 = any>(client: SuiClient, args: [
|
3634
|
-
|
3635
|
-
|
3636
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>
|
3637
|
-
function
|
3638
|
-
|
3639
|
-
bigint | TransactionArgument,
|
3640
|
-
T0 | TransactionArgument
|
3641
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3642
|
-
function new_<T0 = any>(client: SuiClient, args: [(string | TransactionObjectArgument)[] | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.PriorityQueue<T0>]>>;
|
3643
|
-
function newEntry<T0 = any>(client: SuiClient, args: [bigint | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>]>>;
|
3644
|
-
function popMax<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint, T0]>>;
|
3645
|
-
function priorities<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
2969
|
+
function createEntries<T0 = any>(client: SuiClient, args: [string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>[]]>>;
|
2970
|
+
function insert<T0 = any>(client: SuiClient, args: [string, bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
2971
|
+
function new$<T0 = any>(client: SuiClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.PriorityQueue<T0>]>>;
|
2972
|
+
function newEntry<T0 = any>(client: SuiClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>]>>;
|
2973
|
+
function popMax<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint, T0]>>;
|
2974
|
+
function priorities<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
3646
2975
|
}
|
3647
2976
|
}
|
3648
2977
|
export declare namespace prover {
|
@@ -3651,7 +2980,7 @@ export declare namespace prover {
|
|
3651
2980
|
}
|
3652
2981
|
export declare namespace random {
|
3653
2982
|
interface Random {
|
3654
|
-
id:
|
2983
|
+
id: object$.UID;
|
3655
2984
|
inner: versioned.Versioned;
|
3656
2985
|
}
|
3657
2986
|
namespace Random {
|
@@ -3741,47 +3070,21 @@ export declare namespace random {
|
|
3741
3070
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3742
3071
|
}
|
3743
3072
|
namespace view {
|
3744
|
-
function generateBool(client: SuiClient, args: [string
|
3745
|
-
function generateBytes(client: SuiClient, args: [
|
3746
|
-
|
3747
|
-
|
3748
|
-
]): Promise<TypedDevInspectResults<[number
|
3749
|
-
function
|
3750
|
-
function
|
3751
|
-
|
3752
|
-
|
3753
|
-
|
3754
|
-
]): Promise<TypedDevInspectResults<[bigint]>>;
|
3755
|
-
function
|
3756
|
-
function
|
3757
|
-
|
3758
|
-
|
3759
|
-
number | TransactionArgument
|
3760
|
-
]): Promise<TypedDevInspectResults<[number]>>;
|
3761
|
-
function generateU256(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
3762
|
-
function generateU32(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number]>>;
|
3763
|
-
function generateU32InRange(client: SuiClient, args: [
|
3764
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3765
|
-
number | TransactionArgument,
|
3766
|
-
number | TransactionArgument
|
3767
|
-
]): Promise<TypedDevInspectResults<[number]>>;
|
3768
|
-
function generateU64(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
3769
|
-
function generateU64InRange(client: SuiClient, args: [
|
3770
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3771
|
-
bigint | TransactionArgument,
|
3772
|
-
bigint | TransactionArgument
|
3773
|
-
]): Promise<TypedDevInspectResults<[bigint]>>;
|
3774
|
-
function generateU8(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number]>>;
|
3775
|
-
function generateU8InRange(client: SuiClient, args: [
|
3776
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3777
|
-
number | TransactionArgument,
|
3778
|
-
number | TransactionArgument
|
3779
|
-
]): Promise<TypedDevInspectResults<[number]>>;
|
3780
|
-
function newGenerator(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[random.RandomGenerator]>>;
|
3781
|
-
function shuffle<T0 = any>(client: SuiClient, args: [
|
3782
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3783
|
-
string | TransactionObjectArgument | TransactionArgument
|
3784
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3073
|
+
function generateBool(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3074
|
+
function generateBytes(client: SuiClient, args: [string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
3075
|
+
function generateU128(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3076
|
+
function generateU128InRange(client: SuiClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
3077
|
+
function generateU16(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
3078
|
+
function generateU16InRange(client: SuiClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
3079
|
+
function generateU256(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3080
|
+
function generateU32(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
3081
|
+
function generateU32InRange(client: SuiClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
3082
|
+
function generateU64(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3083
|
+
function generateU64InRange(client: SuiClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
3084
|
+
function generateU8(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
3085
|
+
function generateU8InRange(client: SuiClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
3086
|
+
function newGenerator(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[random.RandomGenerator]>>;
|
3087
|
+
function shuffle<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3785
3088
|
}
|
3786
3089
|
}
|
3787
3090
|
export declare class sui extends SuiBaseProcessor {
|
@@ -3805,10 +3108,7 @@ export declare namespace sui {
|
|
3805
3108
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3806
3109
|
}
|
3807
3110
|
namespace view {
|
3808
|
-
function transfer(client: SuiClient, args: [
|
3809
|
-
coin.Coin<sui.SUI> | TransactionArgument,
|
3810
|
-
string | TransactionArgument
|
3811
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
3111
|
+
function transfer(client: SuiClient, args: [coin.Coin<sui.SUI>, string]): Promise<TypedDevInspectResults<[]>>;
|
3812
3112
|
}
|
3813
3113
|
interface TransferPayload extends TypedFunctionPayload<[coin.Coin<sui.SUI>, string]> {
|
3814
3114
|
arguments_decoded: [coin.Coin<sui.SUI>, string];
|
@@ -3817,7 +3117,7 @@ export declare namespace sui {
|
|
3817
3117
|
}
|
3818
3118
|
export declare namespace table {
|
3819
3119
|
interface Table<T0, T1> {
|
3820
|
-
id:
|
3120
|
+
id: object$.UID;
|
3821
3121
|
size: bigint;
|
3822
3122
|
}
|
3823
3123
|
namespace Table {
|
@@ -3850,39 +3150,23 @@ export declare namespace table {
|
|
3850
3150
|
function drop<T0 = any, T1 = any>(tx: Transaction, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3851
3151
|
function isEmpty<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3852
3152
|
function length<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
3853
|
-
function
|
3153
|
+
function new$<T0 = any, T1 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
3854
3154
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [
|
3855
3155
|
string | TransactionObjectArgument | TransactionArgument,
|
3856
3156
|
T0 | TransactionArgument
|
3857
3157
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3858
3158
|
}
|
3859
3159
|
namespace view {
|
3860
|
-
function add<T0 = any, T1 = any>(client: SuiClient, args: [
|
3861
|
-
|
3862
|
-
|
3863
|
-
|
3864
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3865
|
-
function
|
3866
|
-
|
3867
|
-
|
3868
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
3869
|
-
function
|
3870
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3871
|
-
T0 | TransactionArgument
|
3872
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3873
|
-
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
3874
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3875
|
-
T0 | TransactionArgument
|
3876
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3877
|
-
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3878
|
-
function drop<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3879
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3880
|
-
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3881
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
3882
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
3883
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3884
|
-
T0 | TransactionArgument
|
3885
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
3160
|
+
function add<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3161
|
+
function borrow<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3162
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3163
|
+
function contains<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3164
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3165
|
+
function drop<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3166
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3167
|
+
function length<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3168
|
+
function new$<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
3169
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
3886
3170
|
}
|
3887
3171
|
}
|
3888
3172
|
export declare namespace table_vec {
|
@@ -3928,34 +3212,18 @@ export declare namespace table_vec {
|
|
3928
3212
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
3929
3213
|
}
|
3930
3214
|
namespace view {
|
3931
|
-
function borrow<T0 = any>(client: SuiClient, args: [
|
3932
|
-
|
3933
|
-
|
3934
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
3935
|
-
function borrowMut<T0 = any>(client: SuiClient, args: [
|
3936
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3937
|
-
bigint | TransactionArgument
|
3938
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3939
|
-
function destroyEmpty<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3940
|
-
function drop<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3215
|
+
function borrow<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3216
|
+
function borrowMut<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3217
|
+
function destroyEmpty<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3218
|
+
function drop<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3941
3219
|
function empty<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
3942
|
-
function isEmpty<T0 = any>(client: SuiClient, args: [string
|
3943
|
-
function length<T0 = any>(client: SuiClient, args: [string
|
3944
|
-
function popBack<T0 = any>(client: SuiClient, args: [string
|
3945
|
-
function pushBack<T0 = any>(client: SuiClient, args: [
|
3946
|
-
|
3947
|
-
|
3948
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3949
|
-
function singleton<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
3950
|
-
function swap<T0 = any>(client: SuiClient, args: [
|
3951
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3952
|
-
bigint | TransactionArgument,
|
3953
|
-
bigint | TransactionArgument
|
3954
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3955
|
-
function swapRemove<T0 = any>(client: SuiClient, args: [
|
3956
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3957
|
-
bigint | TransactionArgument
|
3958
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
3220
|
+
function isEmpty<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3221
|
+
function length<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3222
|
+
function popBack<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
3223
|
+
function pushBack<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3224
|
+
function singleton<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
3225
|
+
function swap<T0 = any>(client: SuiClient, args: [string, bigint, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3226
|
+
function swapRemove<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
3959
3227
|
}
|
3960
3228
|
}
|
3961
3229
|
export declare class token extends SuiBaseProcessor {
|
@@ -3990,7 +3258,7 @@ export declare namespace token {
|
|
3990
3258
|
type_arguments: [string];
|
3991
3259
|
}
|
3992
3260
|
interface Token<T0> {
|
3993
|
-
id:
|
3261
|
+
id: object$.UID;
|
3994
3262
|
balance: balance.Balance<T0>;
|
3995
3263
|
}
|
3996
3264
|
namespace Token {
|
@@ -3998,7 +3266,7 @@ export declare namespace token {
|
|
3998
3266
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Token<T0>>;
|
3999
3267
|
}
|
4000
3268
|
interface TokenPolicy<T0> {
|
4001
|
-
id:
|
3269
|
+
id: object$.UID;
|
4002
3270
|
spent_balance: balance.Balance<T0>;
|
4003
3271
|
rules: vec_map.VecMap<string, vec_set.VecSet<_0x1.type_name.TypeName>>;
|
4004
3272
|
}
|
@@ -4007,15 +3275,15 @@ export declare namespace token {
|
|
4007
3275
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TokenPolicy<T0>>;
|
4008
3276
|
}
|
4009
3277
|
interface TokenPolicyCap<T0> {
|
4010
|
-
id:
|
4011
|
-
for:
|
3278
|
+
id: object$.UID;
|
3279
|
+
for: object$.ID;
|
4012
3280
|
}
|
4013
3281
|
namespace TokenPolicyCap {
|
4014
3282
|
const TYPE_QNAME = "0x2::token::TokenPolicyCap";
|
4015
3283
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TokenPolicyCap<T0>>;
|
4016
3284
|
}
|
4017
3285
|
interface TokenPolicyCreated<T0> {
|
4018
|
-
id:
|
3286
|
+
id: object$.ID;
|
4019
3287
|
is_mutable: boolean;
|
4020
3288
|
}
|
4021
3289
|
namespace TokenPolicyCreated {
|
@@ -4198,170 +3466,100 @@ export declare namespace token {
|
|
4198
3466
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
4199
3467
|
}
|
4200
3468
|
namespace view {
|
4201
|
-
function action<T0 = any>(client: SuiClient, args: [string
|
4202
|
-
function addApproval<T0 = any, T1 = any>(client: SuiClient, args: [
|
4203
|
-
|
4204
|
-
string | TransactionObjectArgument | TransactionArgument
|
4205
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4206
|
-
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4207
|
-
T1 | TransactionArgument,
|
4208
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4209
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4210
|
-
T2 | TransactionArgument
|
4211
|
-
], typeArguments: [
|
3469
|
+
function action<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3470
|
+
function addApproval<T0 = any, T1 = any>(client: SuiClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3471
|
+
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [T1, string, string, T2], typeArguments: [
|
4212
3472
|
TypeDescriptor<T0> | string,
|
4213
3473
|
TypeDescriptor<T1> | string,
|
4214
3474
|
TypeDescriptor<T2> | string
|
4215
3475
|
]): Promise<TypedDevInspectResults<[]>>;
|
4216
|
-
function addRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [
|
4217
|
-
|
4218
|
-
|
4219
|
-
|
4220
|
-
|
4221
|
-
function
|
4222
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4223
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4224
|
-
string | TransactionArgument
|
4225
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4226
|
-
function amount<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4227
|
-
function approvals<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
4228
|
-
function burn<T0 = any>(client: SuiClient, args: [
|
4229
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4230
|
-
token.Token<T0> | TransactionArgument
|
4231
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4232
|
-
function confirmRequest<T0 = any>(client: SuiClient, args: [
|
4233
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4234
|
-
token.ActionRequest<T0> | TransactionArgument
|
4235
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
3476
|
+
function addRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3477
|
+
function allow<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3478
|
+
function amount<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3479
|
+
function approvals<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
3480
|
+
function burn<T0 = any>(client: SuiClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3481
|
+
function confirmRequest<T0 = any>(client: SuiClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4236
3482
|
string,
|
4237
3483
|
bigint,
|
4238
3484
|
string,
|
4239
3485
|
_0x1.option.Option<string>
|
4240
3486
|
]>>;
|
4241
|
-
function confirmRequestMut<T0 = any>(client: SuiClient, args: [
|
4242
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4243
|
-
token.ActionRequest<T0> | TransactionArgument
|
4244
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
3487
|
+
function confirmRequestMut<T0 = any>(client: SuiClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4245
3488
|
string,
|
4246
3489
|
bigint,
|
4247
3490
|
string,
|
4248
3491
|
_0x1.option.Option<string>
|
4249
3492
|
]>>;
|
4250
|
-
function confirmWithPolicyCap<T0 = any>(client: SuiClient, args: [
|
4251
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4252
|
-
token.ActionRequest<T0> | TransactionArgument
|
4253
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
3493
|
+
function confirmWithPolicyCap<T0 = any>(client: SuiClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4254
3494
|
string,
|
4255
3495
|
bigint,
|
4256
3496
|
string,
|
4257
3497
|
_0x1.option.Option<string>
|
4258
3498
|
]>>;
|
4259
|
-
function confirmWithTreasuryCap<T0 = any>(client: SuiClient, args: [
|
4260
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4261
|
-
token.ActionRequest<T0> | TransactionArgument
|
4262
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
3499
|
+
function confirmWithTreasuryCap<T0 = any>(client: SuiClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4263
3500
|
string,
|
4264
3501
|
bigint,
|
4265
3502
|
string,
|
4266
3503
|
_0x1.option.Option<string>
|
4267
3504
|
]>>;
|
4268
|
-
function destroyZero<T0 = any>(client: SuiClient, args: [token.Token<T0>
|
4269
|
-
function disallow<T0 = any>(client: SuiClient, args: [
|
4270
|
-
|
4271
|
-
|
4272
|
-
string | TransactionArgument
|
4273
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4274
|
-
function flush<T0 = any>(client: SuiClient, args: [
|
4275
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4276
|
-
string | TransactionObjectArgument | TransactionArgument
|
4277
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4278
|
-
function fromCoin<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
3505
|
+
function destroyZero<T0 = any>(client: SuiClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3506
|
+
function disallow<T0 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3507
|
+
function flush<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3508
|
+
function fromCoin<T0 = any>(client: SuiClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
4279
3509
|
function fromCoinAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
4280
|
-
function hasRuleConfig<T0 = any, T1 = any>(client: SuiClient, args: [string
|
4281
|
-
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string
|
3510
|
+
function hasRuleConfig<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3511
|
+
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string], typeArguments: [
|
4282
3512
|
TypeDescriptor<T0> | string,
|
4283
3513
|
TypeDescriptor<T1> | string,
|
4284
3514
|
TypeDescriptor<T2> | string
|
4285
3515
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
4286
|
-
function isAllowed<T0 = any>(client: SuiClient, args: [
|
4287
|
-
|
4288
|
-
|
4289
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4290
|
-
function
|
4291
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4292
|
-
token.Token<T0> | TransactionArgument
|
4293
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4294
|
-
function keep<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4295
|
-
function mint<T0 = any>(client: SuiClient, args: [
|
4296
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4297
|
-
bigint | TransactionArgument
|
4298
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
4299
|
-
function newPolicy<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
3516
|
+
function isAllowed<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3517
|
+
function join<T0 = any>(client: SuiClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3518
|
+
function keep<T0 = any>(client: SuiClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3519
|
+
function mint<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
3520
|
+
function newPolicy<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
4300
3521
|
function newRequest<T0 = any>(client: SuiClient, args: [
|
4301
|
-
string
|
4302
|
-
bigint
|
4303
|
-
_0x1.option.Option<string
|
4304
|
-
_0x1.option.Option<balance.Balance<T0>>
|
3522
|
+
string,
|
3523
|
+
bigint,
|
3524
|
+
_0x1.option.Option<string>,
|
3525
|
+
_0x1.option.Option<balance.Balance<T0>>
|
4305
3526
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
4306
|
-
function recipient<T0 = any>(client: SuiClient, args: [string
|
4307
|
-
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4308
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4309
|
-
string | TransactionObjectArgument | TransactionArgument
|
4310
|
-
], typeArguments: [
|
3527
|
+
function recipient<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
3528
|
+
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, string], typeArguments: [
|
4311
3529
|
TypeDescriptor<T0> | string,
|
4312
3530
|
TypeDescriptor<T1> | string,
|
4313
3531
|
TypeDescriptor<T2> | string
|
4314
3532
|
]): Promise<TypedDevInspectResults<[T2]>>;
|
4315
|
-
function removeRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [
|
4316
|
-
|
4317
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4318
|
-
string | TransactionArgument
|
4319
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4320
|
-
function ruleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4321
|
-
T1 | TransactionArgument,
|
4322
|
-
string | TransactionObjectArgument | TransactionArgument
|
4323
|
-
], typeArguments: [
|
3533
|
+
function removeRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3534
|
+
function ruleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [T1, string], typeArguments: [
|
4324
3535
|
TypeDescriptor<T0> | string,
|
4325
3536
|
TypeDescriptor<T1> | string,
|
4326
3537
|
TypeDescriptor<T2> | string
|
4327
3538
|
]): Promise<TypedDevInspectResults<[string]>>;
|
4328
|
-
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4329
|
-
T1 | TransactionArgument,
|
4330
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4331
|
-
string | TransactionObjectArgument | TransactionArgument
|
4332
|
-
], typeArguments: [
|
3539
|
+
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [T1, string, string], typeArguments: [
|
4333
3540
|
TypeDescriptor<T0> | string,
|
4334
3541
|
TypeDescriptor<T1> | string,
|
4335
3542
|
TypeDescriptor<T2> | string
|
4336
3543
|
]): Promise<TypedDevInspectResults<[string]>>;
|
4337
|
-
function rules<T0 = any>(client: SuiClient, args: [
|
4338
|
-
|
4339
|
-
|
4340
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4341
|
-
function sender<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4342
|
-
function sharePolicy<T0 = any>(client: SuiClient, args: [token.TokenPolicy<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4343
|
-
function spend<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
3544
|
+
function rules<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
3545
|
+
function sender<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3546
|
+
function sharePolicy<T0 = any>(client: SuiClient, args: [token.TokenPolicy<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3547
|
+
function spend<T0 = any>(client: SuiClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
4344
3548
|
function spendAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
4345
|
-
function spent<T0 = any>(client: SuiClient, args: [string
|
4346
|
-
function spentBalance<T0 = any>(client: SuiClient, args: [string
|
4347
|
-
function split<T0 = any>(client: SuiClient, args: [
|
4348
|
-
|
4349
|
-
bigint | TransactionArgument
|
4350
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
4351
|
-
function toCoin<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
3549
|
+
function spent<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
3550
|
+
function spentBalance<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3551
|
+
function split<T0 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
3552
|
+
function toCoin<T0 = any>(client: SuiClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
4352
3553
|
function toCoinAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
4353
|
-
function transfer<T0 = any>(client: SuiClient, args: [
|
4354
|
-
token.Token<T0> | TransactionArgument,
|
4355
|
-
string | TransactionArgument
|
4356
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
3554
|
+
function transfer<T0 = any>(client: SuiClient, args: [token.Token<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
4357
3555
|
function transferAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
4358
|
-
function value<T0 = any>(client: SuiClient, args: [string
|
3556
|
+
function value<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4359
3557
|
function zero<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
4360
3558
|
}
|
4361
3559
|
}
|
4362
3560
|
export declare namespace transfer {
|
4363
3561
|
interface Receiving<T0> {
|
4364
|
-
id:
|
3562
|
+
id: object$.ID;
|
4365
3563
|
version: bigint;
|
4366
3564
|
}
|
4367
3565
|
namespace Receiving {
|
@@ -4389,24 +3587,18 @@ export declare namespace transfer {
|
|
4389
3587
|
function transferImpl<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4390
3588
|
}
|
4391
3589
|
namespace view {
|
4392
|
-
function freezeObject<T0 = any>(client: SuiClient, args: [T0
|
4393
|
-
function freezeObjectImpl<T0 = any>(client: SuiClient, args: [T0
|
4394
|
-
function publicFreezeObject<T0 = any>(client: SuiClient, args: [T0
|
4395
|
-
function publicReceive<T0 = any>(client: SuiClient, args: [
|
4396
|
-
|
4397
|
-
|
4398
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
4399
|
-
function
|
4400
|
-
function
|
4401
|
-
function
|
4402
|
-
|
4403
|
-
|
4404
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
4405
|
-
function receivingObjectId<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
4406
|
-
function shareObject<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4407
|
-
function shareObjectImpl<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4408
|
-
function transfer<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4409
|
-
function transferImpl<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3590
|
+
function freezeObject<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3591
|
+
function freezeObjectImpl<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3592
|
+
function publicFreezeObject<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3593
|
+
function publicReceive<T0 = any>(client: SuiClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
3594
|
+
function publicShareObject<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3595
|
+
function publicTransfer<T0 = any>(client: SuiClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3596
|
+
function receive<T0 = any>(client: SuiClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
3597
|
+
function receivingObjectId<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
3598
|
+
function shareObject<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3599
|
+
function shareObjectImpl<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3600
|
+
function transfer<T0 = any>(client: SuiClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
3601
|
+
function transferImpl<T0 = any>(client: SuiClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4410
3602
|
}
|
4411
3603
|
}
|
4412
3604
|
export declare class transfer_policy extends SuiBaseProcessor {
|
@@ -4431,7 +3623,7 @@ export declare namespace transfer_policy {
|
|
4431
3623
|
type_arguments: [string];
|
4432
3624
|
}
|
4433
3625
|
interface TransferPolicy<T0> {
|
4434
|
-
id:
|
3626
|
+
id: object$.UID;
|
4435
3627
|
balance: balance.Balance<sui.SUI>;
|
4436
3628
|
rules: vec_set.VecSet<_0x1.type_name.TypeName>;
|
4437
3629
|
}
|
@@ -4440,15 +3632,15 @@ export declare namespace transfer_policy {
|
|
4440
3632
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransferPolicy<T0>>;
|
4441
3633
|
}
|
4442
3634
|
interface TransferPolicyCap<T0> {
|
4443
|
-
id:
|
4444
|
-
policy_id:
|
3635
|
+
id: object$.UID;
|
3636
|
+
policy_id: object$.ID;
|
4445
3637
|
}
|
4446
3638
|
namespace TransferPolicyCap {
|
4447
3639
|
const TYPE_QNAME = "0x2::transfer_policy::TransferPolicyCap";
|
4448
3640
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransferPolicyCap<T0>>;
|
4449
3641
|
}
|
4450
3642
|
interface TransferPolicyCreated<T0> {
|
4451
|
-
id:
|
3643
|
+
id: object$.ID;
|
4452
3644
|
}
|
4453
3645
|
namespace TransferPolicyCreated {
|
4454
3646
|
const TYPE_QNAME = "0x2::transfer_policy::TransferPolicyCreated";
|
@@ -4459,7 +3651,7 @@ export declare namespace transfer_policy {
|
|
4459
3651
|
type_arguments: [string];
|
4460
3652
|
}
|
4461
3653
|
interface TransferPolicyDestroyed<T0> {
|
4462
|
-
id:
|
3654
|
+
id: object$.ID;
|
4463
3655
|
}
|
4464
3656
|
namespace TransferPolicyDestroyed {
|
4465
3657
|
const TYPE_QNAME = "0x2::transfer_policy::TransferPolicyDestroyed";
|
@@ -4470,9 +3662,9 @@ export declare namespace transfer_policy {
|
|
4470
3662
|
type_arguments: [string];
|
4471
3663
|
}
|
4472
3664
|
interface TransferRequest<T0> {
|
4473
|
-
item:
|
3665
|
+
item: object$.ID;
|
4474
3666
|
paid: bigint;
|
4475
|
-
from:
|
3667
|
+
from: object$.ID;
|
4476
3668
|
receipts: vec_set.VecSet<_0x1.type_name.TypeName>;
|
4477
3669
|
}
|
4478
3670
|
namespace TransferRequest {
|
@@ -4512,12 +3704,12 @@ export declare namespace transfer_policy {
|
|
4512
3704
|
string | TransactionObjectArgument | TransactionArgument,
|
4513
3705
|
transfer_policy.TransferRequest<T0> | TransactionArgument
|
4514
3706
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4515
|
-
function
|
3707
|
+
function default$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4516
3708
|
function destroyAndWithdraw<T0 = any>(tx: Transaction, args: [
|
4517
3709
|
transfer_policy.TransferPolicy<T0> | TransactionArgument,
|
4518
3710
|
transfer_policy.TransferPolicyCap<T0> | TransactionArgument
|
4519
3711
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4520
|
-
function from
|
3712
|
+
function from$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4521
3713
|
function getRule<T0 = any, T1 = any, T2 = any>(tx: Transaction, args: [
|
4522
3714
|
T1 | TransactionArgument,
|
4523
3715
|
string | TransactionObjectArgument | TransactionArgument
|
@@ -4528,11 +3720,11 @@ export declare namespace transfer_policy {
|
|
4528
3720
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4529
3721
|
function hasRule<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
4530
3722
|
function item<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4531
|
-
function
|
3723
|
+
function new$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4532
3724
|
function newRequest<T0 = any>(tx: Transaction, args: [
|
4533
|
-
|
3725
|
+
object$.ID | TransactionArgument,
|
4534
3726
|
bigint | TransactionArgument,
|
4535
|
-
|
3727
|
+
object$.ID | TransactionArgument
|
4536
3728
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
4537
3729
|
TransactionArgument,
|
4538
3730
|
TransactionArgument,
|
@@ -4564,73 +3756,41 @@ export declare namespace transfer_policy {
|
|
4564
3756
|
];
|
4565
3757
|
}
|
4566
3758
|
namespace view {
|
4567
|
-
function addReceipt<T0 = any, T1 = any>(client: SuiClient, args: [
|
4568
|
-
|
4569
|
-
string | TransactionObjectArgument | TransactionArgument
|
4570
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4571
|
-
function addRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4572
|
-
T1 | TransactionArgument,
|
4573
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4574
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4575
|
-
T2 | TransactionArgument
|
4576
|
-
], typeArguments: [
|
3759
|
+
function addReceipt<T0 = any, T1 = any>(client: SuiClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3760
|
+
function addRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [T1, string, string, T2], typeArguments: [
|
4577
3761
|
TypeDescriptor<T0> | string,
|
4578
3762
|
TypeDescriptor<T1> | string,
|
4579
3763
|
TypeDescriptor<T2> | string
|
4580
3764
|
]): Promise<TypedDevInspectResults<[]>>;
|
4581
|
-
function addToBalance<T0 = any, T1 = any>(client: SuiClient, args: [
|
4582
|
-
|
4583
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4584
|
-
coin.Coin<sui.SUI> | TransactionArgument
|
4585
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4586
|
-
function confirmRequest<T0 = any>(client: SuiClient, args: [
|
4587
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4588
|
-
transfer_policy.TransferRequest<T0> | TransactionArgument
|
4589
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID, bigint, object_.ID]>>;
|
3765
|
+
function addToBalance<T0 = any, T1 = any>(client: SuiClient, args: [T1, string, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3766
|
+
function confirmRequest<T0 = any>(client: SuiClient, args: [string, transfer_policy.TransferRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID, bigint, object$.ID]>>;
|
4590
3767
|
function destroyAndWithdraw<T0 = any>(client: SuiClient, args: [
|
4591
|
-
transfer_policy.TransferPolicy<T0
|
4592
|
-
transfer_policy.TransferPolicyCap<T0>
|
3768
|
+
transfer_policy.TransferPolicy<T0>,
|
3769
|
+
transfer_policy.TransferPolicyCap<T0>
|
4593
3770
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
4594
|
-
function from
|
4595
|
-
function getRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4596
|
-
T1 | TransactionArgument,
|
4597
|
-
string | TransactionObjectArgument | TransactionArgument
|
4598
|
-
], typeArguments: [
|
3771
|
+
function from$<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
3772
|
+
function getRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [T1, string], typeArguments: [
|
4599
3773
|
TypeDescriptor<T0> | string,
|
4600
3774
|
TypeDescriptor<T1> | string,
|
4601
3775
|
TypeDescriptor<T2> | string
|
4602
3776
|
]): Promise<TypedDevInspectResults<[string]>>;
|
4603
|
-
function hasRule<T0 = any, T1 = any>(client: SuiClient, args: [string
|
4604
|
-
function item<T0 = any>(client: SuiClient, args: [string
|
4605
|
-
function
|
3777
|
+
function hasRule<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3778
|
+
function item<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
3779
|
+
function new$<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
4606
3780
|
transfer_policy.TransferPolicy<T0>,
|
4607
3781
|
transfer_policy.TransferPolicyCap<T0>
|
4608
3782
|
]>>;
|
4609
|
-
function newRequest<T0 = any>(client: SuiClient, args: [
|
4610
|
-
|
4611
|
-
|
4612
|
-
object_.ID | TransactionArgument
|
4613
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[transfer_policy.TransferRequest<T0>]>>;
|
4614
|
-
function paid<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4615
|
-
function removeRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
4616
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4617
|
-
string | TransactionObjectArgument | TransactionArgument
|
4618
|
-
], typeArguments: [
|
3783
|
+
function newRequest<T0 = any>(client: SuiClient, args: [object$.ID, bigint, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[transfer_policy.TransferRequest<T0>]>>;
|
3784
|
+
function paid<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3785
|
+
function removeRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string, string], typeArguments: [
|
4619
3786
|
TypeDescriptor<T0> | string,
|
4620
3787
|
TypeDescriptor<T1> | string,
|
4621
3788
|
TypeDescriptor<T2> | string
|
4622
3789
|
]): Promise<TypedDevInspectResults<[]>>;
|
4623
|
-
function rules<T0 = any>(client: SuiClient, args: [string
|
4624
|
-
function uid<T0 = any>(client: SuiClient, args: [string
|
4625
|
-
function uidMutAsOwner<T0 = any>(client: SuiClient, args: [
|
4626
|
-
|
4627
|
-
string | TransactionObjectArgument | TransactionArgument
|
4628
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4629
|
-
function withdraw<T0 = any>(client: SuiClient, args: [
|
4630
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4631
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4632
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
4633
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
3790
|
+
function rules<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3791
|
+
function uid<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3792
|
+
function uidMutAsOwner<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3793
|
+
function withdraw<T0 = any>(client: SuiClient, args: [string, string, _0x1.option.Option<bigint>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
4634
3794
|
}
|
4635
3795
|
interface DefaultPayload<T0 = any> extends TypedFunctionPayload<[string, string]> {
|
4636
3796
|
arguments_decoded: [string, string];
|
@@ -4669,7 +3829,7 @@ export declare namespace types {
|
|
4669
3829
|
function isOneTimeWitness<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4670
3830
|
}
|
4671
3831
|
namespace view {
|
4672
|
-
function isOneTimeWitness<T0 = any>(client: SuiClient, args: [string
|
3832
|
+
function isOneTimeWitness<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4673
3833
|
}
|
4674
3834
|
}
|
4675
3835
|
export declare class url extends SuiBaseProcessor {
|
@@ -4700,13 +3860,10 @@ export declare namespace url {
|
|
4700
3860
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4701
3861
|
}
|
4702
3862
|
namespace view {
|
4703
|
-
function innerUrl(client: SuiClient, args: [string
|
4704
|
-
function newUnsafe(client: SuiClient, args: [_0x1.ascii.String
|
4705
|
-
function newUnsafeFromBytes(client: SuiClient, args: [
|
4706
|
-
function update(client: SuiClient, args: [
|
4707
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4708
|
-
_0x1.ascii.String | TransactionArgument
|
4709
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
3863
|
+
function innerUrl(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
3864
|
+
function newUnsafe(client: SuiClient, args: [_0x1.ascii.String]): Promise<TypedDevInspectResults<[url.Url]>>;
|
3865
|
+
function newUnsafeFromBytes(client: SuiClient, args: [string[]]): Promise<TypedDevInspectResults<[url.Url]>>;
|
3866
|
+
function update(client: SuiClient, args: [string, _0x1.ascii.String]): Promise<TypedDevInspectResults<[]>>;
|
4710
3867
|
}
|
4711
3868
|
}
|
4712
3869
|
export declare namespace vdf {
|
@@ -4725,13 +3882,8 @@ export declare namespace vdf {
|
|
4725
3882
|
];
|
4726
3883
|
}
|
4727
3884
|
namespace view {
|
4728
|
-
function hashToInput(client: SuiClient, args: [string
|
4729
|
-
function vdfVerify(client: SuiClient, args: [
|
4730
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4731
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4732
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4733
|
-
bigint | TransactionArgument
|
4734
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
3885
|
+
function hashToInput(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
3886
|
+
function vdfVerify(client: SuiClient, args: [string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
4735
3887
|
}
|
4736
3888
|
}
|
4737
3889
|
export declare class vec_map extends SuiBaseProcessor {
|
@@ -4828,62 +3980,25 @@ export declare namespace vec_map {
|
|
4828
3980
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
4829
3981
|
}
|
4830
3982
|
namespace view {
|
4831
|
-
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
4832
|
-
|
4833
|
-
string | TransactionObjectArgument | TransactionArgument
|
4834
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4835
|
-
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [vec_map.VecMap<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3983
|
+
function contains<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3984
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [vec_map.VecMap<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4836
3985
|
function empty<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
4837
|
-
function fromKeysValues<T0 = any, T1 = any>(client: SuiClient, args: [
|
4838
|
-
|
4839
|
-
|
4840
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
4841
|
-
function
|
4842
|
-
|
4843
|
-
|
4844
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
4845
|
-
function
|
4846
|
-
|
4847
|
-
|
4848
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
4849
|
-
function
|
4850
|
-
|
4851
|
-
|
4852
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
4853
|
-
function getIdx<T0 = any, T1 = any>(client: SuiClient, args: [
|
4854
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4855
|
-
string | TransactionObjectArgument | TransactionArgument
|
4856
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4857
|
-
function getIdxOpt<T0 = any, T1 = any>(client: SuiClient, args: [
|
4858
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4859
|
-
string | TransactionObjectArgument | TransactionArgument
|
4860
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
4861
|
-
function getMut<T0 = any, T1 = any>(client: SuiClient, args: [
|
4862
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4863
|
-
string | TransactionObjectArgument | TransactionArgument
|
4864
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4865
|
-
function insert<T0 = any, T1 = any>(client: SuiClient, args: [
|
4866
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4867
|
-
T0 | TransactionArgument,
|
4868
|
-
T1 | TransactionArgument
|
4869
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
4870
|
-
function intoKeysValues<T0 = any, T1 = any>(client: SuiClient, args: [vec_map.VecMap<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[] | string, T1[] | string]>>;
|
4871
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4872
|
-
function keys<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[] | string]>>;
|
4873
|
-
function pop<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
4874
|
-
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
4875
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4876
|
-
string | TransactionObjectArgument | TransactionArgument
|
4877
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
4878
|
-
function removeEntryByIdx<T0 = any, T1 = any>(client: SuiClient, args: [
|
4879
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4880
|
-
bigint | TransactionArgument
|
4881
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
4882
|
-
function size<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4883
|
-
function tryGet<T0 = any, T1 = any>(client: SuiClient, args: [
|
4884
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4885
|
-
string | TransactionObjectArgument | TransactionArgument
|
4886
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
3986
|
+
function fromKeysValues<T0 = any, T1 = any>(client: SuiClient, args: [string[], string[]], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
3987
|
+
function get<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3988
|
+
function getEntryByIdx<T0 = any, T1 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
3989
|
+
function getEntryByIdxMut<T0 = any, T1 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
3990
|
+
function getIdx<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
3991
|
+
function getIdxOpt<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
3992
|
+
function getMut<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
3993
|
+
function insert<T0 = any, T1 = any>(client: SuiClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
3994
|
+
function intoKeysValues<T0 = any, T1 = any>(client: SuiClient, args: [vec_map.VecMap<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[] | string, T1[] | string]>>;
|
3995
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
3996
|
+
function keys<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[] | string]>>;
|
3997
|
+
function pop<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
3998
|
+
function remove<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
3999
|
+
function removeEntryByIdx<T0 = any, T1 = any>(client: SuiClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
4000
|
+
function size<T0 = any, T1 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4001
|
+
function tryGet<T0 = any, T1 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
4887
4002
|
}
|
4888
4003
|
}
|
4889
4004
|
export declare class vec_set extends SuiBaseProcessor {
|
@@ -4926,30 +4041,21 @@ export declare namespace vec_set {
|
|
4926
4041
|
function size<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
4927
4042
|
}
|
4928
4043
|
namespace view {
|
4929
|
-
function contains<T0 = any>(client: SuiClient, args: [
|
4930
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4931
|
-
string | TransactionObjectArgument | TransactionArgument
|
4932
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4044
|
+
function contains<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4933
4045
|
function empty<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
4934
|
-
function fromKeys<T0 = any>(client: SuiClient, args: [
|
4935
|
-
function insert<T0 = any>(client: SuiClient, args: [
|
4936
|
-
|
4937
|
-
|
4938
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4939
|
-
function
|
4940
|
-
function
|
4941
|
-
function
|
4942
|
-
function remove<T0 = any>(client: SuiClient, args: [
|
4943
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4944
|
-
string | TransactionObjectArgument | TransactionArgument
|
4945
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4946
|
-
function singleton<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
4947
|
-
function size<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4046
|
+
function fromKeys<T0 = any>(client: SuiClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
4047
|
+
function insert<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4048
|
+
function intoKeys<T0 = any>(client: SuiClient, args: [vec_set.VecSet<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0[] | string]>>;
|
4049
|
+
function isEmpty<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4050
|
+
function keys<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4051
|
+
function remove<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4052
|
+
function singleton<T0 = any>(client: SuiClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
4053
|
+
function size<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4948
4054
|
}
|
4949
4055
|
}
|
4950
4056
|
export declare namespace versioned {
|
4951
4057
|
interface VersionChangeCap {
|
4952
|
-
versioned_id:
|
4058
|
+
versioned_id: object$.ID;
|
4953
4059
|
old_version: bigint;
|
4954
4060
|
}
|
4955
4061
|
namespace VersionChangeCap {
|
@@ -4957,7 +4063,7 @@ export declare namespace versioned {
|
|
4957
4063
|
function type(): TypeDescriptor<VersionChangeCap>;
|
4958
4064
|
}
|
4959
4065
|
interface Versioned {
|
4960
|
-
id:
|
4066
|
+
id: object$.UID;
|
4961
4067
|
version: bigint;
|
4962
4068
|
}
|
4963
4069
|
namespace Versioned {
|
@@ -4984,23 +4090,18 @@ export declare namespace versioned {
|
|
4984
4090
|
function version(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
4985
4091
|
}
|
4986
4092
|
namespace view {
|
4987
|
-
function create<T0 = any>(client: SuiClient, args: [bigint
|
4988
|
-
function destroy<T0 = any>(client: SuiClient, args: [versioned.Versioned
|
4989
|
-
function loadValue<T0 = any>(client: SuiClient, args: [string
|
4990
|
-
function loadValueMut<T0 = any>(client: SuiClient, args: [string
|
4991
|
-
function removeValueForUpgrade<T0 = any>(client: SuiClient, args: [string
|
4992
|
-
function upgrade<T0 = any>(client: SuiClient, args: [
|
4993
|
-
|
4994
|
-
bigint | TransactionArgument,
|
4995
|
-
T0 | TransactionArgument,
|
4996
|
-
versioned.VersionChangeCap | TransactionArgument
|
4997
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4998
|
-
function version(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
4093
|
+
function create<T0 = any>(client: SuiClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[versioned.Versioned]>>;
|
4094
|
+
function destroy<T0 = any>(client: SuiClient, args: [versioned.Versioned], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
4095
|
+
function loadValue<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4096
|
+
function loadValueMut<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
4097
|
+
function removeValueForUpgrade<T0 = any>(client: SuiClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, versioned.VersionChangeCap]>>;
|
4098
|
+
function upgrade<T0 = any>(client: SuiClient, args: [string, bigint, T0, versioned.VersionChangeCap], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
4099
|
+
function version(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
4999
4100
|
}
|
5000
4101
|
}
|
5001
4102
|
export declare namespace zklogin_verified_id {
|
5002
4103
|
interface VerifiedID {
|
5003
|
-
id:
|
4104
|
+
id: object$.UID;
|
5004
4105
|
owner: string;
|
5005
4106
|
key_claim_name: string;
|
5006
4107
|
key_claim_value: string;
|
@@ -5028,7 +4129,7 @@ export declare namespace zklogin_verified_id {
|
|
5028
4129
|
TransactionArgument,
|
5029
4130
|
TransactionArgument
|
5030
4131
|
];
|
5031
|
-
function
|
4132
|
+
function delete$(tx: Transaction, args: [zklogin_verified_id.VerifiedID | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5032
4133
|
function issuer(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5033
4134
|
function keyClaimName(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5034
4135
|
function keyClaimValue(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
@@ -5048,32 +4149,19 @@ export declare namespace zklogin_verified_id {
|
|
5048
4149
|
];
|
5049
4150
|
}
|
5050
4151
|
namespace view {
|
5051
|
-
function audience(client: SuiClient, args: [string
|
5052
|
-
function checkZkloginId(client: SuiClient, args: [
|
5053
|
-
|
5054
|
-
|
5055
|
-
|
5056
|
-
|
5057
|
-
|
5058
|
-
|
5059
|
-
]): Promise<TypedDevInspectResults<[boolean]>>;
|
5060
|
-
function delete_(client: SuiClient, args: [zklogin_verified_id.VerifiedID | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
5061
|
-
function issuer(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5062
|
-
function keyClaimName(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5063
|
-
function keyClaimValue(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5064
|
-
function owner(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5065
|
-
function verifyZkloginId(client: SuiClient, args: [
|
5066
|
-
string | TransactionArgument,
|
5067
|
-
string | TransactionArgument,
|
5068
|
-
string | TransactionArgument,
|
5069
|
-
string | TransactionArgument,
|
5070
|
-
bigint | TransactionArgument
|
5071
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
4152
|
+
function audience(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4153
|
+
function checkZkloginId(client: SuiClient, args: [string, string, string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
4154
|
+
function delete$(client: SuiClient, args: [zklogin_verified_id.VerifiedID]): Promise<TypedDevInspectResults<[]>>;
|
4155
|
+
function issuer(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4156
|
+
function keyClaimName(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4157
|
+
function keyClaimValue(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4158
|
+
function owner(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4159
|
+
function verifyZkloginId(client: SuiClient, args: [string, string, string, string, bigint]): Promise<TypedDevInspectResults<[]>>;
|
5072
4160
|
}
|
5073
4161
|
}
|
5074
4162
|
export declare namespace zklogin_verified_issuer {
|
5075
4163
|
interface VerifiedIssuer {
|
5076
|
-
id:
|
4164
|
+
id: object$.UID;
|
5077
4165
|
owner: string;
|
5078
4166
|
issuer: string;
|
5079
4167
|
}
|
@@ -5091,21 +4179,17 @@ export declare namespace zklogin_verified_issuer {
|
|
5091
4179
|
TransactionArgument,
|
5092
4180
|
TransactionArgument
|
5093
4181
|
];
|
5094
|
-
function
|
4182
|
+
function delete$(tx: Transaction, args: [zklogin_verified_issuer.VerifiedIssuer | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5095
4183
|
function issuer(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5096
4184
|
function owner(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
5097
4185
|
function verifyZkloginIssuer(tx: Transaction, args: [bigint | TransactionArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
5098
4186
|
}
|
5099
4187
|
namespace view {
|
5100
|
-
function checkZkloginIssuer(client: SuiClient, args: [
|
5101
|
-
|
5102
|
-
|
5103
|
-
|
5104
|
-
]): Promise<TypedDevInspectResults<[
|
5105
|
-
function delete_(client: SuiClient, args: [zklogin_verified_issuer.VerifiedIssuer | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
5106
|
-
function issuer(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5107
|
-
function owner(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
5108
|
-
function verifyZkloginIssuer(client: SuiClient, args: [bigint | TransactionArgument, string | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
4188
|
+
function checkZkloginIssuer(client: SuiClient, args: [string, bigint, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
4189
|
+
function delete$(client: SuiClient, args: [zklogin_verified_issuer.VerifiedIssuer]): Promise<TypedDevInspectResults<[]>>;
|
4190
|
+
function issuer(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4191
|
+
function owner(client: SuiClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
4192
|
+
function verifyZkloginIssuer(client: SuiClient, args: [bigint, string]): Promise<TypedDevInspectResults<[]>>;
|
5109
4193
|
}
|
5110
4194
|
}
|
5111
4195
|
export declare function loadAllTypes(coder: MoveCoder): void;
|