@typemove/sui 1.6.7 → 1.6.8-rc.1
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/dist/cjs/builtin/0x1.d.ts +19 -19
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +127 -127
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x2.d.ts +94 -94
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +137 -137
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +15 -15
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +89 -89
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/codegen/codegen.d.ts.map +1 -1
- package/dist/cjs/codegen/codegen.js +54 -3
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/cjs/transaction.d.ts +11 -2
- package/dist/cjs/transaction.d.ts.map +1 -1
- package/dist/cjs/transaction.js +65 -1
- package/dist/cjs/transaction.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +19 -19
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +128 -128
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +94 -94
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +138 -138
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +15 -15
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +90 -90
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/codegen/codegen.d.ts.map +1 -1
- package/dist/esm/codegen/codegen.js +54 -3
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/dist/esm/transaction.d.ts +11 -2
- package/dist/esm/transaction.d.ts.map +1 -1
- package/dist/esm/transaction.js +55 -0
- package/dist/esm/transaction.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x1.ts +174 -165
- package/src/builtin/0x2.ts +310 -301
- package/src/builtin/0x3.ts +123 -114
- package/src/codegen/codegen.ts +56 -3
- package/src/tests/abis/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.json +1356 -0
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +15 -6
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +98 -89
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +1440 -0
- package/src/tests/types/testnet/0xdee9.ts +127 -118
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +206 -197
- package/src/tests/types/testnet/index.ts +1 -0
- package/src/transaction.ts +97 -3
|
@@ -148,13 +148,13 @@ export declare namespace bag {
|
|
|
148
148
|
function contains<T0 = any>(client: SuiClient, args: [
|
|
149
149
|
string | TransactionObjectArgument | TransactionArgument,
|
|
150
150
|
T0 | TransactionArgument
|
|
151
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
151
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
152
152
|
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
153
153
|
string | TransactionObjectArgument | TransactionArgument,
|
|
154
154
|
T0 | TransactionArgument
|
|
155
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
155
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
156
156
|
function destroyEmpty(client: SuiClient, args: [bag.Bag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
157
|
-
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
157
|
+
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
158
158
|
function length(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
159
159
|
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
|
160
160
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -274,9 +274,9 @@ export declare namespace bcs {
|
|
|
274
274
|
function intoRemainderBytes(client: SuiClient, args: [bcs.BCS | TransactionArgument]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
275
275
|
function new_(client: SuiClient, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): Promise<TypedDevInspectResults<[bcs.BCS]>>;
|
|
276
276
|
function peelAddress(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
277
|
-
function peelBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
277
|
+
function peelBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
278
278
|
function peelOptionAddress(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
279
|
-
function peelOptionBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<
|
|
279
|
+
function peelOptionBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<boolean>]>>;
|
|
280
280
|
function peelOptionU128(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
281
281
|
function peelOptionU16(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
282
282
|
function peelOptionU256(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
@@ -290,7 +290,7 @@ export declare namespace bcs {
|
|
|
290
290
|
function peelU64(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
291
291
|
function peelU8(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number]>>;
|
|
292
292
|
function peelVecAddress(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string[]]>>;
|
|
293
|
-
function peelVecBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
293
|
+
function peelVecBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean[]]>>;
|
|
294
294
|
function peelVecLength(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
295
295
|
function peelVecU128(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
296
296
|
function peelVecU16(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
@@ -304,28 +304,28 @@ export declare namespace bcs {
|
|
|
304
304
|
}
|
|
305
305
|
export declare namespace bls12381 {
|
|
306
306
|
interface G1 {
|
|
307
|
-
dummy_field:
|
|
307
|
+
dummy_field: boolean;
|
|
308
308
|
}
|
|
309
309
|
namespace G1 {
|
|
310
310
|
const TYPE_QNAME = "0x2::bls12381::G1";
|
|
311
311
|
function type(): TypeDescriptor<G1>;
|
|
312
312
|
}
|
|
313
313
|
interface G2 {
|
|
314
|
-
dummy_field:
|
|
314
|
+
dummy_field: boolean;
|
|
315
315
|
}
|
|
316
316
|
namespace G2 {
|
|
317
317
|
const TYPE_QNAME = "0x2::bls12381::G2";
|
|
318
318
|
function type(): TypeDescriptor<G2>;
|
|
319
319
|
}
|
|
320
320
|
interface GT {
|
|
321
|
-
dummy_field:
|
|
321
|
+
dummy_field: boolean;
|
|
322
322
|
}
|
|
323
323
|
namespace GT {
|
|
324
324
|
const TYPE_QNAME = "0x2::bls12381::GT";
|
|
325
325
|
function type(): TypeDescriptor<GT>;
|
|
326
326
|
}
|
|
327
327
|
interface Scalar {
|
|
328
|
-
dummy_field:
|
|
328
|
+
dummy_field: boolean;
|
|
329
329
|
}
|
|
330
330
|
namespace Scalar {
|
|
331
331
|
const TYPE_QNAME = "0x2::bls12381::Scalar";
|
|
@@ -451,12 +451,12 @@ export declare namespace bls12381 {
|
|
|
451
451
|
string | TransactionObjectArgument | TransactionArgument,
|
|
452
452
|
string | TransactionObjectArgument | TransactionArgument,
|
|
453
453
|
string | TransactionObjectArgument | TransactionArgument
|
|
454
|
-
]): Promise<TypedDevInspectResults<[
|
|
454
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
455
455
|
function bls12381MinSigVerify(client: SuiClient, args: [
|
|
456
456
|
string | TransactionObjectArgument | TransactionArgument,
|
|
457
457
|
string | TransactionObjectArgument | TransactionArgument,
|
|
458
458
|
string | TransactionObjectArgument | TransactionArgument
|
|
459
|
-
]): Promise<TypedDevInspectResults<[
|
|
459
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
460
460
|
function g1Add(client: SuiClient, args: [
|
|
461
461
|
string | TransactionObjectArgument | TransactionArgument,
|
|
462
462
|
string | TransactionObjectArgument | TransactionArgument
|
|
@@ -650,7 +650,7 @@ export declare namespace coin {
|
|
|
650
650
|
}
|
|
651
651
|
interface DenyCapV2<T0> {
|
|
652
652
|
id: object_.UID;
|
|
653
|
-
allow_global_pause:
|
|
653
|
+
allow_global_pause: boolean;
|
|
654
654
|
}
|
|
655
655
|
namespace DenyCapV2 {
|
|
656
656
|
const TYPE_QNAME = "0x2::coin::DenyCapV2";
|
|
@@ -717,7 +717,7 @@ export declare namespace coin {
|
|
|
717
717
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
718
718
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
719
719
|
_0x1.option.Option<url.Url> | TransactionArgument,
|
|
720
|
-
|
|
720
|
+
boolean | TransactionArgument
|
|
721
721
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
722
722
|
TransactionArgument,
|
|
723
723
|
TransactionArgument,
|
|
@@ -804,7 +804,7 @@ export declare namespace coin {
|
|
|
804
804
|
function migrateRegulatedCurrencyToV2<T0 = any>(tx: Transaction, args: [
|
|
805
805
|
string | TransactionObjectArgument | TransactionArgument,
|
|
806
806
|
coin.DenyCap<T0> | TransactionArgument,
|
|
807
|
-
|
|
807
|
+
boolean | TransactionArgument
|
|
808
808
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
809
809
|
TransactionArgument,
|
|
810
810
|
TransactionArgument,
|
|
@@ -917,7 +917,7 @@ export declare namespace coin {
|
|
|
917
917
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
918
918
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
919
919
|
_0x1.option.Option<url.Url> | TransactionArgument,
|
|
920
|
-
|
|
920
|
+
boolean | TransactionArgument
|
|
921
921
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
922
922
|
coin.TreasuryCap<T0>,
|
|
923
923
|
coin.DenyCapV2<T0>,
|
|
@@ -931,7 +931,7 @@ export declare namespace coin {
|
|
|
931
931
|
function denyListContains<T0 = any>(client: SuiClient, args: [
|
|
932
932
|
string | TransactionObjectArgument | TransactionArgument,
|
|
933
933
|
string | TransactionArgument
|
|
934
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
934
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
935
935
|
function denyListRemove<T0 = any>(client: SuiClient, args: [
|
|
936
936
|
string | TransactionObjectArgument | TransactionArgument,
|
|
937
937
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -945,11 +945,11 @@ export declare namespace coin {
|
|
|
945
945
|
function denyListV2ContainsCurrentEpoch<T0 = any>(client: SuiClient, args: [
|
|
946
946
|
string | TransactionObjectArgument | TransactionArgument,
|
|
947
947
|
string | TransactionArgument
|
|
948
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
948
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
949
949
|
function denyListV2ContainsNextEpoch<T0 = any>(client: SuiClient, args: [
|
|
950
950
|
string | TransactionObjectArgument | TransactionArgument,
|
|
951
951
|
string | TransactionArgument
|
|
952
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
952
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
953
953
|
function denyListV2DisableGlobalPause<T0 = any>(client: SuiClient, args: [
|
|
954
954
|
string | TransactionObjectArgument | TransactionArgument,
|
|
955
955
|
string | TransactionObjectArgument | TransactionArgument
|
|
@@ -958,8 +958,8 @@ export declare namespace coin {
|
|
|
958
958
|
string | TransactionObjectArgument | TransactionArgument,
|
|
959
959
|
string | TransactionObjectArgument | TransactionArgument
|
|
960
960
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
961
|
-
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
962
|
-
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
961
|
+
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
962
|
+
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
963
963
|
function denyListV2Remove<T0 = any>(client: SuiClient, args: [
|
|
964
964
|
string | TransactionObjectArgument | TransactionArgument,
|
|
965
965
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -984,7 +984,7 @@ export declare namespace coin {
|
|
|
984
984
|
function migrateRegulatedCurrencyToV2<T0 = any>(client: SuiClient, args: [
|
|
985
985
|
string | TransactionObjectArgument | TransactionArgument,
|
|
986
986
|
coin.DenyCap<T0> | TransactionArgument,
|
|
987
|
-
|
|
987
|
+
boolean | TransactionArgument
|
|
988
988
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
989
989
|
function mint<T0 = any>(client: SuiClient, args: [
|
|
990
990
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -1165,7 +1165,7 @@ export declare namespace config {
|
|
|
1165
1165
|
TypeDescriptor<T0> | string,
|
|
1166
1166
|
TypeDescriptor<T1> | string,
|
|
1167
1167
|
TypeDescriptor<T2> | string
|
|
1168
|
-
]): Promise<TypedDevInspectResults<[
|
|
1168
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1169
1169
|
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
1170
1170
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1171
1171
|
T1 | TransactionArgument
|
|
@@ -1173,7 +1173,7 @@ export declare namespace config {
|
|
|
1173
1173
|
TypeDescriptor<T0> | string,
|
|
1174
1174
|
TypeDescriptor<T1> | string,
|
|
1175
1175
|
TypeDescriptor<T2> | string
|
|
1176
|
-
]): Promise<TypedDevInspectResults<[
|
|
1176
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1177
1177
|
function new_<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[config.Config<T0>]>>;
|
|
1178
1178
|
function readSetting<T0 = any, T1 = any>(client: SuiClient, args: [object_.ID | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
1179
1179
|
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
@@ -1225,7 +1225,7 @@ export declare namespace deny_list {
|
|
|
1225
1225
|
type_arguments: [];
|
|
1226
1226
|
}
|
|
1227
1227
|
interface ConfigWriteCap {
|
|
1228
|
-
dummy_field:
|
|
1228
|
+
dummy_field: boolean;
|
|
1229
1229
|
}
|
|
1230
1230
|
namespace ConfigWriteCap {
|
|
1231
1231
|
const TYPE_QNAME = "0x2::deny_list::ConfigWriteCap";
|
|
@@ -1240,7 +1240,7 @@ export declare namespace deny_list {
|
|
|
1240
1240
|
function type(): TypeDescriptor<DenyList>;
|
|
1241
1241
|
}
|
|
1242
1242
|
interface GlobalPauseKey {
|
|
1243
|
-
dummy_field:
|
|
1243
|
+
dummy_field: boolean;
|
|
1244
1244
|
}
|
|
1245
1245
|
namespace GlobalPauseKey {
|
|
1246
1246
|
const TYPE_QNAME = "0x2::deny_list::GlobalPauseKey";
|
|
@@ -1412,7 +1412,7 @@ export declare namespace deny_list {
|
|
|
1412
1412
|
bigint | TransactionArgument,
|
|
1413
1413
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1414
1414
|
string | TransactionArgument
|
|
1415
|
-
]): Promise<TypedDevInspectResults<[
|
|
1415
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1416
1416
|
function v1Remove(client: SuiClient, args: [
|
|
1417
1417
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1418
1418
|
bigint | TransactionArgument,
|
|
@@ -1430,13 +1430,13 @@ export declare namespace deny_list {
|
|
|
1430
1430
|
bigint | TransactionArgument,
|
|
1431
1431
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1432
1432
|
string | TransactionArgument
|
|
1433
|
-
]): Promise<TypedDevInspectResults<[
|
|
1433
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1434
1434
|
function v2ContainsNextEpoch(client: SuiClient, args: [
|
|
1435
1435
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1436
1436
|
bigint | TransactionArgument,
|
|
1437
1437
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1438
1438
|
string | TransactionArgument
|
|
1439
|
-
]): Promise<TypedDevInspectResults<[
|
|
1439
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1440
1440
|
function v2DisableGlobalPause(client: SuiClient, args: [
|
|
1441
1441
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1442
1442
|
bigint | TransactionArgument,
|
|
@@ -1451,12 +1451,12 @@ export declare namespace deny_list {
|
|
|
1451
1451
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1452
1452
|
bigint | TransactionArgument,
|
|
1453
1453
|
(string | TransactionObjectArgument)[] | TransactionArgument
|
|
1454
|
-
]): Promise<TypedDevInspectResults<[
|
|
1454
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1455
1455
|
function v2IsGlobalPauseEnabledNextEpoch(client: SuiClient, args: [
|
|
1456
1456
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1457
1457
|
bigint | TransactionArgument,
|
|
1458
1458
|
(string | TransactionObjectArgument)[] | TransactionArgument
|
|
1459
|
-
]): Promise<TypedDevInspectResults<[
|
|
1459
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1460
1460
|
function v2Remove(client: SuiClient, args: [
|
|
1461
1461
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1462
1462
|
bigint | TransactionArgument,
|
|
@@ -1565,7 +1565,7 @@ export declare namespace display {
|
|
|
1565
1565
|
string | TransactionArgument
|
|
1566
1566
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1567
1567
|
function fields<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1568
|
-
function isAuthorized<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1568
|
+
function isAuthorized<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1569
1569
|
function new_<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
1570
1570
|
function newWithFields<T0 = any>(client: SuiClient, args: [
|
|
1571
1571
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -1672,11 +1672,11 @@ export declare namespace dynamic_field {
|
|
|
1672
1672
|
function exists_<T0 = any>(client: SuiClient, args: [
|
|
1673
1673
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1674
1674
|
T0 | TransactionArgument
|
|
1675
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1675
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1676
1676
|
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1677
1677
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1678
1678
|
T0 | TransactionArgument
|
|
1679
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
1679
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1680
1680
|
function fieldInfo<T0 = any>(client: SuiClient, args: [
|
|
1681
1681
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1682
1682
|
T0 | TransactionArgument
|
|
@@ -1685,8 +1685,8 @@ export declare namespace dynamic_field {
|
|
|
1685
1685
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1686
1686
|
T0 | TransactionArgument
|
|
1687
1687
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
1688
|
-
function hasChildObject(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
1689
|
-
function hasChildObjectWithTy<T0 = any>(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1688
|
+
function hasChildObject(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1689
|
+
function hasChildObjectWithTy<T0 = any>(client: SuiClient, args: [string | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1690
1690
|
function hashTypeAndKey<T0 = any>(client: SuiClient, args: [string | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1691
1691
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1692
1692
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -1788,11 +1788,11 @@ export declare namespace dynamic_object_field {
|
|
|
1788
1788
|
function exists_<T0 = any>(client: SuiClient, args: [
|
|
1789
1789
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1790
1790
|
T0 | TransactionArgument
|
|
1791
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1791
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1792
1792
|
function existsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1793
1793
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1794
1794
|
T0 | TransactionArgument
|
|
1795
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
1795
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1796
1796
|
function id<T0 = any>(client: SuiClient, args: [
|
|
1797
1797
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1798
1798
|
T0 | TransactionArgument
|
|
@@ -1813,7 +1813,7 @@ export declare namespace dynamic_object_field {
|
|
|
1813
1813
|
function internalExistsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1814
1814
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1815
1815
|
T0 | TransactionArgument
|
|
1816
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
1816
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1817
1817
|
function internalRemove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1818
1818
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1819
1819
|
T0 | TransactionArgument
|
|
@@ -1860,7 +1860,7 @@ export declare namespace ecdsa_k1 {
|
|
|
1860
1860
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1861
1861
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1862
1862
|
number | TransactionArgument
|
|
1863
|
-
]): Promise<TypedDevInspectResults<[
|
|
1863
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1864
1864
|
}
|
|
1865
1865
|
}
|
|
1866
1866
|
export declare namespace ecdsa_r1 {
|
|
@@ -1897,7 +1897,7 @@ export declare namespace ecdsa_r1 {
|
|
|
1897
1897
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1898
1898
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1899
1899
|
number | TransactionArgument
|
|
1900
|
-
]): Promise<TypedDevInspectResults<[
|
|
1900
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1901
1901
|
}
|
|
1902
1902
|
}
|
|
1903
1903
|
export declare namespace ecvrf {
|
|
@@ -1920,7 +1920,7 @@ export declare namespace ecvrf {
|
|
|
1920
1920
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1921
1921
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1922
1922
|
string | TransactionObjectArgument | TransactionArgument
|
|
1923
|
-
]): Promise<TypedDevInspectResults<[
|
|
1923
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1924
1924
|
}
|
|
1925
1925
|
}
|
|
1926
1926
|
export declare namespace ed25519 {
|
|
@@ -1940,7 +1940,7 @@ export declare namespace ed25519 {
|
|
|
1940
1940
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1941
1941
|
string | TransactionObjectArgument | TransactionArgument,
|
|
1942
1942
|
string | TransactionObjectArgument | TransactionArgument
|
|
1943
|
-
]): Promise<TypedDevInspectResults<[
|
|
1943
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1944
1944
|
}
|
|
1945
1945
|
}
|
|
1946
1946
|
export declare namespace event {
|
|
@@ -2053,7 +2053,7 @@ export declare namespace groth16 {
|
|
|
2053
2053
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2054
2054
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2055
2055
|
string | TransactionObjectArgument | TransactionArgument
|
|
2056
|
-
]): Promise<TypedDevInspectResults<[
|
|
2056
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2057
2057
|
}
|
|
2058
2058
|
}
|
|
2059
2059
|
export declare namespace group_ops {
|
|
@@ -2095,7 +2095,7 @@ export declare namespace group_ops {
|
|
|
2095
2095
|
function fromBytes<T0 = any>(tx: Transaction, args: [
|
|
2096
2096
|
number | TransactionArgument,
|
|
2097
2097
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2098
|
-
|
|
2098
|
+
boolean | TransactionArgument
|
|
2099
2099
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2100
2100
|
TransactionArgument,
|
|
2101
2101
|
TransactionArgument,
|
|
@@ -2138,7 +2138,7 @@ export declare namespace group_ops {
|
|
|
2138
2138
|
];
|
|
2139
2139
|
function setAsPrefix(tx: Transaction, args: [
|
|
2140
2140
|
bigint | TransactionArgument,
|
|
2141
|
-
|
|
2141
|
+
boolean | TransactionArgument,
|
|
2142
2142
|
string | TransactionObjectArgument | TransactionArgument
|
|
2143
2143
|
]): TransactionArgument & [
|
|
2144
2144
|
TransactionArgument,
|
|
@@ -2170,11 +2170,11 @@ export declare namespace group_ops {
|
|
|
2170
2170
|
function equal<T0 = any>(client: SuiClient, args: [
|
|
2171
2171
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2172
2172
|
string | TransactionObjectArgument | TransactionArgument
|
|
2173
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2173
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2174
2174
|
function fromBytes<T0 = any>(client: SuiClient, args: [
|
|
2175
2175
|
number | TransactionArgument,
|
|
2176
2176
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2177
|
-
|
|
2177
|
+
boolean | TransactionArgument
|
|
2178
2178
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2179
2179
|
function hashTo<T0 = any>(client: SuiClient, args: [
|
|
2180
2180
|
number | TransactionArgument,
|
|
@@ -2201,7 +2201,7 @@ export declare namespace group_ops {
|
|
|
2201
2201
|
]): Promise<TypedDevInspectResults<[group_ops.Element<T2>]>>;
|
|
2202
2202
|
function setAsPrefix(client: SuiClient, args: [
|
|
2203
2203
|
bigint | TransactionArgument,
|
|
2204
|
-
|
|
2204
|
+
boolean | TransactionArgument,
|
|
2205
2205
|
string | TransactionObjectArgument | TransactionArgument
|
|
2206
2206
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
2207
2207
|
function sub<T0 = any>(client: SuiClient, args: [
|
|
@@ -2308,7 +2308,7 @@ export declare namespace kiosk {
|
|
|
2308
2308
|
profits: balance.Balance<sui.SUI>;
|
|
2309
2309
|
owner: string;
|
|
2310
2310
|
item_count: number;
|
|
2311
|
-
allow_extensions:
|
|
2311
|
+
allow_extensions: boolean;
|
|
2312
2312
|
}
|
|
2313
2313
|
namespace Kiosk {
|
|
2314
2314
|
const TYPE_QNAME = "0x2::kiosk::Kiosk";
|
|
@@ -2324,7 +2324,7 @@ export declare namespace kiosk {
|
|
|
2324
2324
|
}
|
|
2325
2325
|
interface Listing {
|
|
2326
2326
|
id: object_.ID;
|
|
2327
|
-
is_exclusive:
|
|
2327
|
+
is_exclusive: boolean;
|
|
2328
2328
|
}
|
|
2329
2329
|
namespace Listing {
|
|
2330
2330
|
const TYPE_QNAME = "0x2::kiosk::Listing";
|
|
@@ -2528,7 +2528,7 @@ export declare namespace kiosk {
|
|
|
2528
2528
|
function setAllowExtensions(tx: Transaction, args: [
|
|
2529
2529
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2530
2530
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2531
|
-
|
|
2531
|
+
boolean | TransactionArgument
|
|
2532
2532
|
]): TransactionArgument & [
|
|
2533
2533
|
TransactionArgument,
|
|
2534
2534
|
TransactionArgument,
|
|
@@ -2601,27 +2601,27 @@ export declare namespace kiosk {
|
|
|
2601
2601
|
function hasAccess(client: SuiClient, args: [
|
|
2602
2602
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2603
2603
|
string | TransactionObjectArgument | TransactionArgument
|
|
2604
|
-
]): Promise<TypedDevInspectResults<[
|
|
2604
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2605
2605
|
function hasItem(client: SuiClient, args: [
|
|
2606
2606
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2607
2607
|
object_.ID | TransactionArgument
|
|
2608
|
-
]): Promise<TypedDevInspectResults<[
|
|
2608
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2609
2609
|
function hasItemWithType<T0 = any>(client: SuiClient, args: [
|
|
2610
2610
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2611
2611
|
object_.ID | TransactionArgument
|
|
2612
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2612
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2613
2613
|
function isListed(client: SuiClient, args: [
|
|
2614
2614
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2615
2615
|
object_.ID | TransactionArgument
|
|
2616
|
-
]): Promise<TypedDevInspectResults<[
|
|
2616
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2617
2617
|
function isListedExclusively(client: SuiClient, args: [
|
|
2618
2618
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2619
2619
|
object_.ID | TransactionArgument
|
|
2620
|
-
]): Promise<TypedDevInspectResults<[
|
|
2620
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2621
2621
|
function isLocked(client: SuiClient, args: [
|
|
2622
2622
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2623
2623
|
object_.ID | TransactionArgument
|
|
2624
|
-
]): Promise<TypedDevInspectResults<[
|
|
2624
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2625
2625
|
function itemCount(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[number]>>;
|
|
2626
2626
|
function kioskOwnerCapFor(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
|
2627
2627
|
function list<T0 = any>(client: SuiClient, args: [
|
|
@@ -2693,7 +2693,7 @@ export declare namespace kiosk {
|
|
|
2693
2693
|
function setAllowExtensions(client: SuiClient, args: [
|
|
2694
2694
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2695
2695
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2696
|
-
|
|
2696
|
+
boolean | TransactionArgument
|
|
2697
2697
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
2698
2698
|
function setOwner(client: SuiClient, args: [
|
|
2699
2699
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -2727,14 +2727,14 @@ export declare namespace kiosk_extension {
|
|
|
2727
2727
|
interface Extension {
|
|
2728
2728
|
storage: bag.Bag;
|
|
2729
2729
|
permissions: bigint;
|
|
2730
|
-
is_enabled:
|
|
2730
|
+
is_enabled: boolean;
|
|
2731
2731
|
}
|
|
2732
2732
|
namespace Extension {
|
|
2733
2733
|
const TYPE_QNAME = "0x2::kiosk_extension::Extension";
|
|
2734
2734
|
function type(): TypeDescriptor<Extension>;
|
|
2735
2735
|
}
|
|
2736
2736
|
interface ExtensionKey<T0> {
|
|
2737
|
-
dummy_field:
|
|
2737
|
+
dummy_field: boolean;
|
|
2738
2738
|
}
|
|
2739
2739
|
namespace ExtensionKey {
|
|
2740
2740
|
const TYPE_QNAME = "0x2::kiosk_extension::ExtensionKey";
|
|
@@ -2810,8 +2810,8 @@ export declare namespace kiosk_extension {
|
|
|
2810
2810
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2811
2811
|
bigint | TransactionArgument
|
|
2812
2812
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2813
|
-
function canLock<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2814
|
-
function canPlace<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2813
|
+
function canLock<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2814
|
+
function canPlace<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2815
2815
|
function disable<T0 = any>(client: SuiClient, args: [
|
|
2816
2816
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2817
2817
|
string | TransactionObjectArgument | TransactionArgument
|
|
@@ -2820,8 +2820,8 @@ export declare namespace kiosk_extension {
|
|
|
2820
2820
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2821
2821
|
string | TransactionObjectArgument | TransactionArgument
|
|
2822
2822
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2823
|
-
function isEnabled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2824
|
-
function isInstalled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
2823
|
+
function isEnabled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2824
|
+
function isInstalled<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2825
2825
|
function lock<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2826
2826
|
T0 | TransactionArgument,
|
|
2827
2827
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -2934,11 +2934,11 @@ export declare namespace linked_table {
|
|
|
2934
2934
|
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2935
2935
|
string | TransactionObjectArgument | TransactionArgument,
|
|
2936
2936
|
T0 | TransactionArgument
|
|
2937
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
2937
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2938
2938
|
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [linked_table.LinkedTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2939
2939
|
function drop<T0 = any, T1 = any>(client: SuiClient, args: [linked_table.LinkedTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2940
2940
|
function front<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2941
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
2941
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2942
2942
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2943
2943
|
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
|
2944
2944
|
function next<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -3108,13 +3108,13 @@ export declare namespace object_bag {
|
|
|
3108
3108
|
function contains<T0 = any>(client: SuiClient, args: [
|
|
3109
3109
|
string | TransactionObjectArgument | TransactionArgument,
|
|
3110
3110
|
T0 | TransactionArgument
|
|
3111
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3111
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3112
3112
|
function containsWithType<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3113
3113
|
string | TransactionObjectArgument | TransactionArgument,
|
|
3114
3114
|
T0 | TransactionArgument
|
|
3115
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
3115
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3116
3116
|
function destroyEmpty(client: SuiClient, args: [object_bag.ObjectBag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
3117
|
-
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
3117
|
+
function isEmpty(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3118
3118
|
function length(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3119
3119
|
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
|
3120
3120
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -3188,9 +3188,9 @@ export declare namespace object_table {
|
|
|
3188
3188
|
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3189
3189
|
string | TransactionObjectArgument | TransactionArgument,
|
|
3190
3190
|
T0 | TransactionArgument
|
|
3191
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
3191
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3192
3192
|
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [object_table.ObjectTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3193
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
3193
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3194
3194
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3195
3195
|
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
|
3196
3196
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -3293,8 +3293,8 @@ export declare namespace package_ {
|
|
|
3293
3293
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3294
3294
|
function compatiblePolicy(client: SuiClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3295
3295
|
function depOnlyPolicy(client: SuiClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3296
|
-
function fromModule<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3297
|
-
function fromPackage<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3296
|
+
function fromModule<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3297
|
+
function fromPackage<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3298
3298
|
function makeImmutable(client: SuiClient, args: [package_.UpgradeCap | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
3299
3299
|
function onlyAdditiveUpgrades(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
3300
3300
|
function onlyDepUpgrades(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
@@ -3535,7 +3535,7 @@ export declare namespace random {
|
|
|
3535
3535
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3536
3536
|
}
|
|
3537
3537
|
namespace view {
|
|
3538
|
-
function generateBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[
|
|
3538
|
+
function generateBool(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3539
3539
|
function generateBytes(client: SuiClient, args: [
|
|
3540
3540
|
string | TransactionObjectArgument | TransactionArgument,
|
|
3541
3541
|
number | TransactionArgument
|
|
@@ -3580,7 +3580,7 @@ export declare namespace random {
|
|
|
3580
3580
|
}
|
|
3581
3581
|
export declare namespace sui {
|
|
3582
3582
|
interface SUI {
|
|
3583
|
-
dummy_field:
|
|
3583
|
+
dummy_field: boolean;
|
|
3584
3584
|
}
|
|
3585
3585
|
namespace SUI {
|
|
3586
3586
|
const TYPE_QNAME = "0x2::sui::SUI";
|
|
@@ -3657,10 +3657,10 @@ export declare namespace table {
|
|
|
3657
3657
|
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3658
3658
|
string | TransactionObjectArgument | TransactionArgument,
|
|
3659
3659
|
T0 | TransactionArgument
|
|
3660
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
3660
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3661
3661
|
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3662
3662
|
function drop<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3663
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
3663
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3664
3664
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3665
3665
|
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
|
3666
3666
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -3723,7 +3723,7 @@ export declare namespace table_vec {
|
|
|
3723
3723
|
function destroyEmpty<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3724
3724
|
function drop<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3725
3725
|
function empty<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
3726
|
-
function isEmpty<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3726
|
+
function isEmpty<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3727
3727
|
function length<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3728
3728
|
function popBack<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3729
3729
|
function pushBack<T0 = any>(client: SuiClient, args: [
|
|
@@ -3756,7 +3756,7 @@ export declare namespace token {
|
|
|
3756
3756
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<ActionRequest<T0>>;
|
|
3757
3757
|
}
|
|
3758
3758
|
interface RuleKey<T0> {
|
|
3759
|
-
is_protected:
|
|
3759
|
+
is_protected: boolean;
|
|
3760
3760
|
}
|
|
3761
3761
|
namespace RuleKey {
|
|
3762
3762
|
const TYPE_QNAME = "0x2::token::RuleKey";
|
|
@@ -3793,7 +3793,7 @@ export declare namespace token {
|
|
|
3793
3793
|
}
|
|
3794
3794
|
interface TokenPolicyCreated<T0> {
|
|
3795
3795
|
id: object_.ID;
|
|
3796
|
-
is_mutable:
|
|
3796
|
+
is_mutable: boolean;
|
|
3797
3797
|
}
|
|
3798
3798
|
namespace TokenPolicyCreated {
|
|
3799
3799
|
const TYPE_QNAME = "0x2::token::TokenPolicyCreated";
|
|
@@ -4054,16 +4054,16 @@ export declare namespace token {
|
|
|
4054
4054
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4055
4055
|
function fromCoin<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
|
4056
4056
|
function fromCoinAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4057
|
-
function hasRuleConfig<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
4057
|
+
function hasRuleConfig<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4058
4058
|
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [
|
|
4059
4059
|
TypeDescriptor<T0> | string,
|
|
4060
4060
|
TypeDescriptor<T1> | string,
|
|
4061
4061
|
TypeDescriptor<T2> | string
|
|
4062
|
-
]): Promise<TypedDevInspectResults<[
|
|
4062
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4063
4063
|
function isAllowed<T0 = any>(client: SuiClient, args: [
|
|
4064
4064
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4065
4065
|
string | TransactionObjectArgument | TransactionArgument
|
|
4066
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4066
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4067
4067
|
function join<T0 = any>(client: SuiClient, args: [
|
|
4068
4068
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4069
4069
|
token.Token<T0> | TransactionArgument
|
|
@@ -4188,7 +4188,7 @@ export declare namespace transfer {
|
|
|
4188
4188
|
}
|
|
4189
4189
|
export declare namespace transfer_policy {
|
|
4190
4190
|
interface RuleKey<T0> {
|
|
4191
|
-
dummy_field:
|
|
4191
|
+
dummy_field: boolean;
|
|
4192
4192
|
}
|
|
4193
4193
|
namespace RuleKey {
|
|
4194
4194
|
const TYPE_QNAME = "0x2::transfer_policy::RuleKey";
|
|
@@ -4368,7 +4368,7 @@ export declare namespace transfer_policy {
|
|
|
4368
4368
|
TypeDescriptor<T1> | string,
|
|
4369
4369
|
TypeDescriptor<T2> | string
|
|
4370
4370
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
4371
|
-
function hasRule<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
4371
|
+
function hasRule<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4372
4372
|
function item<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
|
4373
4373
|
function new_<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4374
4374
|
transfer_policy.TransferPolicy<T0>,
|
|
@@ -4433,7 +4433,7 @@ export declare namespace types {
|
|
|
4433
4433
|
function isOneTimeWitness<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
4434
4434
|
}
|
|
4435
4435
|
namespace view {
|
|
4436
|
-
function isOneTimeWitness<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4436
|
+
function isOneTimeWitness<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4437
4437
|
}
|
|
4438
4438
|
}
|
|
4439
4439
|
export declare namespace url {
|
|
@@ -4489,7 +4489,7 @@ export declare namespace vdf {
|
|
|
4489
4489
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4490
4490
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4491
4491
|
bigint | TransactionArgument
|
|
4492
|
-
]): Promise<TypedDevInspectResults<[
|
|
4492
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4493
4493
|
}
|
|
4494
4494
|
}
|
|
4495
4495
|
export declare namespace vec_map {
|
|
@@ -4582,7 +4582,7 @@ export declare namespace vec_map {
|
|
|
4582
4582
|
function contains<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
4583
4583
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4584
4584
|
string | TransactionObjectArgument | TransactionArgument
|
|
4585
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
4585
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4586
4586
|
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [vec_map.VecMap<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4587
4587
|
function empty<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
|
4588
4588
|
function fromKeysValues<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -4619,7 +4619,7 @@ export declare namespace vec_map {
|
|
|
4619
4619
|
T1 | TransactionArgument
|
|
4620
4620
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4621
4621
|
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]>>;
|
|
4622
|
-
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[
|
|
4622
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4623
4623
|
function keys<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[] | string]>>;
|
|
4624
4624
|
function pop<T0 = any, T1 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4625
4625
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
@@ -4674,7 +4674,7 @@ export declare namespace vec_set {
|
|
|
4674
4674
|
function contains<T0 = any>(client: SuiClient, args: [
|
|
4675
4675
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4676
4676
|
string | TransactionObjectArgument | TransactionArgument
|
|
4677
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4677
|
+
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4678
4678
|
function empty<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4679
4679
|
function fromKeys<T0 = any>(client: SuiClient, args: [(string | TransactionObjectArgument)[] | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4680
4680
|
function insert<T0 = any>(client: SuiClient, args: [
|
|
@@ -4682,7 +4682,7 @@ export declare namespace vec_set {
|
|
|
4682
4682
|
T0 | TransactionArgument
|
|
4683
4683
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4684
4684
|
function intoKeys<T0 = any>(client: SuiClient, args: [vec_set.VecSet<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0[] | string]>>;
|
|
4685
|
-
function isEmpty<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4685
|
+
function isEmpty<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4686
4686
|
function keys<T0 = any>(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4687
4687
|
function remove<T0 = any>(client: SuiClient, args: [
|
|
4688
4688
|
string | TransactionObjectArgument | TransactionArgument,
|
|
@@ -4801,7 +4801,7 @@ export declare namespace zklogin_verified_id {
|
|
|
4801
4801
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4802
4802
|
string | TransactionObjectArgument | TransactionArgument,
|
|
4803
4803
|
bigint | TransactionArgument
|
|
4804
|
-
]): Promise<TypedDevInspectResults<[
|
|
4804
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4805
4805
|
function delete_(client: SuiClient, args: [zklogin_verified_id.VerifiedID | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
4806
4806
|
function issuer(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
4807
4807
|
function keyClaimName(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
@@ -4846,7 +4846,7 @@ export declare namespace zklogin_verified_issuer {
|
|
|
4846
4846
|
string | TransactionArgument,
|
|
4847
4847
|
bigint | TransactionArgument,
|
|
4848
4848
|
string | TransactionObjectArgument | TransactionArgument
|
|
4849
|
-
]): Promise<TypedDevInspectResults<[
|
|
4849
|
+
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4850
4850
|
function delete_(client: SuiClient, args: [zklogin_verified_issuer.VerifiedIssuer | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
4851
4851
|
function issuer(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
4852
4852
|
function owner(client: SuiClient, args: [string | TransactionObjectArgument | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|