@typemove/sui 1.6.10 → 1.6.11
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 +166 -305
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x2.d.ts +559 -1475
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +334 -806
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- 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 +12 -6
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +166 -305
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +559 -1475
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +334 -806
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- 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 +12 -6
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x1.ts +166 -305
- package/src/builtin/0x2.ts +552 -1468
- package/src/builtin/0x3.ts +331 -803
- package/src/codegen/codegen.ts +12 -6
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +4 -13
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +46 -188
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +29 -78
- package/src/tests/types/testnet/0xdee9.ts +110 -346
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +245 -642
|
@@ -216,11 +216,7 @@ export namespace authority {
|
|
|
216
216
|
export namespace view {
|
|
217
217
|
export async function addAuthorizedUser<T0 = any>(
|
|
218
218
|
client: SuiClient,
|
|
219
|
-
args: [
|
|
220
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
221
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
222
|
-
string | TransactionArgument,
|
|
223
|
-
],
|
|
219
|
+
args: [string, string, string],
|
|
224
220
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
225
221
|
): Promise<TypedDevInspectResults<[]>> {
|
|
226
222
|
const tx = new Transaction();
|
|
@@ -236,7 +232,7 @@ export namespace authority {
|
|
|
236
232
|
}
|
|
237
233
|
export async function destroyEmpty<T0 = any>(
|
|
238
234
|
client: SuiClient,
|
|
239
|
-
args: [authority.Authority<T0>
|
|
235
|
+
args: [authority.Authority<T0>],
|
|
240
236
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
241
237
|
): Promise<TypedDevInspectResults<[]>> {
|
|
242
238
|
const tx = new Transaction();
|
|
@@ -252,7 +248,7 @@ export namespace authority {
|
|
|
252
248
|
}
|
|
253
249
|
export async function new_<T0 = any>(
|
|
254
250
|
client: SuiClient,
|
|
255
|
-
args: [
|
|
251
|
+
args: [string[]],
|
|
256
252
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
257
253
|
): Promise<TypedDevInspectResults<[authority.Authority<T0>]>> {
|
|
258
254
|
const tx = new Transaction();
|
|
@@ -268,7 +264,7 @@ export namespace authority {
|
|
|
268
264
|
}
|
|
269
265
|
export async function removeAll<T0 = any>(
|
|
270
266
|
client: SuiClient,
|
|
271
|
-
args: [string
|
|
267
|
+
args: [string],
|
|
272
268
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
273
269
|
): Promise<TypedDevInspectResults<[string[]]>> {
|
|
274
270
|
const tx = new Transaction();
|
|
@@ -284,11 +280,7 @@ export namespace authority {
|
|
|
284
280
|
}
|
|
285
281
|
export async function removeAuthorizedUser<T0 = any>(
|
|
286
282
|
client: SuiClient,
|
|
287
|
-
args: [
|
|
288
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
289
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
290
|
-
string | TransactionArgument,
|
|
291
|
-
],
|
|
283
|
+
args: [string, string, string],
|
|
292
284
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
293
285
|
): Promise<TypedDevInspectResults<[]>> {
|
|
294
286
|
const tx = new Transaction();
|
|
@@ -304,7 +296,7 @@ export namespace authority {
|
|
|
304
296
|
}
|
|
305
297
|
export async function verify<T0 = any>(
|
|
306
298
|
client: SuiClient,
|
|
307
|
-
args: [string
|
|
299
|
+
args: [string],
|
|
308
300
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
309
301
|
): Promise<TypedDevInspectResults<[]>> {
|
|
310
302
|
const tx = new Transaction();
|
|
@@ -320,7 +312,7 @@ export namespace authority {
|
|
|
320
312
|
}
|
|
321
313
|
export async function whitelist<T0 = any>(
|
|
322
314
|
client: SuiClient,
|
|
323
|
-
args: [string
|
|
315
|
+
args: [string],
|
|
324
316
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
325
317
|
): Promise<TypedDevInspectResults<[string[]]>> {
|
|
326
318
|
const tx = new Transaction();
|
|
@@ -938,11 +930,7 @@ export namespace dutch {
|
|
|
938
930
|
export namespace view {
|
|
939
931
|
export async function close<T0 = any, T1 = any>(
|
|
940
932
|
client: SuiClient,
|
|
941
|
-
args: [
|
|
942
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
943
|
-
dutch.Auction<T0, T1> | TransactionArgument,
|
|
944
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
945
|
-
],
|
|
933
|
+
args: [string, dutch.Auction<T0, T1>, string],
|
|
946
934
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
947
935
|
): Promise<TypedDevInspectResults<[]>> {
|
|
948
936
|
const tx = new Transaction();
|
|
@@ -959,13 +947,13 @@ export namespace dutch {
|
|
|
959
947
|
export async function delivery<T0 = any, T1 = any>(
|
|
960
948
|
client: SuiClient,
|
|
961
949
|
args: [
|
|
962
|
-
string
|
|
963
|
-
dutch.Auction<T0, T1
|
|
964
|
-
bigint
|
|
965
|
-
bigint
|
|
966
|
-
bigint
|
|
967
|
-
_0x1.option.Option<bigint
|
|
968
|
-
string
|
|
950
|
+
string,
|
|
951
|
+
dutch.Auction<T0, T1>,
|
|
952
|
+
bigint,
|
|
953
|
+
bigint,
|
|
954
|
+
bigint,
|
|
955
|
+
_0x1.option.Option<bigint>,
|
|
956
|
+
string,
|
|
969
957
|
],
|
|
970
958
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
971
959
|
): Promise<
|
|
@@ -1002,7 +990,7 @@ export namespace dutch {
|
|
|
1002
990
|
}
|
|
1003
991
|
export async function getAuctionBids<T0 = any, T1 = any>(
|
|
1004
992
|
client: SuiClient,
|
|
1005
|
-
args: [string
|
|
993
|
+
args: [string],
|
|
1006
994
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1007
995
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
1008
996
|
const tx = new Transaction();
|
|
@@ -1018,7 +1006,7 @@ export namespace dutch {
|
|
|
1018
1006
|
}
|
|
1019
1007
|
export async function getAuctionPeriod<T0 = any, T1 = any>(
|
|
1020
1008
|
client: SuiClient,
|
|
1021
|
-
args: [string
|
|
1009
|
+
args: [string],
|
|
1022
1010
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1023
1011
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
1024
1012
|
const tx = new Transaction();
|
|
@@ -1034,7 +1022,7 @@ export namespace dutch {
|
|
|
1034
1022
|
}
|
|
1035
1023
|
export async function getBidIndex<T0 = any, T1 = any>(
|
|
1036
1024
|
client: SuiClient,
|
|
1037
|
-
args: [string
|
|
1025
|
+
args: [string],
|
|
1038
1026
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1039
1027
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1040
1028
|
const tx = new Transaction();
|
|
@@ -1050,10 +1038,7 @@ export namespace dutch {
|
|
|
1050
1038
|
}
|
|
1051
1039
|
export async function getDecayedPrice<T0 = any, T1 = any>(
|
|
1052
1040
|
client: SuiClient,
|
|
1053
|
-
args: [
|
|
1054
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1055
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1056
|
-
],
|
|
1041
|
+
args: [string, string],
|
|
1057
1042
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1058
1043
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1059
1044
|
const tx = new Transaction();
|
|
@@ -1069,7 +1054,7 @@ export namespace dutch {
|
|
|
1069
1054
|
}
|
|
1070
1055
|
export async function getOwnerships<T0 = any, T1 = any>(
|
|
1071
1056
|
client: SuiClient,
|
|
1072
|
-
args: [string
|
|
1057
|
+
args: [string],
|
|
1073
1058
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1074
1059
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
1075
1060
|
const tx = new Transaction();
|
|
@@ -1085,10 +1070,7 @@ export namespace dutch {
|
|
|
1085
1070
|
}
|
|
1086
1071
|
export async function getUserBidInfo<T0 = any, T1 = any>(
|
|
1087
1072
|
client: SuiClient,
|
|
1088
|
-
args: [
|
|
1089
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1090
|
-
bigint | TransactionArgument,
|
|
1091
|
-
],
|
|
1073
|
+
args: [string, bigint],
|
|
1092
1074
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1093
1075
|
): Promise<
|
|
1094
1076
|
TypedDevInspectResults<[bigint, bigint, bigint, bigint, string]>
|
|
@@ -1106,14 +1088,7 @@ export namespace dutch {
|
|
|
1106
1088
|
}
|
|
1107
1089
|
export async function new_<T0 = any, T1 = any>(
|
|
1108
1090
|
client: SuiClient,
|
|
1109
|
-
args: [
|
|
1110
|
-
bigint | TransactionArgument,
|
|
1111
|
-
bigint | TransactionArgument,
|
|
1112
|
-
bigint | TransactionArgument,
|
|
1113
|
-
bigint | TransactionArgument,
|
|
1114
|
-
bigint | TransactionArgument,
|
|
1115
|
-
boolean | TransactionArgument,
|
|
1116
|
-
],
|
|
1091
|
+
args: [bigint, bigint, bigint, bigint, bigint, boolean],
|
|
1117
1092
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1118
1093
|
): Promise<TypedDevInspectResults<[dutch.Auction<T0, T1>]>> {
|
|
1119
1094
|
const tx = new Transaction();
|
|
@@ -1129,16 +1104,7 @@ export namespace dutch {
|
|
|
1129
1104
|
}
|
|
1130
1105
|
export async function newBid<T0 = any, T1 = any, T2 = any>(
|
|
1131
1106
|
client: SuiClient,
|
|
1132
|
-
args: [
|
|
1133
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1134
|
-
bigint | TransactionArgument,
|
|
1135
|
-
bigint | TransactionArgument,
|
|
1136
|
-
bigint | TransactionArgument,
|
|
1137
|
-
bigint | TransactionArgument,
|
|
1138
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1139
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1140
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1141
|
-
],
|
|
1107
|
+
args: [string, bigint, bigint, bigint, bigint, string[], string, string],
|
|
1142
1108
|
typeArguments: [
|
|
1143
1109
|
TypeDescriptor<T0> | string,
|
|
1144
1110
|
TypeDescriptor<T1> | string,
|
|
@@ -1160,11 +1126,7 @@ export namespace dutch {
|
|
|
1160
1126
|
}
|
|
1161
1127
|
export async function removeBid<T0 = any, T1 = any>(
|
|
1162
1128
|
client: SuiClient,
|
|
1163
|
-
args: [
|
|
1164
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1165
|
-
bigint | TransactionArgument,
|
|
1166
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1167
|
-
],
|
|
1129
|
+
args: [string, bigint, string],
|
|
1168
1130
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1169
1131
|
): Promise<TypedDevInspectResults<[]>> {
|
|
1170
1132
|
const tx = new Transaction();
|
|
@@ -1180,7 +1142,7 @@ export namespace dutch {
|
|
|
1180
1142
|
}
|
|
1181
1143
|
export async function totalBidSize<T0 = any, T1 = any>(
|
|
1182
1144
|
client: SuiClient,
|
|
1183
|
-
args: [string
|
|
1145
|
+
args: [string],
|
|
1184
1146
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1185
1147
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1186
1148
|
const tx = new Transaction();
|
|
@@ -1196,11 +1158,7 @@ export namespace dutch {
|
|
|
1196
1158
|
}
|
|
1197
1159
|
export async function updateRemoveBidAbility<T0 = any, T1 = any>(
|
|
1198
1160
|
client: SuiClient,
|
|
1199
|
-
args: [
|
|
1200
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1201
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1202
|
-
boolean | TransactionArgument,
|
|
1203
|
-
],
|
|
1161
|
+
args: [string, string, boolean],
|
|
1204
1162
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1205
1163
|
): Promise<TypedDevInspectResults<[]>> {
|
|
1206
1164
|
const tx = new Transaction();
|
|
@@ -1441,7 +1399,7 @@ export namespace i64 {
|
|
|
1441
1399
|
export namespace view {
|
|
1442
1400
|
export async function abs(
|
|
1443
1401
|
client: SuiClient,
|
|
1444
|
-
args: [string
|
|
1402
|
+
args: [string],
|
|
1445
1403
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1446
1404
|
const tx = new Transaction();
|
|
1447
1405
|
builder.abs(tx, args);
|
|
@@ -1456,10 +1414,7 @@ export namespace i64 {
|
|
|
1456
1414
|
}
|
|
1457
1415
|
export async function add(
|
|
1458
1416
|
client: SuiClient,
|
|
1459
|
-
args: [
|
|
1460
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1461
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1462
|
-
],
|
|
1417
|
+
args: [string, string],
|
|
1463
1418
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1464
1419
|
const tx = new Transaction();
|
|
1465
1420
|
builder.add(tx, args);
|
|
@@ -1474,7 +1429,7 @@ export namespace i64 {
|
|
|
1474
1429
|
}
|
|
1475
1430
|
export async function asU64(
|
|
1476
1431
|
client: SuiClient,
|
|
1477
|
-
args: [string
|
|
1432
|
+
args: [string],
|
|
1478
1433
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1479
1434
|
const tx = new Transaction();
|
|
1480
1435
|
builder.asU64(tx, args);
|
|
@@ -1489,10 +1444,7 @@ export namespace i64 {
|
|
|
1489
1444
|
}
|
|
1490
1445
|
export async function compare(
|
|
1491
1446
|
client: SuiClient,
|
|
1492
|
-
args: [
|
|
1493
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1494
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1495
|
-
],
|
|
1447
|
+
args: [string, string],
|
|
1496
1448
|
): Promise<TypedDevInspectResults<[number]>> {
|
|
1497
1449
|
const tx = new Transaction();
|
|
1498
1450
|
builder.compare(tx, args);
|
|
@@ -1507,10 +1459,7 @@ export namespace i64 {
|
|
|
1507
1459
|
}
|
|
1508
1460
|
export async function div(
|
|
1509
1461
|
client: SuiClient,
|
|
1510
|
-
args: [
|
|
1511
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1512
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1513
|
-
],
|
|
1462
|
+
args: [string, string],
|
|
1514
1463
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1515
1464
|
const tx = new Transaction();
|
|
1516
1465
|
builder.div(tx, args);
|
|
@@ -1525,7 +1474,7 @@ export namespace i64 {
|
|
|
1525
1474
|
}
|
|
1526
1475
|
export async function from(
|
|
1527
1476
|
client: SuiClient,
|
|
1528
|
-
args: [bigint
|
|
1477
|
+
args: [bigint],
|
|
1529
1478
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1530
1479
|
const tx = new Transaction();
|
|
1531
1480
|
builder.from(tx, args);
|
|
@@ -1540,7 +1489,7 @@ export namespace i64 {
|
|
|
1540
1489
|
}
|
|
1541
1490
|
export async function isNeg(
|
|
1542
1491
|
client: SuiClient,
|
|
1543
|
-
args: [string
|
|
1492
|
+
args: [string],
|
|
1544
1493
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
1545
1494
|
const tx = new Transaction();
|
|
1546
1495
|
builder.isNeg(tx, args);
|
|
@@ -1555,7 +1504,7 @@ export namespace i64 {
|
|
|
1555
1504
|
}
|
|
1556
1505
|
export async function isZero(
|
|
1557
1506
|
client: SuiClient,
|
|
1558
|
-
args: [string
|
|
1507
|
+
args: [string],
|
|
1559
1508
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
1560
1509
|
const tx = new Transaction();
|
|
1561
1510
|
builder.isZero(tx, args);
|
|
@@ -1570,10 +1519,7 @@ export namespace i64 {
|
|
|
1570
1519
|
}
|
|
1571
1520
|
export async function mul(
|
|
1572
1521
|
client: SuiClient,
|
|
1573
|
-
args: [
|
|
1574
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1575
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1576
|
-
],
|
|
1522
|
+
args: [string, string],
|
|
1577
1523
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1578
1524
|
const tx = new Transaction();
|
|
1579
1525
|
builder.mul(tx, args);
|
|
@@ -1588,7 +1534,7 @@ export namespace i64 {
|
|
|
1588
1534
|
}
|
|
1589
1535
|
export async function neg(
|
|
1590
1536
|
client: SuiClient,
|
|
1591
|
-
args: [string
|
|
1537
|
+
args: [string],
|
|
1592
1538
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1593
1539
|
const tx = new Transaction();
|
|
1594
1540
|
builder.neg(tx, args);
|
|
@@ -1603,7 +1549,7 @@ export namespace i64 {
|
|
|
1603
1549
|
}
|
|
1604
1550
|
export async function negFrom(
|
|
1605
1551
|
client: SuiClient,
|
|
1606
|
-
args: [bigint
|
|
1552
|
+
args: [bigint],
|
|
1607
1553
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1608
1554
|
const tx = new Transaction();
|
|
1609
1555
|
builder.negFrom(tx, args);
|
|
@@ -1618,10 +1564,7 @@ export namespace i64 {
|
|
|
1618
1564
|
}
|
|
1619
1565
|
export async function sub(
|
|
1620
1566
|
client: SuiClient,
|
|
1621
|
-
args: [
|
|
1622
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1623
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1624
|
-
],
|
|
1567
|
+
args: [string, string],
|
|
1625
1568
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1626
1569
|
const tx = new Transaction();
|
|
1627
1570
|
builder.sub(tx, args);
|
|
@@ -2489,11 +2432,7 @@ export namespace linked_list {
|
|
|
2489
2432
|
export namespace view {
|
|
2490
2433
|
export async function borrow<T0 = any, T1 = any>(
|
|
2491
2434
|
client: SuiClient,
|
|
2492
|
-
args: [
|
|
2493
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2494
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2495
|
-
T0 | TransactionArgument,
|
|
2496
|
-
],
|
|
2435
|
+
args: [string, string, T0],
|
|
2497
2436
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2498
2437
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
2499
2438
|
const tx = new Transaction();
|
|
@@ -2509,11 +2448,7 @@ export namespace linked_list {
|
|
|
2509
2448
|
}
|
|
2510
2449
|
export async function borrowMut<T0 = any, T1 = any>(
|
|
2511
2450
|
client: SuiClient,
|
|
2512
|
-
args: [
|
|
2513
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2514
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2515
|
-
T0 | TransactionArgument,
|
|
2516
|
-
],
|
|
2451
|
+
args: [string, string, T0],
|
|
2517
2452
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2518
2453
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
2519
2454
|
const tx = new Transaction();
|
|
@@ -2529,10 +2464,7 @@ export namespace linked_list {
|
|
|
2529
2464
|
}
|
|
2530
2465
|
export async function chain<T0 = any, T1 = any>(
|
|
2531
2466
|
client: SuiClient,
|
|
2532
|
-
args: [
|
|
2533
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2534
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2535
|
-
],
|
|
2467
|
+
args: [string, string],
|
|
2536
2468
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2537
2469
|
): Promise<TypedDevInspectResults<[]>> {
|
|
2538
2470
|
const tx = new Transaction();
|
|
@@ -2548,11 +2480,7 @@ export namespace linked_list {
|
|
|
2548
2480
|
}
|
|
2549
2481
|
export async function contains<T0 = any, T1 = any>(
|
|
2550
2482
|
client: SuiClient,
|
|
2551
|
-
args: [
|
|
2552
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2553
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2554
|
-
T0 | TransactionArgument,
|
|
2555
|
-
],
|
|
2483
|
+
args: [string, string, T0],
|
|
2556
2484
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2557
2485
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
2558
2486
|
const tx = new Transaction();
|
|
@@ -2568,11 +2496,7 @@ export namespace linked_list {
|
|
|
2568
2496
|
}
|
|
2569
2497
|
export async function delete_<T0 = any, T1 = any>(
|
|
2570
2498
|
client: SuiClient,
|
|
2571
|
-
args: [
|
|
2572
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2573
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2574
|
-
T0 | TransactionArgument,
|
|
2575
|
-
],
|
|
2499
|
+
args: [string, string, T0],
|
|
2576
2500
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2577
2501
|
): Promise<TypedDevInspectResults<[T1]>> {
|
|
2578
2502
|
const tx = new Transaction();
|
|
@@ -2588,7 +2512,7 @@ export namespace linked_list {
|
|
|
2588
2512
|
}
|
|
2589
2513
|
export async function first<T0 = any, T1 = any>(
|
|
2590
2514
|
client: SuiClient,
|
|
2591
|
-
args: [string
|
|
2515
|
+
args: [string],
|
|
2592
2516
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2593
2517
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2594
2518
|
const tx = new Transaction();
|
|
@@ -2604,7 +2528,7 @@ export namespace linked_list {
|
|
|
2604
2528
|
}
|
|
2605
2529
|
export async function isEmpty<T0 = any, T1 = any>(
|
|
2606
2530
|
client: SuiClient,
|
|
2607
|
-
args: [string
|
|
2531
|
+
args: [string],
|
|
2608
2532
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2609
2533
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
2610
2534
|
const tx = new Transaction();
|
|
@@ -2620,7 +2544,7 @@ export namespace linked_list {
|
|
|
2620
2544
|
}
|
|
2621
2545
|
export async function last<T0 = any, T1 = any>(
|
|
2622
2546
|
client: SuiClient,
|
|
2623
|
-
args: [string
|
|
2547
|
+
args: [string],
|
|
2624
2548
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2625
2549
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2626
2550
|
const tx = new Transaction();
|
|
@@ -2636,7 +2560,7 @@ export namespace linked_list {
|
|
|
2636
2560
|
}
|
|
2637
2561
|
export async function length<T0 = any, T1 = any>(
|
|
2638
2562
|
client: SuiClient,
|
|
2639
|
-
args: [string
|
|
2563
|
+
args: [string],
|
|
2640
2564
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2641
2565
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
2642
2566
|
const tx = new Transaction();
|
|
@@ -2652,7 +2576,7 @@ export namespace linked_list {
|
|
|
2652
2576
|
}
|
|
2653
2577
|
export async function new_<T0 = any, T1 = any>(
|
|
2654
2578
|
client: SuiClient,
|
|
2655
|
-
args: [_0x2.object_.ID
|
|
2579
|
+
args: [_0x2.object_.ID],
|
|
2656
2580
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2657
2581
|
): Promise<TypedDevInspectResults<[linked_list.LinkedList<T0, T1>]>> {
|
|
2658
2582
|
const tx = new Transaction();
|
|
@@ -2668,11 +2592,7 @@ export namespace linked_list {
|
|
|
2668
2592
|
}
|
|
2669
2593
|
export async function newNode<T0 = any, T1 = any>(
|
|
2670
2594
|
client: SuiClient,
|
|
2671
|
-
args: [
|
|
2672
|
-
T1 | TransactionArgument,
|
|
2673
|
-
_0x1.option.Option<T0> | TransactionArgument,
|
|
2674
|
-
_0x1.option.Option<T0> | TransactionArgument,
|
|
2675
|
-
],
|
|
2595
|
+
args: [T1, _0x1.option.Option<T0>, _0x1.option.Option<T0>],
|
|
2676
2596
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2677
2597
|
): Promise<TypedDevInspectResults<[linked_list.Node<T0, T1>]>> {
|
|
2678
2598
|
const tx = new Transaction();
|
|
@@ -2688,11 +2608,7 @@ export namespace linked_list {
|
|
|
2688
2608
|
}
|
|
2689
2609
|
export async function next<T0 = any, T1 = any>(
|
|
2690
2610
|
client: SuiClient,
|
|
2691
|
-
args: [
|
|
2692
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2693
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2694
|
-
T0 | TransactionArgument,
|
|
2695
|
-
],
|
|
2611
|
+
args: [string, string, T0],
|
|
2696
2612
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2697
2613
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2698
2614
|
const tx = new Transaction();
|
|
@@ -2708,10 +2624,7 @@ export namespace linked_list {
|
|
|
2708
2624
|
}
|
|
2709
2625
|
export async function popBack<T0 = any, T1 = any>(
|
|
2710
2626
|
client: SuiClient,
|
|
2711
|
-
args: [
|
|
2712
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2713
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2714
|
-
],
|
|
2627
|
+
args: [string, string],
|
|
2715
2628
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2716
2629
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
2717
2630
|
const tx = new Transaction();
|
|
@@ -2727,10 +2640,7 @@ export namespace linked_list {
|
|
|
2727
2640
|
}
|
|
2728
2641
|
export async function popFront<T0 = any, T1 = any>(
|
|
2729
2642
|
client: SuiClient,
|
|
2730
|
-
args: [
|
|
2731
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2732
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2733
|
-
],
|
|
2643
|
+
args: [string, string],
|
|
2734
2644
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2735
2645
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
2736
2646
|
const tx = new Transaction();
|
|
@@ -2746,10 +2656,7 @@ export namespace linked_list {
|
|
|
2746
2656
|
}
|
|
2747
2657
|
export async function popNode<T0 = any, T1 = any>(
|
|
2748
2658
|
client: SuiClient,
|
|
2749
|
-
args: [
|
|
2750
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2751
|
-
T0 | TransactionArgument,
|
|
2752
|
-
],
|
|
2659
|
+
args: [string, T0],
|
|
2753
2660
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2754
2661
|
): Promise<TypedDevInspectResults<[T1]>> {
|
|
2755
2662
|
const tx = new Transaction();
|
|
@@ -2765,11 +2672,7 @@ export namespace linked_list {
|
|
|
2765
2672
|
}
|
|
2766
2673
|
export async function prepareNode<T0 = any, T1 = any>(
|
|
2767
2674
|
client: SuiClient,
|
|
2768
|
-
args: [
|
|
2769
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2770
|
-
T0 | TransactionArgument,
|
|
2771
|
-
T1 | TransactionArgument,
|
|
2772
|
-
],
|
|
2675
|
+
args: [string, T0, T1],
|
|
2773
2676
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2774
2677
|
): Promise<TypedDevInspectResults<[]>> {
|
|
2775
2678
|
const tx = new Transaction();
|
|
@@ -2785,11 +2688,7 @@ export namespace linked_list {
|
|
|
2785
2688
|
}
|
|
2786
2689
|
export async function prev<T0 = any, T1 = any>(
|
|
2787
2690
|
client: SuiClient,
|
|
2788
|
-
args: [
|
|
2789
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2790
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2791
|
-
T0 | TransactionArgument,
|
|
2792
|
-
],
|
|
2691
|
+
args: [string, string, T0],
|
|
2793
2692
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2794
2693
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2795
2694
|
const tx = new Transaction();
|
|
@@ -2805,12 +2704,7 @@ export namespace linked_list {
|
|
|
2805
2704
|
}
|
|
2806
2705
|
export async function pushBack<T0 = any, T1 = any>(
|
|
2807
2706
|
client: SuiClient,
|
|
2808
|
-
args: [
|
|
2809
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2810
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2811
|
-
T0 | TransactionArgument,
|
|
2812
|
-
T1 | TransactionArgument,
|
|
2813
|
-
],
|
|
2707
|
+
args: [string, string, T0, T1],
|
|
2814
2708
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2815
2709
|
): Promise<TypedDevInspectResults<[]>> {
|
|
2816
2710
|
const tx = new Transaction();
|
|
@@ -2826,12 +2720,7 @@ export namespace linked_list {
|
|
|
2826
2720
|
}
|
|
2827
2721
|
export async function pushFront<T0 = any, T1 = any>(
|
|
2828
2722
|
client: SuiClient,
|
|
2829
|
-
args: [
|
|
2830
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2831
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2832
|
-
T0 | TransactionArgument,
|
|
2833
|
-
T1 | TransactionArgument,
|
|
2834
|
-
],
|
|
2723
|
+
args: [string, string, T0, T1],
|
|
2835
2724
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2836
2725
|
): Promise<TypedDevInspectResults<[]>> {
|
|
2837
2726
|
const tx = new Transaction();
|
|
@@ -2847,11 +2736,7 @@ export namespace linked_list {
|
|
|
2847
2736
|
}
|
|
2848
2737
|
export async function pushNode<T0 = any, T1 = any>(
|
|
2849
2738
|
client: SuiClient,
|
|
2850
|
-
args: [
|
|
2851
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2852
|
-
T0 | TransactionArgument,
|
|
2853
|
-
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2854
|
-
],
|
|
2739
|
+
args: [string, T0, linked_list.Node<T0, T1>],
|
|
2855
2740
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2856
2741
|
): Promise<TypedDevInspectResults<[]>> {
|
|
2857
2742
|
const tx = new Transaction();
|
|
@@ -2867,12 +2752,7 @@ export namespace linked_list {
|
|
|
2867
2752
|
}
|
|
2868
2753
|
export async function putBack<T0 = any, T1 = any>(
|
|
2869
2754
|
client: SuiClient,
|
|
2870
|
-
args: [
|
|
2871
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2872
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2873
|
-
T0 | TransactionArgument,
|
|
2874
|
-
T1 | TransactionArgument,
|
|
2875
|
-
],
|
|
2755
|
+
args: [string, string, T0, T1],
|
|
2876
2756
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2877
2757
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
|
|
2878
2758
|
const tx = new Transaction();
|
|
@@ -2888,12 +2768,7 @@ export namespace linked_list {
|
|
|
2888
2768
|
}
|
|
2889
2769
|
export async function putFront<T0 = any, T1 = any>(
|
|
2890
2770
|
client: SuiClient,
|
|
2891
|
-
args: [
|
|
2892
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2893
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2894
|
-
T0 | TransactionArgument,
|
|
2895
|
-
T1 | TransactionArgument,
|
|
2896
|
-
],
|
|
2771
|
+
args: [string, string, T0, T1],
|
|
2897
2772
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2898
2773
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
|
|
2899
2774
|
const tx = new Transaction();
|
|
@@ -2909,11 +2784,7 @@ export namespace linked_list {
|
|
|
2909
2784
|
}
|
|
2910
2785
|
export async function putNode<T0 = any, T1 = any>(
|
|
2911
2786
|
client: SuiClient,
|
|
2912
|
-
args: [
|
|
2913
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2914
|
-
T0 | TransactionArgument,
|
|
2915
|
-
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2916
|
-
],
|
|
2787
|
+
args: [string, T0, linked_list.Node<T0, T1>],
|
|
2917
2788
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2918
2789
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
|
|
2919
2790
|
const tx = new Transaction();
|
|
@@ -2929,11 +2800,7 @@ export namespace linked_list {
|
|
|
2929
2800
|
}
|
|
2930
2801
|
export async function remove<T0 = any, T1 = any>(
|
|
2931
2802
|
client: SuiClient,
|
|
2932
|
-
args: [
|
|
2933
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2934
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2935
|
-
T0 | TransactionArgument,
|
|
2936
|
-
],
|
|
2803
|
+
args: [string, string, T0],
|
|
2937
2804
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2938
2805
|
): Promise<TypedDevInspectResults<[T1]>> {
|
|
2939
2806
|
const tx = new Transaction();
|
|
@@ -2949,10 +2816,7 @@ export namespace linked_list {
|
|
|
2949
2816
|
}
|
|
2950
2817
|
export async function takeBack<T0 = any, T1 = any>(
|
|
2951
2818
|
client: SuiClient,
|
|
2952
|
-
args: [
|
|
2953
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2954
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2955
|
-
],
|
|
2819
|
+
args: [string, string],
|
|
2956
2820
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2957
2821
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
2958
2822
|
const tx = new Transaction();
|
|
@@ -2968,10 +2832,7 @@ export namespace linked_list {
|
|
|
2968
2832
|
}
|
|
2969
2833
|
export async function takeFront<T0 = any, T1 = any>(
|
|
2970
2834
|
client: SuiClient,
|
|
2971
|
-
args: [
|
|
2972
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2973
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2974
|
-
],
|
|
2835
|
+
args: [string, string],
|
|
2975
2836
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2976
2837
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
2977
2838
|
const tx = new Transaction();
|
|
@@ -2987,10 +2848,7 @@ export namespace linked_list {
|
|
|
2987
2848
|
}
|
|
2988
2849
|
export async function takeNode<T0 = any, T1 = any>(
|
|
2989
2850
|
client: SuiClient,
|
|
2990
|
-
args: [
|
|
2991
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
2992
|
-
T0 | TransactionArgument,
|
|
2993
|
-
],
|
|
2851
|
+
args: [string, T0],
|
|
2994
2852
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2995
2853
|
): Promise<TypedDevInspectResults<[T1]>> {
|
|
2996
2854
|
const tx = new Transaction();
|
|
@@ -5608,11 +5466,7 @@ export namespace single_collateral {
|
|
|
5608
5466
|
export namespace view {
|
|
5609
5467
|
export async function addAuthorizedUser(
|
|
5610
5468
|
client: SuiClient,
|
|
5611
|
-
args: [
|
|
5612
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5613
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5614
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5615
|
-
],
|
|
5469
|
+
args: [string, string, string[]],
|
|
5616
5470
|
): Promise<TypedDevInspectResults<[]>> {
|
|
5617
5471
|
const tx = new Transaction();
|
|
5618
5472
|
builder.addAuthorizedUser(tx, args);
|
|
@@ -5631,12 +5485,7 @@ export namespace single_collateral {
|
|
|
5631
5485
|
T2 = any,
|
|
5632
5486
|
>(
|
|
5633
5487
|
client: SuiClient,
|
|
5634
|
-
args: [
|
|
5635
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5636
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5637
|
-
bigint | TransactionArgument,
|
|
5638
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5639
|
-
],
|
|
5488
|
+
args: [string, string, bigint, string[]],
|
|
5640
5489
|
typeArguments: [
|
|
5641
5490
|
TypeDescriptor<T0> | string,
|
|
5642
5491
|
TypeDescriptor<T1> | string,
|
|
@@ -5660,11 +5509,7 @@ export namespace single_collateral {
|
|
|
5660
5509
|
T2 = any,
|
|
5661
5510
|
>(
|
|
5662
5511
|
client: SuiClient,
|
|
5663
|
-
args: [
|
|
5664
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5665
|
-
bigint | TransactionArgument,
|
|
5666
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5667
|
-
],
|
|
5512
|
+
args: [string, bigint, string[]],
|
|
5668
5513
|
typeArguments: [
|
|
5669
5514
|
TypeDescriptor<T0> | string,
|
|
5670
5515
|
TypeDescriptor<T1> | string,
|
|
@@ -5688,12 +5533,7 @@ export namespace single_collateral {
|
|
|
5688
5533
|
}
|
|
5689
5534
|
export async function authorizedDelivery<T0 = any, T1 = any, T2 = any>(
|
|
5690
5535
|
client: SuiClient,
|
|
5691
|
-
args: [
|
|
5692
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5693
|
-
bigint | TransactionArgument,
|
|
5694
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5695
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5696
|
-
],
|
|
5536
|
+
args: [string, bigint, string, string],
|
|
5697
5537
|
typeArguments: [
|
|
5698
5538
|
TypeDescriptor<T0> | string,
|
|
5699
5539
|
TypeDescriptor<T1> | string,
|
|
@@ -5718,28 +5558,28 @@ export namespace single_collateral {
|
|
|
5718
5558
|
>(
|
|
5719
5559
|
client: SuiClient,
|
|
5720
5560
|
args: [
|
|
5721
|
-
string
|
|
5722
|
-
string
|
|
5723
|
-
bigint
|
|
5724
|
-
number
|
|
5725
|
-
bigint
|
|
5726
|
-
bigint
|
|
5727
|
-
bigint
|
|
5728
|
-
bigint
|
|
5729
|
-
bigint
|
|
5730
|
-
bigint
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
bigint
|
|
5735
|
-
bigint
|
|
5736
|
-
bigint
|
|
5737
|
-
bigint
|
|
5738
|
-
bigint
|
|
5739
|
-
bigint
|
|
5740
|
-
bigint
|
|
5741
|
-
boolean
|
|
5742
|
-
|
|
5561
|
+
string,
|
|
5562
|
+
string,
|
|
5563
|
+
bigint,
|
|
5564
|
+
number,
|
|
5565
|
+
bigint,
|
|
5566
|
+
bigint,
|
|
5567
|
+
bigint,
|
|
5568
|
+
bigint,
|
|
5569
|
+
bigint,
|
|
5570
|
+
bigint,
|
|
5571
|
+
string[],
|
|
5572
|
+
string[],
|
|
5573
|
+
string[],
|
|
5574
|
+
bigint,
|
|
5575
|
+
bigint,
|
|
5576
|
+
bigint,
|
|
5577
|
+
bigint,
|
|
5578
|
+
bigint,
|
|
5579
|
+
bigint,
|
|
5580
|
+
bigint,
|
|
5581
|
+
boolean,
|
|
5582
|
+
string[],
|
|
5743
5583
|
],
|
|
5744
5584
|
typeArguments: [
|
|
5745
5585
|
TypeDescriptor<T0> | string,
|
|
@@ -5764,11 +5604,7 @@ export namespace single_collateral {
|
|
|
5764
5604
|
T2 = any,
|
|
5765
5605
|
>(
|
|
5766
5606
|
client: SuiClient,
|
|
5767
|
-
args: [
|
|
5768
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5769
|
-
bigint | TransactionArgument,
|
|
5770
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5771
|
-
],
|
|
5607
|
+
args: [string, bigint, string[]],
|
|
5772
5608
|
typeArguments: [
|
|
5773
5609
|
TypeDescriptor<T0> | string,
|
|
5774
5610
|
TypeDescriptor<T1> | string,
|
|
@@ -5796,11 +5632,7 @@ export namespace single_collateral {
|
|
|
5796
5632
|
T2 = any,
|
|
5797
5633
|
>(
|
|
5798
5634
|
client: SuiClient,
|
|
5799
|
-
args: [
|
|
5800
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5801
|
-
bigint | TransactionArgument,
|
|
5802
|
-
bigint | TransactionArgument,
|
|
5803
|
-
],
|
|
5635
|
+
args: [string, bigint, bigint],
|
|
5804
5636
|
typeArguments: [
|
|
5805
5637
|
TypeDescriptor<T0> | string,
|
|
5806
5638
|
TypeDescriptor<T1> | string,
|
|
@@ -5825,16 +5657,16 @@ export namespace single_collateral {
|
|
|
5825
5657
|
>(
|
|
5826
5658
|
client: SuiClient,
|
|
5827
5659
|
args: [
|
|
5828
|
-
string
|
|
5829
|
-
bigint
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
bigint
|
|
5834
|
-
bigint
|
|
5835
|
-
bigint
|
|
5836
|
-
bigint
|
|
5837
|
-
bigint
|
|
5660
|
+
string,
|
|
5661
|
+
bigint,
|
|
5662
|
+
string[],
|
|
5663
|
+
string[],
|
|
5664
|
+
string[],
|
|
5665
|
+
bigint,
|
|
5666
|
+
bigint,
|
|
5667
|
+
bigint,
|
|
5668
|
+
bigint,
|
|
5669
|
+
bigint,
|
|
5838
5670
|
],
|
|
5839
5671
|
typeArguments: [
|
|
5840
5672
|
TypeDescriptor<T0> | string,
|
|
@@ -5859,15 +5691,7 @@ export namespace single_collateral {
|
|
|
5859
5691
|
T2 = any,
|
|
5860
5692
|
>(
|
|
5861
5693
|
client: SuiClient,
|
|
5862
|
-
args: [
|
|
5863
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5864
|
-
bigint | TransactionArgument,
|
|
5865
|
-
bigint | TransactionArgument,
|
|
5866
|
-
bigint | TransactionArgument,
|
|
5867
|
-
bigint | TransactionArgument,
|
|
5868
|
-
bigint | TransactionArgument,
|
|
5869
|
-
bigint | TransactionArgument,
|
|
5870
|
-
],
|
|
5694
|
+
args: [string, bigint, bigint, bigint, bigint, bigint, bigint],
|
|
5871
5695
|
typeArguments: [
|
|
5872
5696
|
TypeDescriptor<T0> | string,
|
|
5873
5697
|
TypeDescriptor<T1> | string,
|
|
@@ -5887,10 +5711,7 @@ export namespace single_collateral {
|
|
|
5887
5711
|
}
|
|
5888
5712
|
export async function claim<T0 = any, T1 = any, T2 = any>(
|
|
5889
5713
|
client: SuiClient,
|
|
5890
|
-
args: [
|
|
5891
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5892
|
-
bigint | TransactionArgument,
|
|
5893
|
-
],
|
|
5714
|
+
args: [string, bigint],
|
|
5894
5715
|
typeArguments: [
|
|
5895
5716
|
TypeDescriptor<T0> | string,
|
|
5896
5717
|
TypeDescriptor<T1> | string,
|
|
@@ -5910,10 +5731,7 @@ export namespace single_collateral {
|
|
|
5910
5731
|
}
|
|
5911
5732
|
export async function claimAndHarvest<T0 = any, T1 = any, T2 = any>(
|
|
5912
5733
|
client: SuiClient,
|
|
5913
|
-
args: [
|
|
5914
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5915
|
-
bigint | TransactionArgument,
|
|
5916
|
-
],
|
|
5734
|
+
args: [string, bigint],
|
|
5917
5735
|
typeArguments: [
|
|
5918
5736
|
TypeDescriptor<T0> | string,
|
|
5919
5737
|
TypeDescriptor<T1> | string,
|
|
@@ -5933,11 +5751,7 @@ export namespace single_collateral {
|
|
|
5933
5751
|
}
|
|
5934
5752
|
export async function close<T0 = any, T1 = any, T2 = any>(
|
|
5935
5753
|
client: SuiClient,
|
|
5936
|
-
args: [
|
|
5937
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5938
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5939
|
-
bigint | TransactionArgument,
|
|
5940
|
-
],
|
|
5754
|
+
args: [string, string, bigint],
|
|
5941
5755
|
typeArguments: [
|
|
5942
5756
|
TypeDescriptor<T0> | string,
|
|
5943
5757
|
TypeDescriptor<T1> | string,
|
|
@@ -5957,10 +5771,7 @@ export namespace single_collateral {
|
|
|
5957
5771
|
}
|
|
5958
5772
|
export async function compound<T0 = any, T1 = any>(
|
|
5959
5773
|
client: SuiClient,
|
|
5960
|
-
args: [
|
|
5961
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5962
|
-
bigint | TransactionArgument,
|
|
5963
|
-
],
|
|
5774
|
+
args: [string, bigint],
|
|
5964
5775
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
5965
5776
|
): Promise<TypedDevInspectResults<[]>> {
|
|
5966
5777
|
const tx = new Transaction();
|
|
@@ -5976,13 +5787,7 @@ export namespace single_collateral {
|
|
|
5976
5787
|
}
|
|
5977
5788
|
export async function delivery<T0 = any, T1 = any, T2 = any>(
|
|
5978
5789
|
client: SuiClient,
|
|
5979
|
-
args: [
|
|
5980
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5981
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5982
|
-
bigint | TransactionArgument,
|
|
5983
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5984
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
5985
|
-
],
|
|
5790
|
+
args: [string, string, bigint, string, string],
|
|
5986
5791
|
typeArguments: [
|
|
5987
5792
|
TypeDescriptor<T0> | string,
|
|
5988
5793
|
TypeDescriptor<T1> | string,
|
|
@@ -6002,12 +5807,7 @@ export namespace single_collateral {
|
|
|
6002
5807
|
}
|
|
6003
5808
|
export async function deposit<T0 = any, T1 = any, T2 = any>(
|
|
6004
5809
|
client: SuiClient,
|
|
6005
|
-
args: [
|
|
6006
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6007
|
-
bigint | TransactionArgument,
|
|
6008
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6009
|
-
bigint | TransactionArgument,
|
|
6010
|
-
],
|
|
5810
|
+
args: [string, bigint, string[], bigint],
|
|
6011
5811
|
typeArguments: [
|
|
6012
5812
|
TypeDescriptor<T0> | string,
|
|
6013
5813
|
TypeDescriptor<T1> | string,
|
|
@@ -6027,13 +5827,7 @@ export namespace single_collateral {
|
|
|
6027
5827
|
}
|
|
6028
5828
|
export async function evolution<T0 = any, T1 = any, T2 = any>(
|
|
6029
5829
|
client: SuiClient,
|
|
6030
|
-
args: [
|
|
6031
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6032
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6033
|
-
bigint | TransactionArgument,
|
|
6034
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6035
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6036
|
-
],
|
|
5830
|
+
args: [string, string, bigint, string, string],
|
|
6037
5831
|
typeArguments: [
|
|
6038
5832
|
TypeDescriptor<T0> | string,
|
|
6039
5833
|
TypeDescriptor<T1> | string,
|
|
@@ -6053,11 +5847,7 @@ export namespace single_collateral {
|
|
|
6053
5847
|
}
|
|
6054
5848
|
export async function getAuctionMaxSize<T0 = any, T1 = any, T2 = any>(
|
|
6055
5849
|
client: SuiClient,
|
|
6056
|
-
args: [
|
|
6057
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6058
|
-
bigint | TransactionArgument,
|
|
6059
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6060
|
-
],
|
|
5850
|
+
args: [string, bigint, string],
|
|
6061
5851
|
typeArguments: [
|
|
6062
5852
|
TypeDescriptor<T0> | string,
|
|
6063
5853
|
TypeDescriptor<T1> | string,
|
|
@@ -6077,11 +5867,7 @@ export namespace single_collateral {
|
|
|
6077
5867
|
}
|
|
6078
5868
|
export async function getMaxLossPerUnit<T0 = any, T1 = any, T2 = any>(
|
|
6079
5869
|
client: SuiClient,
|
|
6080
|
-
args: [
|
|
6081
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6082
|
-
bigint | TransactionArgument,
|
|
6083
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6084
|
-
],
|
|
5870
|
+
args: [string, bigint, string],
|
|
6085
5871
|
typeArguments: [
|
|
6086
5872
|
TypeDescriptor<T0> | string,
|
|
6087
5873
|
TypeDescriptor<T1> | string,
|
|
@@ -6101,11 +5887,7 @@ export namespace single_collateral {
|
|
|
6101
5887
|
}
|
|
6102
5888
|
export async function getUserStatus<T0 = any, T1 = any, T2 = any>(
|
|
6103
5889
|
client: SuiClient,
|
|
6104
|
-
args: [
|
|
6105
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6106
|
-
bigint | TransactionArgument,
|
|
6107
|
-
string | TransactionArgument,
|
|
6108
|
-
],
|
|
5890
|
+
args: [string, bigint, string],
|
|
6109
5891
|
typeArguments: [
|
|
6110
5892
|
TypeDescriptor<T0> | string,
|
|
6111
5893
|
TypeDescriptor<T1> | string,
|
|
@@ -6127,10 +5909,7 @@ export namespace single_collateral {
|
|
|
6127
5909
|
}
|
|
6128
5910
|
export async function harvest<T0 = any, T1 = any, T2 = any>(
|
|
6129
5911
|
client: SuiClient,
|
|
6130
|
-
args: [
|
|
6131
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6132
|
-
bigint | TransactionArgument,
|
|
6133
|
-
],
|
|
5912
|
+
args: [string, bigint],
|
|
6134
5913
|
typeArguments: [
|
|
6135
5914
|
TypeDescriptor<T0> | string,
|
|
6136
5915
|
TypeDescriptor<T1> | string,
|
|
@@ -6150,14 +5929,7 @@ export namespace single_collateral {
|
|
|
6150
5929
|
}
|
|
6151
5930
|
export async function newAuction<T0 = any, T1 = any, T2 = any>(
|
|
6152
5931
|
client: SuiClient,
|
|
6153
|
-
args: [
|
|
6154
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6155
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6156
|
-
bigint | TransactionArgument,
|
|
6157
|
-
bigint | TransactionArgument,
|
|
6158
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6159
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6160
|
-
],
|
|
5932
|
+
args: [string, string, bigint, bigint, string, string],
|
|
6161
5933
|
typeArguments: [
|
|
6162
5934
|
TypeDescriptor<T0> | string,
|
|
6163
5935
|
TypeDescriptor<T1> | string,
|
|
@@ -6177,14 +5949,7 @@ export namespace single_collateral {
|
|
|
6177
5949
|
}
|
|
6178
5950
|
export async function newBid<T0 = any, T1 = any, T2 = any>(
|
|
6179
5951
|
client: SuiClient,
|
|
6180
|
-
args: [
|
|
6181
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6182
|
-
bigint | TransactionArgument,
|
|
6183
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6184
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6185
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6186
|
-
bigint | TransactionArgument,
|
|
6187
|
-
],
|
|
5952
|
+
args: [string, bigint, string, string, string[], bigint],
|
|
6188
5953
|
typeArguments: [
|
|
6189
5954
|
TypeDescriptor<T0> | string,
|
|
6190
5955
|
TypeDescriptor<T1> | string,
|
|
@@ -6204,10 +5969,7 @@ export namespace single_collateral {
|
|
|
6204
5969
|
}
|
|
6205
5970
|
export async function newManager(
|
|
6206
5971
|
client: SuiClient,
|
|
6207
|
-
args: [
|
|
6208
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6209
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6210
|
-
],
|
|
5972
|
+
args: [string, string[]],
|
|
6211
5973
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6212
5974
|
const tx = new Transaction();
|
|
6213
5975
|
builder.newManager(tx, args);
|
|
@@ -6223,29 +5985,29 @@ export namespace single_collateral {
|
|
|
6223
5985
|
export async function newPortfolioVault<T0 = any, T1 = any, T2 = any>(
|
|
6224
5986
|
client: SuiClient,
|
|
6225
5987
|
args: [
|
|
6226
|
-
string
|
|
6227
|
-
string
|
|
6228
|
-
string
|
|
6229
|
-
bigint
|
|
6230
|
-
number
|
|
6231
|
-
bigint
|
|
6232
|
-
bigint
|
|
6233
|
-
bigint
|
|
6234
|
-
bigint
|
|
6235
|
-
bigint
|
|
6236
|
-
bigint
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
bigint
|
|
6241
|
-
bigint
|
|
6242
|
-
bigint
|
|
6243
|
-
bigint
|
|
6244
|
-
bigint
|
|
6245
|
-
bigint
|
|
6246
|
-
bigint
|
|
6247
|
-
boolean
|
|
6248
|
-
|
|
5988
|
+
string,
|
|
5989
|
+
string,
|
|
5990
|
+
string,
|
|
5991
|
+
bigint,
|
|
5992
|
+
number,
|
|
5993
|
+
bigint,
|
|
5994
|
+
bigint,
|
|
5995
|
+
bigint,
|
|
5996
|
+
bigint,
|
|
5997
|
+
bigint,
|
|
5998
|
+
bigint,
|
|
5999
|
+
string[],
|
|
6000
|
+
string[],
|
|
6001
|
+
string[],
|
|
6002
|
+
bigint,
|
|
6003
|
+
bigint,
|
|
6004
|
+
bigint,
|
|
6005
|
+
bigint,
|
|
6006
|
+
bigint,
|
|
6007
|
+
bigint,
|
|
6008
|
+
bigint,
|
|
6009
|
+
boolean,
|
|
6010
|
+
string[],
|
|
6249
6011
|
],
|
|
6250
6012
|
typeArguments: [
|
|
6251
6013
|
TypeDescriptor<T0> | string,
|
|
@@ -6266,11 +6028,7 @@ export namespace single_collateral {
|
|
|
6266
6028
|
}
|
|
6267
6029
|
export async function removeAuthorizedUser(
|
|
6268
6030
|
client: SuiClient,
|
|
6269
|
-
args: [
|
|
6270
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6271
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6272
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6273
|
-
],
|
|
6031
|
+
args: [string, string, string[]],
|
|
6274
6032
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6275
6033
|
const tx = new Transaction();
|
|
6276
6034
|
builder.removeAuthorizedUser(tx, args);
|
|
@@ -6285,7 +6043,7 @@ export namespace single_collateral {
|
|
|
6285
6043
|
}
|
|
6286
6044
|
export async function removeManager(
|
|
6287
6045
|
client: SuiClient,
|
|
6288
|
-
args: [single_collateral.ManagerCap
|
|
6046
|
+
args: [single_collateral.ManagerCap],
|
|
6289
6047
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6290
6048
|
const tx = new Transaction();
|
|
6291
6049
|
builder.removeManager(tx, args);
|
|
@@ -6304,12 +6062,7 @@ export namespace single_collateral {
|
|
|
6304
6062
|
T2 = any,
|
|
6305
6063
|
>(
|
|
6306
6064
|
client: SuiClient,
|
|
6307
|
-
args: [
|
|
6308
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6309
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6310
|
-
bigint | TransactionArgument,
|
|
6311
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6312
|
-
],
|
|
6065
|
+
args: [string, string, bigint, string[]],
|
|
6313
6066
|
typeArguments: [
|
|
6314
6067
|
TypeDescriptor<T0> | string,
|
|
6315
6068
|
TypeDescriptor<T1> | string,
|
|
@@ -6329,12 +6082,7 @@ export namespace single_collateral {
|
|
|
6329
6082
|
}
|
|
6330
6083
|
export async function terminateAuction<T0 = any, T1 = any, T2 = any>(
|
|
6331
6084
|
client: SuiClient,
|
|
6332
|
-
args: [
|
|
6333
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6334
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6335
|
-
bigint | TransactionArgument,
|
|
6336
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6337
|
-
],
|
|
6085
|
+
args: [string, string, bigint, string],
|
|
6338
6086
|
typeArguments: [
|
|
6339
6087
|
TypeDescriptor<T0> | string,
|
|
6340
6088
|
TypeDescriptor<T1> | string,
|
|
@@ -6354,12 +6102,7 @@ export namespace single_collateral {
|
|
|
6354
6102
|
}
|
|
6355
6103
|
export async function terminateVault<T0 = any, T1 = any, T2 = any>(
|
|
6356
6104
|
client: SuiClient,
|
|
6357
|
-
args: [
|
|
6358
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6359
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6360
|
-
bigint | TransactionArgument,
|
|
6361
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6362
|
-
],
|
|
6105
|
+
args: [string, string, bigint, string],
|
|
6363
6106
|
typeArguments: [
|
|
6364
6107
|
TypeDescriptor<T0> | string,
|
|
6365
6108
|
TypeDescriptor<T1> | string,
|
|
@@ -6379,11 +6122,7 @@ export namespace single_collateral {
|
|
|
6379
6122
|
}
|
|
6380
6123
|
export async function unsubscribe<T0 = any, T1 = any, T2 = any>(
|
|
6381
6124
|
client: SuiClient,
|
|
6382
|
-
args: [
|
|
6383
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6384
|
-
bigint | TransactionArgument,
|
|
6385
|
-
_0x1.option.Option<bigint> | TransactionArgument,
|
|
6386
|
-
],
|
|
6125
|
+
args: [string, bigint, _0x1.option.Option<bigint>],
|
|
6387
6126
|
typeArguments: [
|
|
6388
6127
|
TypeDescriptor<T0> | string,
|
|
6389
6128
|
TypeDescriptor<T1> | string,
|
|
@@ -6403,16 +6142,7 @@ export namespace single_collateral {
|
|
|
6403
6142
|
}
|
|
6404
6143
|
export async function updateActiveVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
6405
6144
|
client: SuiClient,
|
|
6406
|
-
args: [
|
|
6407
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6408
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6409
|
-
bigint | TransactionArgument,
|
|
6410
|
-
bigint | TransactionArgument,
|
|
6411
|
-
bigint | TransactionArgument,
|
|
6412
|
-
bigint | TransactionArgument,
|
|
6413
|
-
bigint | TransactionArgument,
|
|
6414
|
-
bigint | TransactionArgument,
|
|
6415
|
-
],
|
|
6145
|
+
args: [string, string, bigint, bigint, bigint, bigint, bigint, bigint],
|
|
6416
6146
|
typeArguments: [
|
|
6417
6147
|
TypeDescriptor<T0> | string,
|
|
6418
6148
|
TypeDescriptor<T1> | string,
|
|
@@ -6432,12 +6162,7 @@ export namespace single_collateral {
|
|
|
6432
6162
|
}
|
|
6433
6163
|
export async function updateCapacity<T0 = any, T1 = any, T2 = any>(
|
|
6434
6164
|
client: SuiClient,
|
|
6435
|
-
args: [
|
|
6436
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6437
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6438
|
-
bigint | TransactionArgument,
|
|
6439
|
-
bigint | TransactionArgument,
|
|
6440
|
-
],
|
|
6165
|
+
args: [string, string, bigint, bigint],
|
|
6441
6166
|
typeArguments: [
|
|
6442
6167
|
TypeDescriptor<T0> | string,
|
|
6443
6168
|
TypeDescriptor<T1> | string,
|
|
@@ -6457,12 +6182,7 @@ export namespace single_collateral {
|
|
|
6457
6182
|
}
|
|
6458
6183
|
export async function updateRestrictActivationTimePeriod(
|
|
6459
6184
|
client: SuiClient,
|
|
6460
|
-
args: [
|
|
6461
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6462
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6463
|
-
bigint | TransactionArgument,
|
|
6464
|
-
bigint | TransactionArgument,
|
|
6465
|
-
],
|
|
6185
|
+
args: [string, string, bigint, bigint],
|
|
6466
6186
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6467
6187
|
const tx = new Transaction();
|
|
6468
6188
|
builder.updateRestrictActivationTimePeriod(tx, args);
|
|
@@ -6482,17 +6202,17 @@ export namespace single_collateral {
|
|
|
6482
6202
|
>(
|
|
6483
6203
|
client: SuiClient,
|
|
6484
6204
|
args: [
|
|
6485
|
-
string
|
|
6486
|
-
string
|
|
6487
|
-
bigint
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
bigint
|
|
6492
|
-
bigint
|
|
6493
|
-
bigint
|
|
6494
|
-
bigint
|
|
6495
|
-
bigint
|
|
6205
|
+
string,
|
|
6206
|
+
string,
|
|
6207
|
+
bigint,
|
|
6208
|
+
string[],
|
|
6209
|
+
string[],
|
|
6210
|
+
string[],
|
|
6211
|
+
bigint,
|
|
6212
|
+
bigint,
|
|
6213
|
+
bigint,
|
|
6214
|
+
bigint,
|
|
6215
|
+
bigint,
|
|
6496
6216
|
],
|
|
6497
6217
|
typeArguments: [
|
|
6498
6218
|
TypeDescriptor<T0> | string,
|
|
@@ -6513,16 +6233,7 @@ export namespace single_collateral {
|
|
|
6513
6233
|
}
|
|
6514
6234
|
export async function updateWarmupVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
6515
6235
|
client: SuiClient,
|
|
6516
|
-
args: [
|
|
6517
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6518
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6519
|
-
bigint | TransactionArgument,
|
|
6520
|
-
bigint | TransactionArgument,
|
|
6521
|
-
bigint | TransactionArgument,
|
|
6522
|
-
bigint | TransactionArgument,
|
|
6523
|
-
bigint | TransactionArgument,
|
|
6524
|
-
bigint | TransactionArgument,
|
|
6525
|
-
],
|
|
6236
|
+
args: [string, string, bigint, bigint, bigint, bigint, bigint, bigint],
|
|
6526
6237
|
typeArguments: [
|
|
6527
6238
|
TypeDescriptor<T0> | string,
|
|
6528
6239
|
TypeDescriptor<T1> | string,
|
|
@@ -6542,11 +6253,7 @@ export namespace single_collateral {
|
|
|
6542
6253
|
}
|
|
6543
6254
|
export async function withdraw<T0 = any, T1 = any, T2 = any>(
|
|
6544
6255
|
client: SuiClient,
|
|
6545
|
-
args: [
|
|
6546
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
6547
|
-
bigint | TransactionArgument,
|
|
6548
|
-
_0x1.option.Option<bigint> | TransactionArgument,
|
|
6549
|
-
],
|
|
6256
|
+
args: [string, bigint, _0x1.option.Option<bigint>],
|
|
6550
6257
|
typeArguments: [
|
|
6551
6258
|
TypeDescriptor<T0> | string,
|
|
6552
6259
|
TypeDescriptor<T1> | string,
|
|
@@ -6647,10 +6354,7 @@ export namespace utils {
|
|
|
6647
6354
|
export namespace view {
|
|
6648
6355
|
export async function extractBalance<T0 = any>(
|
|
6649
6356
|
client: SuiClient,
|
|
6650
|
-
args: [
|
|
6651
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6652
|
-
bigint | TransactionArgument,
|
|
6653
|
-
],
|
|
6357
|
+
args: [string[], bigint],
|
|
6654
6358
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
6655
6359
|
): Promise<TypedDevInspectResults<[_0x2.balance.Balance<T0>]>> {
|
|
6656
6360
|
const tx = new Transaction();
|
|
@@ -6666,7 +6370,7 @@ export namespace utils {
|
|
|
6666
6370
|
}
|
|
6667
6371
|
export async function getDateFromTs(
|
|
6668
6372
|
client: SuiClient,
|
|
6669
|
-
args: [bigint
|
|
6373
|
+
args: [bigint],
|
|
6670
6374
|
): Promise<TypedDevInspectResults<[bigint, bigint, bigint]>> {
|
|
6671
6375
|
const tx = new Transaction();
|
|
6672
6376
|
builder.getDateFromTs(tx, args);
|
|
@@ -6697,7 +6401,7 @@ export namespace utils {
|
|
|
6697
6401
|
}
|
|
6698
6402
|
export async function multiplier(
|
|
6699
6403
|
client: SuiClient,
|
|
6700
|
-
args: [bigint
|
|
6404
|
+
args: [bigint],
|
|
6701
6405
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
6702
6406
|
const tx = new Transaction();
|
|
6703
6407
|
builder.multiplier(tx, args);
|
|
@@ -8831,12 +8535,7 @@ export namespace vault {
|
|
|
8831
8535
|
export namespace view {
|
|
8832
8536
|
export async function activate<T0 = any, T1 = any>(
|
|
8833
8537
|
client: SuiClient,
|
|
8834
|
-
args: [
|
|
8835
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8836
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8837
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8838
|
-
boolean | TransactionArgument,
|
|
8839
|
-
],
|
|
8538
|
+
args: [string, string, string, boolean],
|
|
8840
8539
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8841
8540
|
): Promise<TypedDevInspectResults<[]>> {
|
|
8842
8541
|
const tx = new Transaction();
|
|
@@ -8852,7 +8551,7 @@ export namespace vault {
|
|
|
8852
8551
|
}
|
|
8853
8552
|
export async function activeBalance<T0 = any, T1 = any>(
|
|
8854
8553
|
client: SuiClient,
|
|
8855
|
-
args: [string
|
|
8554
|
+
args: [string],
|
|
8856
8555
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8857
8556
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8858
8557
|
const tx = new Transaction();
|
|
@@ -8868,7 +8567,7 @@ export namespace vault {
|
|
|
8868
8567
|
}
|
|
8869
8568
|
export async function activeShareSupply<T0 = any, T1 = any>(
|
|
8870
8569
|
client: SuiClient,
|
|
8871
|
-
args: [string
|
|
8570
|
+
args: [string],
|
|
8872
8571
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8873
8572
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8874
8573
|
const tx = new Transaction();
|
|
@@ -8884,7 +8583,7 @@ export namespace vault {
|
|
|
8884
8583
|
}
|
|
8885
8584
|
export async function activeUserShares<T0 = any, T1 = any>(
|
|
8886
8585
|
client: SuiClient,
|
|
8887
|
-
args: [string
|
|
8586
|
+
args: [string],
|
|
8888
8587
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8889
8588
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
8890
8589
|
const tx = new Transaction();
|
|
@@ -8900,7 +8599,7 @@ export namespace vault {
|
|
|
8900
8599
|
}
|
|
8901
8600
|
export async function bidderBalance<T0 = any, T1 = any>(
|
|
8902
8601
|
client: SuiClient,
|
|
8903
|
-
args: [string
|
|
8602
|
+
args: [string],
|
|
8904
8603
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8905
8604
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8906
8605
|
const tx = new Transaction();
|
|
@@ -8916,7 +8615,7 @@ export namespace vault {
|
|
|
8916
8615
|
}
|
|
8917
8616
|
export async function bidderShareSupply<T0 = any, T1 = any>(
|
|
8918
8617
|
client: SuiClient,
|
|
8919
|
-
args: [string
|
|
8618
|
+
args: [string],
|
|
8920
8619
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8921
8620
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8922
8621
|
const tx = new Transaction();
|
|
@@ -8932,7 +8631,7 @@ export namespace vault {
|
|
|
8932
8631
|
}
|
|
8933
8632
|
export async function bidderShares<T0 = any, T1 = any>(
|
|
8934
8633
|
client: SuiClient,
|
|
8935
|
-
args: [string
|
|
8634
|
+
args: [string],
|
|
8936
8635
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8937
8636
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
8938
8637
|
const tx = new Transaction();
|
|
@@ -8948,10 +8647,7 @@ export namespace vault {
|
|
|
8948
8647
|
}
|
|
8949
8648
|
export async function claim<T0 = any, T1 = any>(
|
|
8950
8649
|
client: SuiClient,
|
|
8951
|
-
args: [
|
|
8952
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8953
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8954
|
-
],
|
|
8650
|
+
args: [string, string],
|
|
8955
8651
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8956
8652
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
8957
8653
|
const tx = new Transaction();
|
|
@@ -8967,11 +8663,7 @@ export namespace vault {
|
|
|
8967
8663
|
}
|
|
8968
8664
|
export async function closeBidVault<T0 = any, T1 = any>(
|
|
8969
8665
|
client: SuiClient,
|
|
8970
|
-
args: [
|
|
8971
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8972
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
8973
|
-
vault.BidVault<T0, T1> | TransactionArgument,
|
|
8974
|
-
],
|
|
8666
|
+
args: [string, string, vault.BidVault<T0, T1>],
|
|
8975
8667
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8976
8668
|
): Promise<
|
|
8977
8669
|
TypedDevInspectResults<
|
|
@@ -8999,11 +8691,7 @@ export namespace vault {
|
|
|
8999
8691
|
}
|
|
9000
8692
|
export async function closeDepositVault<T0 = any, T1 = any>(
|
|
9001
8693
|
client: SuiClient,
|
|
9002
|
-
args: [
|
|
9003
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9004
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9005
|
-
vault.DepositVault<T0, T1> | TransactionArgument,
|
|
9006
|
-
],
|
|
8694
|
+
args: [string, string, vault.DepositVault<T0, T1>],
|
|
9007
8695
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9008
8696
|
): Promise<
|
|
9009
8697
|
TypedDevInspectResults<
|
|
@@ -9033,11 +8721,7 @@ export namespace vault {
|
|
|
9033
8721
|
}
|
|
9034
8722
|
export async function compound<T0 = any, T1 = any>(
|
|
9035
8723
|
client: SuiClient,
|
|
9036
|
-
args: [
|
|
9037
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9038
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9039
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9040
|
-
],
|
|
8724
|
+
args: [string, string, string],
|
|
9041
8725
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9042
8726
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9043
8727
|
const tx = new Transaction();
|
|
@@ -9053,7 +8737,7 @@ export namespace vault {
|
|
|
9053
8737
|
}
|
|
9054
8738
|
export async function deactivatingBalance<T0 = any, T1 = any>(
|
|
9055
8739
|
client: SuiClient,
|
|
9056
|
-
args: [string
|
|
8740
|
+
args: [string],
|
|
9057
8741
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9058
8742
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9059
8743
|
const tx = new Transaction();
|
|
@@ -9069,7 +8753,7 @@ export namespace vault {
|
|
|
9069
8753
|
}
|
|
9070
8754
|
export async function deactivatingShareSupply<T0 = any, T1 = any>(
|
|
9071
8755
|
client: SuiClient,
|
|
9072
|
-
args: [string
|
|
8756
|
+
args: [string],
|
|
9073
8757
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9074
8758
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9075
8759
|
const tx = new Transaction();
|
|
@@ -9085,7 +8769,7 @@ export namespace vault {
|
|
|
9085
8769
|
}
|
|
9086
8770
|
export async function deactivatingUserShares<T0 = any, T1 = any>(
|
|
9087
8771
|
client: SuiClient,
|
|
9088
|
-
args: [string
|
|
8772
|
+
args: [string],
|
|
9089
8773
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9090
8774
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9091
8775
|
const tx = new Transaction();
|
|
@@ -9102,13 +8786,13 @@ export namespace vault {
|
|
|
9102
8786
|
export async function delivery<T0 = any, T1 = any, T2 = any>(
|
|
9103
8787
|
client: SuiClient,
|
|
9104
8788
|
args: [
|
|
9105
|
-
string
|
|
9106
|
-
string
|
|
9107
|
-
string
|
|
9108
|
-
string
|
|
9109
|
-
bigint
|
|
9110
|
-
_0x2.balance.Balance<T2
|
|
9111
|
-
_0x2.vec_map.VecMap<string, bigint
|
|
8789
|
+
string,
|
|
8790
|
+
string,
|
|
8791
|
+
string,
|
|
8792
|
+
string,
|
|
8793
|
+
bigint,
|
|
8794
|
+
_0x2.balance.Balance<T2>,
|
|
8795
|
+
_0x2.vec_map.VecMap<string, bigint>,
|
|
9112
8796
|
],
|
|
9113
8797
|
typeArguments: [
|
|
9114
8798
|
TypeDescriptor<T0> | string,
|
|
@@ -9135,14 +8819,14 @@ export namespace vault {
|
|
|
9135
8819
|
>(
|
|
9136
8820
|
client: SuiClient,
|
|
9137
8821
|
args: [
|
|
9138
|
-
string
|
|
9139
|
-
string
|
|
9140
|
-
string
|
|
9141
|
-
string
|
|
9142
|
-
string
|
|
9143
|
-
bigint
|
|
9144
|
-
_0x2.balance.Balance<T2
|
|
9145
|
-
_0x2.vec_map.VecMap<string, bigint
|
|
8822
|
+
string,
|
|
8823
|
+
string,
|
|
8824
|
+
string,
|
|
8825
|
+
string,
|
|
8826
|
+
string,
|
|
8827
|
+
bigint,
|
|
8828
|
+
_0x2.balance.Balance<T2>,
|
|
8829
|
+
_0x2.vec_map.VecMap<string, bigint>,
|
|
9146
8830
|
],
|
|
9147
8831
|
typeArguments: [
|
|
9148
8832
|
TypeDescriptor<T0> | string,
|
|
@@ -9164,13 +8848,7 @@ export namespace vault {
|
|
|
9164
8848
|
}
|
|
9165
8849
|
export async function deposit<T0 = any, T1 = any>(
|
|
9166
8850
|
client: SuiClient,
|
|
9167
|
-
args: [
|
|
9168
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9169
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9170
|
-
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
9171
|
-
bigint | TransactionArgument,
|
|
9172
|
-
bigint | TransactionArgument,
|
|
9173
|
-
],
|
|
8851
|
+
args: [string, string, string[], bigint, bigint],
|
|
9174
8852
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9175
8853
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9176
8854
|
const tx = new Transaction();
|
|
@@ -9186,11 +8864,7 @@ export namespace vault {
|
|
|
9186
8864
|
}
|
|
9187
8865
|
export async function getActiveUserShare<T0 = any, T1 = any>(
|
|
9188
8866
|
client: SuiClient,
|
|
9189
|
-
args: [
|
|
9190
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9191
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9192
|
-
string | TransactionArgument,
|
|
9193
|
-
],
|
|
8867
|
+
args: [string, string, string],
|
|
9194
8868
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9195
8869
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9196
8870
|
const tx = new Transaction();
|
|
@@ -9206,7 +8880,7 @@ export namespace vault {
|
|
|
9206
8880
|
}
|
|
9207
8881
|
export async function getBidVaultBalance<T0 = any, T1 = any>(
|
|
9208
8882
|
client: SuiClient,
|
|
9209
|
-
args: [string
|
|
8883
|
+
args: [string],
|
|
9210
8884
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9211
8885
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
9212
8886
|
const tx = new Transaction();
|
|
@@ -9222,7 +8896,7 @@ export namespace vault {
|
|
|
9222
8896
|
}
|
|
9223
8897
|
export async function getBidVaultShareSupply<T0 = any, T1 = any>(
|
|
9224
8898
|
client: SuiClient,
|
|
9225
|
-
args: [string
|
|
8899
|
+
args: [string],
|
|
9226
8900
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9227
8901
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
9228
8902
|
const tx = new Transaction();
|
|
@@ -9238,11 +8912,7 @@ export namespace vault {
|
|
|
9238
8912
|
}
|
|
9239
8913
|
export async function getBidderUserShare<T0 = any, T1 = any>(
|
|
9240
8914
|
client: SuiClient,
|
|
9241
|
-
args: [
|
|
9242
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9243
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9244
|
-
string | TransactionArgument,
|
|
9245
|
-
],
|
|
8915
|
+
args: [string, string, string],
|
|
9246
8916
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9247
8917
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9248
8918
|
const tx = new Transaction();
|
|
@@ -9258,11 +8928,7 @@ export namespace vault {
|
|
|
9258
8928
|
}
|
|
9259
8929
|
export async function getDeactivatingUserShare<T0 = any, T1 = any>(
|
|
9260
8930
|
client: SuiClient,
|
|
9261
|
-
args: [
|
|
9262
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9263
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9264
|
-
string | TransactionArgument,
|
|
9265
|
-
],
|
|
8931
|
+
args: [string, string, string],
|
|
9266
8932
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9267
8933
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9268
8934
|
const tx = new Transaction();
|
|
@@ -9278,7 +8944,7 @@ export namespace vault {
|
|
|
9278
8944
|
}
|
|
9279
8945
|
export async function getDepositVaultBalance<T0 = any, T1 = any>(
|
|
9280
8946
|
client: SuiClient,
|
|
9281
|
-
args: [string
|
|
8947
|
+
args: [string],
|
|
9282
8948
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9283
8949
|
): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
|
|
9284
8950
|
const tx = new Transaction();
|
|
@@ -9294,7 +8960,7 @@ export namespace vault {
|
|
|
9294
8960
|
}
|
|
9295
8961
|
export async function getDepositVaultShareSupply<T0 = any, T1 = any>(
|
|
9296
8962
|
client: SuiClient,
|
|
9297
|
-
args: [string
|
|
8963
|
+
args: [string],
|
|
9298
8964
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9299
8965
|
): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
|
|
9300
8966
|
const tx = new Transaction();
|
|
@@ -9310,11 +8976,7 @@ export namespace vault {
|
|
|
9310
8976
|
}
|
|
9311
8977
|
export async function getInactiveUserShare<T0 = any, T1 = any>(
|
|
9312
8978
|
client: SuiClient,
|
|
9313
|
-
args: [
|
|
9314
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9315
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9316
|
-
string | TransactionArgument,
|
|
9317
|
-
],
|
|
8979
|
+
args: [string, string, string],
|
|
9318
8980
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9319
8981
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9320
8982
|
const tx = new Transaction();
|
|
@@ -9330,11 +8992,7 @@ export namespace vault {
|
|
|
9330
8992
|
}
|
|
9331
8993
|
export async function getPerformanceFeeUserShare<T0 = any, T1 = any>(
|
|
9332
8994
|
client: SuiClient,
|
|
9333
|
-
args: [
|
|
9334
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9335
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9336
|
-
string | TransactionArgument,
|
|
9337
|
-
],
|
|
8995
|
+
args: [string, string, string],
|
|
9338
8996
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9339
8997
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9340
8998
|
const tx = new Transaction();
|
|
@@ -9350,11 +9008,7 @@ export namespace vault {
|
|
|
9350
9008
|
}
|
|
9351
9009
|
export async function getPremiumUserShare<T0 = any, T1 = any>(
|
|
9352
9010
|
client: SuiClient,
|
|
9353
|
-
args: [
|
|
9354
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9355
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9356
|
-
string | TransactionArgument,
|
|
9357
|
-
],
|
|
9011
|
+
args: [string, string, string],
|
|
9358
9012
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9359
9013
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9360
9014
|
const tx = new Transaction();
|
|
@@ -9370,11 +9024,7 @@ export namespace vault {
|
|
|
9370
9024
|
}
|
|
9371
9025
|
export async function getWarmupUserShare<T0 = any, T1 = any>(
|
|
9372
9026
|
client: SuiClient,
|
|
9373
|
-
args: [
|
|
9374
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9375
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9376
|
-
string | TransactionArgument,
|
|
9377
|
-
],
|
|
9027
|
+
args: [string, string, string],
|
|
9378
9028
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9379
9029
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9380
9030
|
const tx = new Transaction();
|
|
@@ -9390,10 +9040,7 @@ export namespace vault {
|
|
|
9390
9040
|
}
|
|
9391
9041
|
export async function harvest<T0 = any, T1 = any>(
|
|
9392
9042
|
client: SuiClient,
|
|
9393
|
-
args: [
|
|
9394
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9395
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9396
|
-
],
|
|
9043
|
+
args: [string, string],
|
|
9397
9044
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9398
9045
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
9399
9046
|
const tx = new Transaction();
|
|
@@ -9409,7 +9056,7 @@ export namespace vault {
|
|
|
9409
9056
|
}
|
|
9410
9057
|
export async function hasNext<T0 = any, T1 = any>(
|
|
9411
9058
|
client: SuiClient,
|
|
9412
|
-
args: [string
|
|
9059
|
+
args: [string],
|
|
9413
9060
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9414
9061
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
9415
9062
|
const tx = new Transaction();
|
|
@@ -9425,7 +9072,7 @@ export namespace vault {
|
|
|
9425
9072
|
}
|
|
9426
9073
|
export async function inactiveBalance<T0 = any, T1 = any>(
|
|
9427
9074
|
client: SuiClient,
|
|
9428
|
-
args: [string
|
|
9075
|
+
args: [string],
|
|
9429
9076
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9430
9077
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9431
9078
|
const tx = new Transaction();
|
|
@@ -9441,7 +9088,7 @@ export namespace vault {
|
|
|
9441
9088
|
}
|
|
9442
9089
|
export async function inactiveShareSupply<T0 = any, T1 = any>(
|
|
9443
9090
|
client: SuiClient,
|
|
9444
|
-
args: [string
|
|
9091
|
+
args: [string],
|
|
9445
9092
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9446
9093
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9447
9094
|
const tx = new Transaction();
|
|
@@ -9457,7 +9104,7 @@ export namespace vault {
|
|
|
9457
9104
|
}
|
|
9458
9105
|
export async function inactiveUserShares<T0 = any, T1 = any>(
|
|
9459
9106
|
client: SuiClient,
|
|
9460
|
-
args: [string
|
|
9107
|
+
args: [string],
|
|
9461
9108
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9462
9109
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9463
9110
|
const tx = new Transaction();
|
|
@@ -9473,11 +9120,7 @@ export namespace vault {
|
|
|
9473
9120
|
}
|
|
9474
9121
|
export async function isActiveUser<T0 = any, T1 = any>(
|
|
9475
9122
|
client: SuiClient,
|
|
9476
|
-
args: [
|
|
9477
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9478
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9479
|
-
string | TransactionArgument,
|
|
9480
|
-
],
|
|
9123
|
+
args: [string, string, string],
|
|
9481
9124
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9482
9125
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
9483
9126
|
const tx = new Transaction();
|
|
@@ -9493,11 +9136,7 @@ export namespace vault {
|
|
|
9493
9136
|
}
|
|
9494
9137
|
export async function isDeactivatingUser<T0 = any, T1 = any>(
|
|
9495
9138
|
client: SuiClient,
|
|
9496
|
-
args: [
|
|
9497
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9498
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9499
|
-
string | TransactionArgument,
|
|
9500
|
-
],
|
|
9139
|
+
args: [string, string, string],
|
|
9501
9140
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9502
9141
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
9503
9142
|
const tx = new Transaction();
|
|
@@ -9513,11 +9152,7 @@ export namespace vault {
|
|
|
9513
9152
|
}
|
|
9514
9153
|
export async function isInactiveUser<T0 = any, T1 = any>(
|
|
9515
9154
|
client: SuiClient,
|
|
9516
|
-
args: [
|
|
9517
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9518
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9519
|
-
string | TransactionArgument,
|
|
9520
|
-
],
|
|
9155
|
+
args: [string, string, string],
|
|
9521
9156
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9522
9157
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
9523
9158
|
const tx = new Transaction();
|
|
@@ -9533,11 +9168,7 @@ export namespace vault {
|
|
|
9533
9168
|
}
|
|
9534
9169
|
export async function isWarmupUser<T0 = any, T1 = any>(
|
|
9535
9170
|
client: SuiClient,
|
|
9536
|
-
args: [
|
|
9537
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9538
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9539
|
-
string | TransactionArgument,
|
|
9540
|
-
],
|
|
9171
|
+
args: [string, string, string],
|
|
9541
9172
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9542
9173
|
): Promise<TypedDevInspectResults<[boolean]>> {
|
|
9543
9174
|
const tx = new Transaction();
|
|
@@ -9553,10 +9184,7 @@ export namespace vault {
|
|
|
9553
9184
|
}
|
|
9554
9185
|
export async function newBidVault<T0 = any, T1 = any>(
|
|
9555
9186
|
client: SuiClient,
|
|
9556
|
-
args: [
|
|
9557
|
-
bigint | TransactionArgument,
|
|
9558
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9559
|
-
],
|
|
9187
|
+
args: [bigint, string],
|
|
9560
9188
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9561
9189
|
): Promise<TypedDevInspectResults<[vault.BidVault<T0, T1>]>> {
|
|
9562
9190
|
const tx = new Transaction();
|
|
@@ -9572,10 +9200,7 @@ export namespace vault {
|
|
|
9572
9200
|
}
|
|
9573
9201
|
export async function newDepositVault<T0 = any, T1 = any>(
|
|
9574
9202
|
client: SuiClient,
|
|
9575
|
-
args: [
|
|
9576
|
-
bigint | TransactionArgument,
|
|
9577
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9578
|
-
],
|
|
9203
|
+
args: [bigint, string],
|
|
9579
9204
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9580
9205
|
): Promise<TypedDevInspectResults<[vault.DepositVault<T0, T1>]>> {
|
|
9581
9206
|
const tx = new Transaction();
|
|
@@ -9606,7 +9231,7 @@ export namespace vault {
|
|
|
9606
9231
|
}
|
|
9607
9232
|
export async function performanceFeeBalance<T0 = any, T1 = any>(
|
|
9608
9233
|
client: SuiClient,
|
|
9609
|
-
args: [string
|
|
9234
|
+
args: [string],
|
|
9610
9235
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9611
9236
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9612
9237
|
const tx = new Transaction();
|
|
@@ -9622,7 +9247,7 @@ export namespace vault {
|
|
|
9622
9247
|
}
|
|
9623
9248
|
export async function performanceFeeShareSupply<T0 = any, T1 = any>(
|
|
9624
9249
|
client: SuiClient,
|
|
9625
|
-
args: [string
|
|
9250
|
+
args: [string],
|
|
9626
9251
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9627
9252
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9628
9253
|
const tx = new Transaction();
|
|
@@ -9638,7 +9263,7 @@ export namespace vault {
|
|
|
9638
9263
|
}
|
|
9639
9264
|
export async function performanceFeeShares<T0 = any, T1 = any>(
|
|
9640
9265
|
client: SuiClient,
|
|
9641
|
-
args: [string
|
|
9266
|
+
args: [string],
|
|
9642
9267
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9643
9268
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9644
9269
|
const tx = new Transaction();
|
|
@@ -9654,7 +9279,7 @@ export namespace vault {
|
|
|
9654
9279
|
}
|
|
9655
9280
|
export async function premiumBalance<T0 = any, T1 = any>(
|
|
9656
9281
|
client: SuiClient,
|
|
9657
|
-
args: [string
|
|
9282
|
+
args: [string],
|
|
9658
9283
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9659
9284
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9660
9285
|
const tx = new Transaction();
|
|
@@ -9670,7 +9295,7 @@ export namespace vault {
|
|
|
9670
9295
|
}
|
|
9671
9296
|
export async function premiumShareSupply<T0 = any, T1 = any>(
|
|
9672
9297
|
client: SuiClient,
|
|
9673
|
-
args: [string
|
|
9298
|
+
args: [string],
|
|
9674
9299
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9675
9300
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9676
9301
|
const tx = new Transaction();
|
|
@@ -9686,7 +9311,7 @@ export namespace vault {
|
|
|
9686
9311
|
}
|
|
9687
9312
|
export async function premiumShares<T0 = any, T1 = any>(
|
|
9688
9313
|
client: SuiClient,
|
|
9689
|
-
args: [string
|
|
9314
|
+
args: [string],
|
|
9690
9315
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9691
9316
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9692
9317
|
const tx = new Transaction();
|
|
@@ -9702,12 +9327,7 @@ export namespace vault {
|
|
|
9702
9327
|
}
|
|
9703
9328
|
export async function refund<T0 = any, T1 = any>(
|
|
9704
9329
|
client: SuiClient,
|
|
9705
|
-
args: [
|
|
9706
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9707
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9708
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9709
|
-
bigint | TransactionArgument,
|
|
9710
|
-
],
|
|
9330
|
+
args: [string, string, string, bigint],
|
|
9711
9331
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9712
9332
|
): Promise<TypedDevInspectResults<[]>> {
|
|
9713
9333
|
const tx = new Transaction();
|
|
@@ -9723,16 +9343,7 @@ export namespace vault {
|
|
|
9723
9343
|
}
|
|
9724
9344
|
export async function settleFund<T0 = any, T1 = any, T2 = any, T3 = any>(
|
|
9725
9345
|
client: SuiClient,
|
|
9726
|
-
args: [
|
|
9727
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9728
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9729
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9730
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9731
|
-
bigint | TransactionArgument,
|
|
9732
|
-
bigint | TransactionArgument,
|
|
9733
|
-
bigint | TransactionArgument,
|
|
9734
|
-
bigint | TransactionArgument,
|
|
9735
|
-
],
|
|
9346
|
+
args: [string, string, string, string, bigint, bigint, bigint, bigint],
|
|
9736
9347
|
typeArguments: [
|
|
9737
9348
|
TypeDescriptor<T0> | string,
|
|
9738
9349
|
TypeDescriptor<T1> | string,
|
|
@@ -9759,19 +9370,19 @@ export namespace vault {
|
|
|
9759
9370
|
>(
|
|
9760
9371
|
client: SuiClient,
|
|
9761
9372
|
args: [
|
|
9762
|
-
string
|
|
9763
|
-
string
|
|
9764
|
-
string
|
|
9765
|
-
string
|
|
9766
|
-
string
|
|
9767
|
-
bigint
|
|
9768
|
-
bigint
|
|
9769
|
-
bigint
|
|
9770
|
-
bigint
|
|
9771
|
-
bigint
|
|
9772
|
-
bigint
|
|
9773
|
-
bigint
|
|
9774
|
-
bigint
|
|
9373
|
+
string,
|
|
9374
|
+
string,
|
|
9375
|
+
string,
|
|
9376
|
+
string,
|
|
9377
|
+
string,
|
|
9378
|
+
bigint,
|
|
9379
|
+
bigint,
|
|
9380
|
+
bigint,
|
|
9381
|
+
bigint,
|
|
9382
|
+
bigint,
|
|
9383
|
+
bigint,
|
|
9384
|
+
bigint,
|
|
9385
|
+
bigint,
|
|
9775
9386
|
],
|
|
9776
9387
|
typeArguments: [
|
|
9777
9388
|
TypeDescriptor<T0> | string,
|
|
@@ -9793,11 +9404,7 @@ export namespace vault {
|
|
|
9793
9404
|
}
|
|
9794
9405
|
export async function unsubscribe<T0 = any, T1 = any>(
|
|
9795
9406
|
client: SuiClient,
|
|
9796
|
-
args: [
|
|
9797
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9798
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9799
|
-
_0x1.option.Option<bigint> | TransactionArgument,
|
|
9800
|
-
],
|
|
9407
|
+
args: [string, string, _0x1.option.Option<bigint>],
|
|
9801
9408
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9802
9409
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9803
9410
|
const tx = new Transaction();
|
|
@@ -9813,7 +9420,7 @@ export namespace vault {
|
|
|
9813
9420
|
}
|
|
9814
9421
|
export async function userShareRegistryUid(
|
|
9815
9422
|
client: SuiClient,
|
|
9816
|
-
args: [string
|
|
9423
|
+
args: [string],
|
|
9817
9424
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9818
9425
|
const tx = new Transaction();
|
|
9819
9426
|
builder.userShareRegistryUid(tx, args);
|
|
@@ -9828,7 +9435,7 @@ export namespace vault {
|
|
|
9828
9435
|
}
|
|
9829
9436
|
export async function warmupBalance<T0 = any, T1 = any>(
|
|
9830
9437
|
client: SuiClient,
|
|
9831
|
-
args: [string
|
|
9438
|
+
args: [string],
|
|
9832
9439
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9833
9440
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9834
9441
|
const tx = new Transaction();
|
|
@@ -9844,7 +9451,7 @@ export namespace vault {
|
|
|
9844
9451
|
}
|
|
9845
9452
|
export async function warmupShareSupply<T0 = any, T1 = any>(
|
|
9846
9453
|
client: SuiClient,
|
|
9847
|
-
args: [string
|
|
9454
|
+
args: [string],
|
|
9848
9455
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9849
9456
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9850
9457
|
const tx = new Transaction();
|
|
@@ -9860,7 +9467,7 @@ export namespace vault {
|
|
|
9860
9467
|
}
|
|
9861
9468
|
export async function warmupUserShares<T0 = any, T1 = any>(
|
|
9862
9469
|
client: SuiClient,
|
|
9863
|
-
args: [string
|
|
9470
|
+
args: [string],
|
|
9864
9471
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9865
9472
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9866
9473
|
const tx = new Transaction();
|
|
@@ -9876,11 +9483,7 @@ export namespace vault {
|
|
|
9876
9483
|
}
|
|
9877
9484
|
export async function withdraw<T0 = any, T1 = any>(
|
|
9878
9485
|
client: SuiClient,
|
|
9879
|
-
args: [
|
|
9880
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9881
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
9882
|
-
_0x1.option.Option<bigint> | TransactionArgument,
|
|
9883
|
-
],
|
|
9486
|
+
args: [string, string, _0x1.option.Option<bigint>],
|
|
9884
9487
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9885
9488
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9886
9489
|
const tx = new Transaction();
|