@typemove/sui 1.13.4-rc.2 → 1.13.4

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.
Files changed (43) hide show
  1. package/dist/esm/builtin/0x1.d.ts +269 -269
  2. package/dist/esm/builtin/0x1.d.ts.map +1 -1
  3. package/dist/esm/builtin/0x1.js.map +1 -1
  4. package/dist/esm/builtin/0x2.d.ts +684 -684
  5. package/dist/esm/builtin/0x2.d.ts.map +1 -1
  6. package/dist/esm/builtin/0x2.js.map +1 -1
  7. package/dist/esm/builtin/0x3.d.ts +272 -272
  8. package/dist/esm/builtin/0x3.d.ts.map +1 -1
  9. package/dist/esm/builtin/0x3.js.map +1 -1
  10. package/dist/esm/codegen/codegen.d.ts +1 -1
  11. package/dist/esm/codegen/codegen.d.ts.map +1 -1
  12. package/dist/esm/codegen/codegen.js +5 -5
  13. package/dist/esm/codegen/codegen.js.map +1 -1
  14. package/dist/esm/codegen/run.js +3 -2
  15. package/dist/esm/codegen/run.js.map +1 -1
  16. package/dist/esm/models.d.ts +1 -1
  17. package/dist/esm/models.d.ts.map +1 -1
  18. package/dist/esm/move-coder.d.ts +3 -3
  19. package/dist/esm/move-coder.d.ts.map +1 -1
  20. package/dist/esm/move-coder.js +3 -3
  21. package/dist/esm/move-coder.js.map +1 -1
  22. package/dist/esm/sui-chain-adapter.d.ts +4 -3
  23. package/dist/esm/sui-chain-adapter.d.ts.map +1 -1
  24. package/dist/esm/sui-chain-adapter.js +13 -2
  25. package/dist/esm/sui-chain-adapter.js.map +1 -1
  26. package/dist/esm/to-internal.d.ts +1 -1
  27. package/dist/esm/to-internal.d.ts.map +1 -1
  28. package/package.json +3 -3
  29. package/src/builtin/0x1.ts +269 -269
  30. package/src/builtin/0x2.ts +684 -684
  31. package/src/builtin/0x3.ts +272 -272
  32. package/src/codegen/codegen.ts +5 -5
  33. package/src/codegen/run.ts +3 -2
  34. package/src/models.ts +1 -1
  35. package/src/move-coder.ts +7 -7
  36. package/src/sui-chain-adapter.ts +13 -5
  37. package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +5 -5
  38. package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +49 -49
  39. package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +32 -32
  40. package/src/tests/types/testnet/0xdee9.ts +91 -91
  41. package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +156 -156
  42. package/src/tests/types/testnet/enum.ts +119 -119
  43. package/src/to-internal.ts +1 -1
@@ -19,7 +19,7 @@ import {
19
19
  TransactionArgument,
20
20
  TransactionObjectArgument,
21
21
  } from "@mysten/sui/transactions";
22
- import { SuiClient } from "@mysten/sui/client";
22
+ import { SuiJsonRpcClient } from "@mysten/sui/jsonRpc";
23
23
  import {
24
24
  transactionArgumentOrObject,
25
25
  transactionArgumentOrVec,
@@ -215,7 +215,7 @@ export namespace authority {
215
215
  }
216
216
  export namespace view {
217
217
  export async function addAuthorizedUser<T0 = any>(
218
- client: SuiClient,
218
+ client: SuiJsonRpcClient,
219
219
  args: [string, string, string],
220
220
  typeArguments: [TypeDescriptor<T0> | string],
221
221
  ): Promise<TypedDevInspectResults<[]>> {
@@ -231,7 +231,7 @@ export namespace authority {
231
231
  );
232
232
  }
233
233
  export async function destroyEmpty<T0 = any>(
234
- client: SuiClient,
234
+ client: SuiJsonRpcClient,
235
235
  args: [authority.Authority<T0>],
236
236
  typeArguments: [TypeDescriptor<T0> | string],
237
237
  ): Promise<TypedDevInspectResults<[]>> {
@@ -247,7 +247,7 @@ export namespace authority {
247
247
  );
248
248
  }
249
249
  export async function new$<T0 = any>(
250
- client: SuiClient,
250
+ client: SuiJsonRpcClient,
251
251
  args: [string[]],
252
252
  typeArguments: [TypeDescriptor<T0> | string],
253
253
  ): Promise<TypedDevInspectResults<[authority.Authority<T0>]>> {
@@ -263,7 +263,7 @@ export namespace authority {
263
263
  >(inspectRes);
264
264
  }
265
265
  export async function removeAll<T0 = any>(
266
- client: SuiClient,
266
+ client: SuiJsonRpcClient,
267
267
  args: [string],
268
268
  typeArguments: [TypeDescriptor<T0> | string],
269
269
  ): Promise<TypedDevInspectResults<[string[]]>> {
@@ -279,7 +279,7 @@ export namespace authority {
279
279
  );
280
280
  }
281
281
  export async function removeAuthorizedUser<T0 = any>(
282
- client: SuiClient,
282
+ client: SuiJsonRpcClient,
283
283
  args: [string, string, string],
284
284
  typeArguments: [TypeDescriptor<T0> | string],
285
285
  ): Promise<TypedDevInspectResults<[]>> {
@@ -295,7 +295,7 @@ export namespace authority {
295
295
  );
296
296
  }
297
297
  export async function verify<T0 = any>(
298
- client: SuiClient,
298
+ client: SuiJsonRpcClient,
299
299
  args: [string],
300
300
  typeArguments: [TypeDescriptor<T0> | string],
301
301
  ): Promise<TypedDevInspectResults<[]>> {
@@ -311,7 +311,7 @@ export namespace authority {
311
311
  );
312
312
  }
313
313
  export async function whitelist<T0 = any>(
314
- client: SuiClient,
314
+ client: SuiJsonRpcClient,
315
315
  args: [string],
316
316
  typeArguments: [TypeDescriptor<T0> | string],
317
317
  ): Promise<TypedDevInspectResults<[string[]]>> {
@@ -925,7 +925,7 @@ export namespace dutch {
925
925
  }
926
926
  export namespace view {
927
927
  export async function close<T0 = any, T1 = any>(
928
- client: SuiClient,
928
+ client: SuiJsonRpcClient,
929
929
  args: [string, dutch.Auction<T0, T1>, string],
930
930
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
931
931
  ): Promise<TypedDevInspectResults<[]>> {
@@ -941,7 +941,7 @@ export namespace dutch {
941
941
  );
942
942
  }
943
943
  export async function delivery<T0 = any, T1 = any>(
944
- client: SuiClient,
944
+ client: SuiJsonRpcClient,
945
945
  args: [
946
946
  string,
947
947
  dutch.Auction<T0, T1>,
@@ -985,7 +985,7 @@ export namespace dutch {
985
985
  >(inspectRes);
986
986
  }
987
987
  export async function getAuctionBids<T0 = any, T1 = any>(
988
- client: SuiClient,
988
+ client: SuiJsonRpcClient,
989
989
  args: [string],
990
990
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
991
991
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -1001,7 +1001,7 @@ export namespace dutch {
1001
1001
  );
1002
1002
  }
1003
1003
  export async function getAuctionPeriod<T0 = any, T1 = any>(
1004
- client: SuiClient,
1004
+ client: SuiJsonRpcClient,
1005
1005
  args: [string],
1006
1006
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1007
1007
  ): Promise<TypedDevInspectResults<[bigint, bigint]>> {
@@ -1017,7 +1017,7 @@ export namespace dutch {
1017
1017
  >(inspectRes);
1018
1018
  }
1019
1019
  export async function getBidIndex<T0 = any, T1 = any>(
1020
- client: SuiClient,
1020
+ client: SuiJsonRpcClient,
1021
1021
  args: [string],
1022
1022
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1023
1023
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -1033,7 +1033,7 @@ export namespace dutch {
1033
1033
  );
1034
1034
  }
1035
1035
  export async function getDecayedPrice<T0 = any, T1 = any>(
1036
- client: SuiClient,
1036
+ client: SuiJsonRpcClient,
1037
1037
  args: [string, string],
1038
1038
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1039
1039
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -1049,7 +1049,7 @@ export namespace dutch {
1049
1049
  );
1050
1050
  }
1051
1051
  export async function getOwnerships<T0 = any, T1 = any>(
1052
- client: SuiClient,
1052
+ client: SuiJsonRpcClient,
1053
1053
  args: [string],
1054
1054
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1055
1055
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -1065,7 +1065,7 @@ export namespace dutch {
1065
1065
  );
1066
1066
  }
1067
1067
  export async function getUserBidInfo<T0 = any, T1 = any>(
1068
- client: SuiClient,
1068
+ client: SuiJsonRpcClient,
1069
1069
  args: [string, bigint],
1070
1070
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1071
1071
  ): Promise<
@@ -1083,7 +1083,7 @@ export namespace dutch {
1083
1083
  >(inspectRes);
1084
1084
  }
1085
1085
  export async function new$<T0 = any, T1 = any>(
1086
- client: SuiClient,
1086
+ client: SuiJsonRpcClient,
1087
1087
  args: [bigint, bigint, bigint, bigint, bigint, boolean],
1088
1088
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1089
1089
  ): Promise<TypedDevInspectResults<[dutch.Auction<T0, T1>]>> {
@@ -1099,7 +1099,7 @@ export namespace dutch {
1099
1099
  >(inspectRes);
1100
1100
  }
1101
1101
  export async function newBid<T0 = any, T1 = any, T2 = any>(
1102
- client: SuiClient,
1102
+ client: SuiJsonRpcClient,
1103
1103
  args: [string, bigint, bigint, bigint, bigint, string[], string, string],
1104
1104
  typeArguments: [
1105
1105
  TypeDescriptor<T0> | string,
@@ -1121,7 +1121,7 @@ export namespace dutch {
1121
1121
  >(inspectRes);
1122
1122
  }
1123
1123
  export async function removeBid<T0 = any, T1 = any>(
1124
- client: SuiClient,
1124
+ client: SuiJsonRpcClient,
1125
1125
  args: [string, bigint, string],
1126
1126
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1127
1127
  ): Promise<TypedDevInspectResults<[]>> {
@@ -1137,7 +1137,7 @@ export namespace dutch {
1137
1137
  );
1138
1138
  }
1139
1139
  export async function totalBidSize<T0 = any, T1 = any>(
1140
- client: SuiClient,
1140
+ client: SuiJsonRpcClient,
1141
1141
  args: [string],
1142
1142
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1143
1143
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -1153,7 +1153,7 @@ export namespace dutch {
1153
1153
  );
1154
1154
  }
1155
1155
  export async function updateRemoveBidAbility<T0 = any, T1 = any>(
1156
- client: SuiClient,
1156
+ client: SuiJsonRpcClient,
1157
1157
  args: [string, string, boolean],
1158
1158
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
1159
1159
  ): Promise<TypedDevInspectResults<[]>> {
@@ -1394,7 +1394,7 @@ export namespace i64 {
1394
1394
  }
1395
1395
  export namespace view {
1396
1396
  export async function abs(
1397
- client: SuiClient,
1397
+ client: SuiJsonRpcClient,
1398
1398
  args: [string],
1399
1399
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1400
1400
  const tx = new Transaction();
@@ -1409,7 +1409,7 @@ export namespace i64 {
1409
1409
  );
1410
1410
  }
1411
1411
  export async function add(
1412
- client: SuiClient,
1412
+ client: SuiJsonRpcClient,
1413
1413
  args: [string, string],
1414
1414
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1415
1415
  const tx = new Transaction();
@@ -1424,7 +1424,7 @@ export namespace i64 {
1424
1424
  );
1425
1425
  }
1426
1426
  export async function asU64(
1427
- client: SuiClient,
1427
+ client: SuiJsonRpcClient,
1428
1428
  args: [string],
1429
1429
  ): Promise<TypedDevInspectResults<[bigint]>> {
1430
1430
  const tx = new Transaction();
@@ -1439,7 +1439,7 @@ export namespace i64 {
1439
1439
  );
1440
1440
  }
1441
1441
  export async function compare(
1442
- client: SuiClient,
1442
+ client: SuiJsonRpcClient,
1443
1443
  args: [string, string],
1444
1444
  ): Promise<TypedDevInspectResults<[number]>> {
1445
1445
  const tx = new Transaction();
@@ -1454,7 +1454,7 @@ export namespace i64 {
1454
1454
  );
1455
1455
  }
1456
1456
  export async function div(
1457
- client: SuiClient,
1457
+ client: SuiJsonRpcClient,
1458
1458
  args: [string, string],
1459
1459
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1460
1460
  const tx = new Transaction();
@@ -1469,7 +1469,7 @@ export namespace i64 {
1469
1469
  );
1470
1470
  }
1471
1471
  export async function from$(
1472
- client: SuiClient,
1472
+ client: SuiJsonRpcClient,
1473
1473
  args: [bigint],
1474
1474
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1475
1475
  const tx = new Transaction();
@@ -1484,7 +1484,7 @@ export namespace i64 {
1484
1484
  );
1485
1485
  }
1486
1486
  export async function isNeg(
1487
- client: SuiClient,
1487
+ client: SuiJsonRpcClient,
1488
1488
  args: [string],
1489
1489
  ): Promise<TypedDevInspectResults<[boolean]>> {
1490
1490
  const tx = new Transaction();
@@ -1499,7 +1499,7 @@ export namespace i64 {
1499
1499
  );
1500
1500
  }
1501
1501
  export async function isZero(
1502
- client: SuiClient,
1502
+ client: SuiJsonRpcClient,
1503
1503
  args: [string],
1504
1504
  ): Promise<TypedDevInspectResults<[boolean]>> {
1505
1505
  const tx = new Transaction();
@@ -1514,7 +1514,7 @@ export namespace i64 {
1514
1514
  );
1515
1515
  }
1516
1516
  export async function mul(
1517
- client: SuiClient,
1517
+ client: SuiJsonRpcClient,
1518
1518
  args: [string, string],
1519
1519
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1520
1520
  const tx = new Transaction();
@@ -1529,7 +1529,7 @@ export namespace i64 {
1529
1529
  );
1530
1530
  }
1531
1531
  export async function neg(
1532
- client: SuiClient,
1532
+ client: SuiJsonRpcClient,
1533
1533
  args: [string],
1534
1534
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1535
1535
  const tx = new Transaction();
@@ -1544,7 +1544,7 @@ export namespace i64 {
1544
1544
  );
1545
1545
  }
1546
1546
  export async function negFrom(
1547
- client: SuiClient,
1547
+ client: SuiJsonRpcClient,
1548
1548
  args: [bigint],
1549
1549
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1550
1550
  const tx = new Transaction();
@@ -1559,7 +1559,7 @@ export namespace i64 {
1559
1559
  );
1560
1560
  }
1561
1561
  export async function sub(
1562
- client: SuiClient,
1562
+ client: SuiJsonRpcClient,
1563
1563
  args: [string, string],
1564
1564
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1565
1565
  const tx = new Transaction();
@@ -1574,7 +1574,7 @@ export namespace i64 {
1574
1574
  );
1575
1575
  }
1576
1576
  export async function zero(
1577
- client: SuiClient,
1577
+ client: SuiJsonRpcClient,
1578
1578
  args: [],
1579
1579
  ): Promise<TypedDevInspectResults<[i64.I64]>> {
1580
1580
  const tx = new Transaction();
@@ -2421,7 +2421,7 @@ export namespace linked_list {
2421
2421
  }
2422
2422
  export namespace view {
2423
2423
  export async function borrow<T0 = any, T1 = any>(
2424
- client: SuiClient,
2424
+ client: SuiJsonRpcClient,
2425
2425
  args: [string, string, T0],
2426
2426
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2427
2427
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -2437,7 +2437,7 @@ export namespace linked_list {
2437
2437
  );
2438
2438
  }
2439
2439
  export async function borrowMut<T0 = any, T1 = any>(
2440
- client: SuiClient,
2440
+ client: SuiJsonRpcClient,
2441
2441
  args: [string, string, T0],
2442
2442
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2443
2443
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -2453,7 +2453,7 @@ export namespace linked_list {
2453
2453
  );
2454
2454
  }
2455
2455
  export async function chain<T0 = any, T1 = any>(
2456
- client: SuiClient,
2456
+ client: SuiJsonRpcClient,
2457
2457
  args: [string, string],
2458
2458
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2459
2459
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2469,7 +2469,7 @@ export namespace linked_list {
2469
2469
  );
2470
2470
  }
2471
2471
  export async function contains<T0 = any, T1 = any>(
2472
- client: SuiClient,
2472
+ client: SuiJsonRpcClient,
2473
2473
  args: [string, string, T0],
2474
2474
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2475
2475
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -2485,7 +2485,7 @@ export namespace linked_list {
2485
2485
  );
2486
2486
  }
2487
2487
  export async function delete$<T0 = any, T1 = any>(
2488
- client: SuiClient,
2488
+ client: SuiJsonRpcClient,
2489
2489
  args: [string, string, T0],
2490
2490
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2491
2491
  ): Promise<TypedDevInspectResults<[T1]>> {
@@ -2501,7 +2501,7 @@ export namespace linked_list {
2501
2501
  );
2502
2502
  }
2503
2503
  export async function first<T0 = any, T1 = any>(
2504
- client: SuiClient,
2504
+ client: SuiJsonRpcClient,
2505
2505
  args: [string],
2506
2506
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2507
2507
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
@@ -2517,7 +2517,7 @@ export namespace linked_list {
2517
2517
  >(inspectRes);
2518
2518
  }
2519
2519
  export async function isEmpty<T0 = any, T1 = any>(
2520
- client: SuiClient,
2520
+ client: SuiJsonRpcClient,
2521
2521
  args: [string],
2522
2522
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2523
2523
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -2533,7 +2533,7 @@ export namespace linked_list {
2533
2533
  );
2534
2534
  }
2535
2535
  export async function last<T0 = any, T1 = any>(
2536
- client: SuiClient,
2536
+ client: SuiJsonRpcClient,
2537
2537
  args: [string],
2538
2538
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2539
2539
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
@@ -2549,7 +2549,7 @@ export namespace linked_list {
2549
2549
  >(inspectRes);
2550
2550
  }
2551
2551
  export async function length<T0 = any, T1 = any>(
2552
- client: SuiClient,
2552
+ client: SuiJsonRpcClient,
2553
2553
  args: [string],
2554
2554
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2555
2555
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -2565,7 +2565,7 @@ export namespace linked_list {
2565
2565
  );
2566
2566
  }
2567
2567
  export async function new$<T0 = any, T1 = any>(
2568
- client: SuiClient,
2568
+ client: SuiJsonRpcClient,
2569
2569
  args: [_0x2.object$.ID],
2570
2570
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2571
2571
  ): Promise<TypedDevInspectResults<[linked_list.LinkedList<T0, T1>]>> {
@@ -2581,7 +2581,7 @@ export namespace linked_list {
2581
2581
  >(inspectRes);
2582
2582
  }
2583
2583
  export async function newNode<T0 = any, T1 = any>(
2584
- client: SuiClient,
2584
+ client: SuiJsonRpcClient,
2585
2585
  args: [T1, _0x1.option.Option<T0>, _0x1.option.Option<T0>],
2586
2586
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2587
2587
  ): Promise<TypedDevInspectResults<[linked_list.Node<T0, T1>]>> {
@@ -2597,7 +2597,7 @@ export namespace linked_list {
2597
2597
  >(inspectRes);
2598
2598
  }
2599
2599
  export async function next<T0 = any, T1 = any>(
2600
- client: SuiClient,
2600
+ client: SuiJsonRpcClient,
2601
2601
  args: [string, string, T0],
2602
2602
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2603
2603
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
@@ -2613,7 +2613,7 @@ export namespace linked_list {
2613
2613
  >(inspectRes);
2614
2614
  }
2615
2615
  export async function popBack<T0 = any, T1 = any>(
2616
- client: SuiClient,
2616
+ client: SuiJsonRpcClient,
2617
2617
  args: [string, string],
2618
2618
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2619
2619
  ): Promise<TypedDevInspectResults<[T0, T1]>> {
@@ -2629,7 +2629,7 @@ export namespace linked_list {
2629
2629
  );
2630
2630
  }
2631
2631
  export async function popFront<T0 = any, T1 = any>(
2632
- client: SuiClient,
2632
+ client: SuiJsonRpcClient,
2633
2633
  args: [string, string],
2634
2634
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2635
2635
  ): Promise<TypedDevInspectResults<[T0, T1]>> {
@@ -2645,7 +2645,7 @@ export namespace linked_list {
2645
2645
  );
2646
2646
  }
2647
2647
  export async function popNode<T0 = any, T1 = any>(
2648
- client: SuiClient,
2648
+ client: SuiJsonRpcClient,
2649
2649
  args: [string, T0],
2650
2650
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2651
2651
  ): Promise<TypedDevInspectResults<[T1]>> {
@@ -2661,7 +2661,7 @@ export namespace linked_list {
2661
2661
  );
2662
2662
  }
2663
2663
  export async function prepareNode<T0 = any, T1 = any>(
2664
- client: SuiClient,
2664
+ client: SuiJsonRpcClient,
2665
2665
  args: [string, T0, T1],
2666
2666
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2667
2667
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2677,7 +2677,7 @@ export namespace linked_list {
2677
2677
  );
2678
2678
  }
2679
2679
  export async function prev<T0 = any, T1 = any>(
2680
- client: SuiClient,
2680
+ client: SuiJsonRpcClient,
2681
2681
  args: [string, string, T0],
2682
2682
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2683
2683
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
@@ -2693,7 +2693,7 @@ export namespace linked_list {
2693
2693
  >(inspectRes);
2694
2694
  }
2695
2695
  export async function pushBack<T0 = any, T1 = any>(
2696
- client: SuiClient,
2696
+ client: SuiJsonRpcClient,
2697
2697
  args: [string, string, T0, T1],
2698
2698
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2699
2699
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2709,7 +2709,7 @@ export namespace linked_list {
2709
2709
  );
2710
2710
  }
2711
2711
  export async function pushFront<T0 = any, T1 = any>(
2712
- client: SuiClient,
2712
+ client: SuiJsonRpcClient,
2713
2713
  args: [string, string, T0, T1],
2714
2714
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2715
2715
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2725,7 +2725,7 @@ export namespace linked_list {
2725
2725
  );
2726
2726
  }
2727
2727
  export async function pushNode<T0 = any, T1 = any>(
2728
- client: SuiClient,
2728
+ client: SuiJsonRpcClient,
2729
2729
  args: [string, T0, linked_list.Node<T0, T1>],
2730
2730
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2731
2731
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2741,7 +2741,7 @@ export namespace linked_list {
2741
2741
  );
2742
2742
  }
2743
2743
  export async function putBack<T0 = any, T1 = any>(
2744
- client: SuiClient,
2744
+ client: SuiJsonRpcClient,
2745
2745
  args: [string, string, T0, T1],
2746
2746
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2747
2747
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
@@ -2757,7 +2757,7 @@ export namespace linked_list {
2757
2757
  >(inspectRes);
2758
2758
  }
2759
2759
  export async function putFront<T0 = any, T1 = any>(
2760
- client: SuiClient,
2760
+ client: SuiJsonRpcClient,
2761
2761
  args: [string, string, T0, T1],
2762
2762
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2763
2763
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
@@ -2773,7 +2773,7 @@ export namespace linked_list {
2773
2773
  >(inspectRes);
2774
2774
  }
2775
2775
  export async function putNode<T0 = any, T1 = any>(
2776
- client: SuiClient,
2776
+ client: SuiJsonRpcClient,
2777
2777
  args: [string, T0, linked_list.Node<T0, T1>],
2778
2778
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2779
2779
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>> {
@@ -2789,7 +2789,7 @@ export namespace linked_list {
2789
2789
  >(inspectRes);
2790
2790
  }
2791
2791
  export async function remove<T0 = any, T1 = any>(
2792
- client: SuiClient,
2792
+ client: SuiJsonRpcClient,
2793
2793
  args: [string, string, T0],
2794
2794
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2795
2795
  ): Promise<TypedDevInspectResults<[T1]>> {
@@ -2805,7 +2805,7 @@ export namespace linked_list {
2805
2805
  );
2806
2806
  }
2807
2807
  export async function takeBack<T0 = any, T1 = any>(
2808
- client: SuiClient,
2808
+ client: SuiJsonRpcClient,
2809
2809
  args: [string, string],
2810
2810
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2811
2811
  ): Promise<TypedDevInspectResults<[T0, T1]>> {
@@ -2821,7 +2821,7 @@ export namespace linked_list {
2821
2821
  );
2822
2822
  }
2823
2823
  export async function takeFront<T0 = any, T1 = any>(
2824
- client: SuiClient,
2824
+ client: SuiJsonRpcClient,
2825
2825
  args: [string, string],
2826
2826
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2827
2827
  ): Promise<TypedDevInspectResults<[T0, T1]>> {
@@ -2837,7 +2837,7 @@ export namespace linked_list {
2837
2837
  );
2838
2838
  }
2839
2839
  export async function takeNode<T0 = any, T1 = any>(
2840
- client: SuiClient,
2840
+ client: SuiJsonRpcClient,
2841
2841
  args: [string, T0],
2842
2842
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2843
2843
  ): Promise<TypedDevInspectResults<[T1]>> {
@@ -5445,7 +5445,7 @@ export namespace single_collateral {
5445
5445
  }
5446
5446
  export namespace view {
5447
5447
  export async function addAuthorizedUser(
5448
- client: SuiClient,
5448
+ client: SuiJsonRpcClient,
5449
5449
  args: [string, string, string[]],
5450
5450
  ): Promise<TypedDevInspectResults<[]>> {
5451
5451
  const tx = new Transaction();
@@ -5464,7 +5464,7 @@ export namespace single_collateral {
5464
5464
  T1 = any,
5465
5465
  T2 = any,
5466
5466
  >(
5467
- client: SuiClient,
5467
+ client: SuiJsonRpcClient,
5468
5468
  args: [string, string, bigint, string[]],
5469
5469
  typeArguments: [
5470
5470
  TypeDescriptor<T0> | string,
@@ -5488,7 +5488,7 @@ export namespace single_collateral {
5488
5488
  T1 = any,
5489
5489
  T2 = any,
5490
5490
  >(
5491
- client: SuiClient,
5491
+ client: SuiJsonRpcClient,
5492
5492
  args: [string, bigint, string[]],
5493
5493
  typeArguments: [
5494
5494
  TypeDescriptor<T0> | string,
@@ -5512,7 +5512,7 @@ export namespace single_collateral {
5512
5512
  );
5513
5513
  }
5514
5514
  export async function authorizedDelivery<T0 = any, T1 = any, T2 = any>(
5515
- client: SuiClient,
5515
+ client: SuiJsonRpcClient,
5516
5516
  args: [string, bigint, string, string],
5517
5517
  typeArguments: [
5518
5518
  TypeDescriptor<T0> | string,
@@ -5536,7 +5536,7 @@ export namespace single_collateral {
5536
5536
  T1 = any,
5537
5537
  T2 = any,
5538
5538
  >(
5539
- client: SuiClient,
5539
+ client: SuiJsonRpcClient,
5540
5540
  args: [
5541
5541
  string,
5542
5542
  string,
@@ -5583,7 +5583,7 @@ export namespace single_collateral {
5583
5583
  T1 = any,
5584
5584
  T2 = any,
5585
5585
  >(
5586
- client: SuiClient,
5586
+ client: SuiJsonRpcClient,
5587
5587
  args: [string, bigint, string[]],
5588
5588
  typeArguments: [
5589
5589
  TypeDescriptor<T0> | string,
@@ -5611,7 +5611,7 @@ export namespace single_collateral {
5611
5611
  T1 = any,
5612
5612
  T2 = any,
5613
5613
  >(
5614
- client: SuiClient,
5614
+ client: SuiJsonRpcClient,
5615
5615
  args: [string, bigint, bigint],
5616
5616
  typeArguments: [
5617
5617
  TypeDescriptor<T0> | string,
@@ -5635,7 +5635,7 @@ export namespace single_collateral {
5635
5635
  T1 = any,
5636
5636
  T2 = any,
5637
5637
  >(
5638
- client: SuiClient,
5638
+ client: SuiJsonRpcClient,
5639
5639
  args: [
5640
5640
  string,
5641
5641
  bigint,
@@ -5670,7 +5670,7 @@ export namespace single_collateral {
5670
5670
  T1 = any,
5671
5671
  T2 = any,
5672
5672
  >(
5673
- client: SuiClient,
5673
+ client: SuiJsonRpcClient,
5674
5674
  args: [string, bigint, bigint, bigint, bigint, bigint, bigint],
5675
5675
  typeArguments: [
5676
5676
  TypeDescriptor<T0> | string,
@@ -5690,7 +5690,7 @@ export namespace single_collateral {
5690
5690
  );
5691
5691
  }
5692
5692
  export async function claim<T0 = any, T1 = any, T2 = any>(
5693
- client: SuiClient,
5693
+ client: SuiJsonRpcClient,
5694
5694
  args: [string, bigint],
5695
5695
  typeArguments: [
5696
5696
  TypeDescriptor<T0> | string,
@@ -5710,7 +5710,7 @@ export namespace single_collateral {
5710
5710
  );
5711
5711
  }
5712
5712
  export async function claimAndHarvest<T0 = any, T1 = any, T2 = any>(
5713
- client: SuiClient,
5713
+ client: SuiJsonRpcClient,
5714
5714
  args: [string, bigint],
5715
5715
  typeArguments: [
5716
5716
  TypeDescriptor<T0> | string,
@@ -5730,7 +5730,7 @@ export namespace single_collateral {
5730
5730
  );
5731
5731
  }
5732
5732
  export async function close<T0 = any, T1 = any, T2 = any>(
5733
- client: SuiClient,
5733
+ client: SuiJsonRpcClient,
5734
5734
  args: [string, string, bigint],
5735
5735
  typeArguments: [
5736
5736
  TypeDescriptor<T0> | string,
@@ -5750,7 +5750,7 @@ export namespace single_collateral {
5750
5750
  );
5751
5751
  }
5752
5752
  export async function compound<T0 = any, T1 = any>(
5753
- client: SuiClient,
5753
+ client: SuiJsonRpcClient,
5754
5754
  args: [string, bigint],
5755
5755
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
5756
5756
  ): Promise<TypedDevInspectResults<[]>> {
@@ -5766,7 +5766,7 @@ export namespace single_collateral {
5766
5766
  );
5767
5767
  }
5768
5768
  export async function delivery<T0 = any, T1 = any, T2 = any>(
5769
- client: SuiClient,
5769
+ client: SuiJsonRpcClient,
5770
5770
  args: [string, string, bigint, string, string],
5771
5771
  typeArguments: [
5772
5772
  TypeDescriptor<T0> | string,
@@ -5786,7 +5786,7 @@ export namespace single_collateral {
5786
5786
  );
5787
5787
  }
5788
5788
  export async function deposit<T0 = any, T1 = any, T2 = any>(
5789
- client: SuiClient,
5789
+ client: SuiJsonRpcClient,
5790
5790
  args: [string, bigint, string[], bigint],
5791
5791
  typeArguments: [
5792
5792
  TypeDescriptor<T0> | string,
@@ -5806,7 +5806,7 @@ export namespace single_collateral {
5806
5806
  );
5807
5807
  }
5808
5808
  export async function evolution<T0 = any, T1 = any, T2 = any>(
5809
- client: SuiClient,
5809
+ client: SuiJsonRpcClient,
5810
5810
  args: [string, string, bigint, string, string],
5811
5811
  typeArguments: [
5812
5812
  TypeDescriptor<T0> | string,
@@ -5826,7 +5826,7 @@ export namespace single_collateral {
5826
5826
  );
5827
5827
  }
5828
5828
  export async function getAuctionMaxSize<T0 = any, T1 = any, T2 = any>(
5829
- client: SuiClient,
5829
+ client: SuiJsonRpcClient,
5830
5830
  args: [string, bigint, string],
5831
5831
  typeArguments: [
5832
5832
  TypeDescriptor<T0> | string,
@@ -5846,7 +5846,7 @@ export namespace single_collateral {
5846
5846
  );
5847
5847
  }
5848
5848
  export async function getMaxLossPerUnit<T0 = any, T1 = any, T2 = any>(
5849
- client: SuiClient,
5849
+ client: SuiJsonRpcClient,
5850
5850
  args: [string, bigint, string],
5851
5851
  typeArguments: [
5852
5852
  TypeDescriptor<T0> | string,
@@ -5866,7 +5866,7 @@ export namespace single_collateral {
5866
5866
  );
5867
5867
  }
5868
5868
  export async function getUserStatus<T0 = any, T1 = any, T2 = any>(
5869
- client: SuiClient,
5869
+ client: SuiJsonRpcClient,
5870
5870
  args: [string, bigint, string],
5871
5871
  typeArguments: [
5872
5872
  TypeDescriptor<T0> | string,
@@ -5888,7 +5888,7 @@ export namespace single_collateral {
5888
5888
  >(inspectRes);
5889
5889
  }
5890
5890
  export async function harvest<T0 = any, T1 = any, T2 = any>(
5891
- client: SuiClient,
5891
+ client: SuiJsonRpcClient,
5892
5892
  args: [string, bigint],
5893
5893
  typeArguments: [
5894
5894
  TypeDescriptor<T0> | string,
@@ -5908,7 +5908,7 @@ export namespace single_collateral {
5908
5908
  );
5909
5909
  }
5910
5910
  export async function newAuction<T0 = any, T1 = any, T2 = any>(
5911
- client: SuiClient,
5911
+ client: SuiJsonRpcClient,
5912
5912
  args: [string, string, bigint, bigint, string, string],
5913
5913
  typeArguments: [
5914
5914
  TypeDescriptor<T0> | string,
@@ -5928,7 +5928,7 @@ export namespace single_collateral {
5928
5928
  );
5929
5929
  }
5930
5930
  export async function newBid<T0 = any, T1 = any, T2 = any>(
5931
- client: SuiClient,
5931
+ client: SuiJsonRpcClient,
5932
5932
  args: [string, bigint, string, string, string[], bigint],
5933
5933
  typeArguments: [
5934
5934
  TypeDescriptor<T0> | string,
@@ -5948,7 +5948,7 @@ export namespace single_collateral {
5948
5948
  );
5949
5949
  }
5950
5950
  export async function newManager(
5951
- client: SuiClient,
5951
+ client: SuiJsonRpcClient,
5952
5952
  args: [string, string[]],
5953
5953
  ): Promise<TypedDevInspectResults<[]>> {
5954
5954
  const tx = new Transaction();
@@ -5963,7 +5963,7 @@ export namespace single_collateral {
5963
5963
  );
5964
5964
  }
5965
5965
  export async function newPortfolioVault<T0 = any, T1 = any, T2 = any>(
5966
- client: SuiClient,
5966
+ client: SuiJsonRpcClient,
5967
5967
  args: [
5968
5968
  string,
5969
5969
  string,
@@ -6007,7 +6007,7 @@ export namespace single_collateral {
6007
6007
  );
6008
6008
  }
6009
6009
  export async function removeAuthorizedUser(
6010
- client: SuiClient,
6010
+ client: SuiJsonRpcClient,
6011
6011
  args: [string, string, string[]],
6012
6012
  ): Promise<TypedDevInspectResults<[]>> {
6013
6013
  const tx = new Transaction();
@@ -6022,7 +6022,7 @@ export namespace single_collateral {
6022
6022
  );
6023
6023
  }
6024
6024
  export async function removeManager(
6025
- client: SuiClient,
6025
+ client: SuiJsonRpcClient,
6026
6026
  args: [single_collateral.ManagerCap],
6027
6027
  ): Promise<TypedDevInspectResults<[]>> {
6028
6028
  const tx = new Transaction();
@@ -6041,7 +6041,7 @@ export namespace single_collateral {
6041
6041
  T1 = any,
6042
6042
  T2 = any,
6043
6043
  >(
6044
- client: SuiClient,
6044
+ client: SuiJsonRpcClient,
6045
6045
  args: [string, string, bigint, string[]],
6046
6046
  typeArguments: [
6047
6047
  TypeDescriptor<T0> | string,
@@ -6061,7 +6061,7 @@ export namespace single_collateral {
6061
6061
  );
6062
6062
  }
6063
6063
  export async function terminateAuction<T0 = any, T1 = any, T2 = any>(
6064
- client: SuiClient,
6064
+ client: SuiJsonRpcClient,
6065
6065
  args: [string, string, bigint, string],
6066
6066
  typeArguments: [
6067
6067
  TypeDescriptor<T0> | string,
@@ -6081,7 +6081,7 @@ export namespace single_collateral {
6081
6081
  );
6082
6082
  }
6083
6083
  export async function terminateVault<T0 = any, T1 = any, T2 = any>(
6084
- client: SuiClient,
6084
+ client: SuiJsonRpcClient,
6085
6085
  args: [string, string, bigint, string],
6086
6086
  typeArguments: [
6087
6087
  TypeDescriptor<T0> | string,
@@ -6101,7 +6101,7 @@ export namespace single_collateral {
6101
6101
  );
6102
6102
  }
6103
6103
  export async function unsubscribe<T0 = any, T1 = any, T2 = any>(
6104
- client: SuiClient,
6104
+ client: SuiJsonRpcClient,
6105
6105
  args: [string, bigint, _0x1.option.Option<bigint>],
6106
6106
  typeArguments: [
6107
6107
  TypeDescriptor<T0> | string,
@@ -6121,7 +6121,7 @@ export namespace single_collateral {
6121
6121
  );
6122
6122
  }
6123
6123
  export async function updateActiveVaultConfig<T0 = any, T1 = any, T2 = any>(
6124
- client: SuiClient,
6124
+ client: SuiJsonRpcClient,
6125
6125
  args: [string, string, bigint, bigint, bigint, bigint, bigint, bigint],
6126
6126
  typeArguments: [
6127
6127
  TypeDescriptor<T0> | string,
@@ -6141,7 +6141,7 @@ export namespace single_collateral {
6141
6141
  );
6142
6142
  }
6143
6143
  export async function updateCapacity<T0 = any, T1 = any, T2 = any>(
6144
- client: SuiClient,
6144
+ client: SuiJsonRpcClient,
6145
6145
  args: [string, string, bigint, bigint],
6146
6146
  typeArguments: [
6147
6147
  TypeDescriptor<T0> | string,
@@ -6161,7 +6161,7 @@ export namespace single_collateral {
6161
6161
  );
6162
6162
  }
6163
6163
  export async function updateRestrictActivationTimePeriod(
6164
- client: SuiClient,
6164
+ client: SuiJsonRpcClient,
6165
6165
  args: [string, string, bigint, bigint],
6166
6166
  ): Promise<TypedDevInspectResults<[]>> {
6167
6167
  const tx = new Transaction();
@@ -6180,7 +6180,7 @@ export namespace single_collateral {
6180
6180
  T1 = any,
6181
6181
  T2 = any,
6182
6182
  >(
6183
- client: SuiClient,
6183
+ client: SuiJsonRpcClient,
6184
6184
  args: [
6185
6185
  string,
6186
6186
  string,
@@ -6212,7 +6212,7 @@ export namespace single_collateral {
6212
6212
  );
6213
6213
  }
6214
6214
  export async function updateWarmupVaultConfig<T0 = any, T1 = any, T2 = any>(
6215
- client: SuiClient,
6215
+ client: SuiJsonRpcClient,
6216
6216
  args: [string, string, bigint, bigint, bigint, bigint, bigint, bigint],
6217
6217
  typeArguments: [
6218
6218
  TypeDescriptor<T0> | string,
@@ -6232,7 +6232,7 @@ export namespace single_collateral {
6232
6232
  );
6233
6233
  }
6234
6234
  export async function withdraw<T0 = any, T1 = any, T2 = any>(
6235
- client: SuiClient,
6235
+ client: SuiJsonRpcClient,
6236
6236
  args: [string, bigint, _0x1.option.Option<bigint>],
6237
6237
  typeArguments: [
6238
6238
  TypeDescriptor<T0> | string,
@@ -6333,7 +6333,7 @@ export namespace utils {
6333
6333
  }
6334
6334
  export namespace view {
6335
6335
  export async function extractBalance<T0 = any>(
6336
- client: SuiClient,
6336
+ client: SuiJsonRpcClient,
6337
6337
  args: [string[], bigint],
6338
6338
  typeArguments: [TypeDescriptor<T0> | string],
6339
6339
  ): Promise<TypedDevInspectResults<[_0x2.balance.Balance<T0>]>> {
@@ -6349,7 +6349,7 @@ export namespace utils {
6349
6349
  >(inspectRes);
6350
6350
  }
6351
6351
  export async function getDateFromTs(
6352
- client: SuiClient,
6352
+ client: SuiJsonRpcClient,
6353
6353
  args: [bigint],
6354
6354
  ): Promise<TypedDevInspectResults<[bigint, bigint, bigint]>> {
6355
6355
  const tx = new Transaction();
@@ -6364,7 +6364,7 @@ export namespace utils {
6364
6364
  >(inspectRes);
6365
6365
  }
6366
6366
  export async function matchTypes<T0 = any, T1 = any>(
6367
- client: SuiClient,
6367
+ client: SuiJsonRpcClient,
6368
6368
  args: [],
6369
6369
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
6370
6370
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -6380,7 +6380,7 @@ export namespace utils {
6380
6380
  );
6381
6381
  }
6382
6382
  export async function multiplier(
6383
- client: SuiClient,
6383
+ client: SuiJsonRpcClient,
6384
6384
  args: [bigint],
6385
6385
  ): Promise<TypedDevInspectResults<[bigint]>> {
6386
6386
  const tx = new Transaction();
@@ -8508,7 +8508,7 @@ export namespace vault {
8508
8508
  }
8509
8509
  export namespace view {
8510
8510
  export async function activate<T0 = any, T1 = any>(
8511
- client: SuiClient,
8511
+ client: SuiJsonRpcClient,
8512
8512
  args: [string, string, string, boolean],
8513
8513
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8514
8514
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8524,7 +8524,7 @@ export namespace vault {
8524
8524
  );
8525
8525
  }
8526
8526
  export async function activeBalance<T0 = any, T1 = any>(
8527
- client: SuiClient,
8527
+ client: SuiJsonRpcClient,
8528
8528
  args: [string],
8529
8529
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8530
8530
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8540,7 +8540,7 @@ export namespace vault {
8540
8540
  );
8541
8541
  }
8542
8542
  export async function activeShareSupply<T0 = any, T1 = any>(
8543
- client: SuiClient,
8543
+ client: SuiJsonRpcClient,
8544
8544
  args: [string],
8545
8545
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8546
8546
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8556,7 +8556,7 @@ export namespace vault {
8556
8556
  );
8557
8557
  }
8558
8558
  export async function activeUserShares<T0 = any, T1 = any>(
8559
- client: SuiClient,
8559
+ client: SuiJsonRpcClient,
8560
8560
  args: [string],
8561
8561
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8562
8562
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -8572,7 +8572,7 @@ export namespace vault {
8572
8572
  );
8573
8573
  }
8574
8574
  export async function bidderBalance<T0 = any, T1 = any>(
8575
- client: SuiClient,
8575
+ client: SuiJsonRpcClient,
8576
8576
  args: [string],
8577
8577
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8578
8578
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8588,7 +8588,7 @@ export namespace vault {
8588
8588
  );
8589
8589
  }
8590
8590
  export async function bidderShareSupply<T0 = any, T1 = any>(
8591
- client: SuiClient,
8591
+ client: SuiJsonRpcClient,
8592
8592
  args: [string],
8593
8593
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8594
8594
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8604,7 +8604,7 @@ export namespace vault {
8604
8604
  );
8605
8605
  }
8606
8606
  export async function bidderShares<T0 = any, T1 = any>(
8607
- client: SuiClient,
8607
+ client: SuiJsonRpcClient,
8608
8608
  args: [string],
8609
8609
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8610
8610
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -8620,7 +8620,7 @@ export namespace vault {
8620
8620
  );
8621
8621
  }
8622
8622
  export async function claim<T0 = any, T1 = any>(
8623
- client: SuiClient,
8623
+ client: SuiJsonRpcClient,
8624
8624
  args: [string, string],
8625
8625
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8626
8626
  ): Promise<TypedDevInspectResults<[bigint, bigint]>> {
@@ -8636,7 +8636,7 @@ export namespace vault {
8636
8636
  >(inspectRes);
8637
8637
  }
8638
8638
  export async function closeBidVault<T0 = any, T1 = any>(
8639
- client: SuiClient,
8639
+ client: SuiJsonRpcClient,
8640
8640
  args: [string, string, vault.BidVault<T0, T1>],
8641
8641
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8642
8642
  ): Promise<
@@ -8664,7 +8664,7 @@ export namespace vault {
8664
8664
  >(inspectRes);
8665
8665
  }
8666
8666
  export async function closeDepositVault<T0 = any, T1 = any>(
8667
- client: SuiClient,
8667
+ client: SuiJsonRpcClient,
8668
8668
  args: [string, string, vault.DepositVault<T0, T1>],
8669
8669
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8670
8670
  ): Promise<
@@ -8694,7 +8694,7 @@ export namespace vault {
8694
8694
  >(inspectRes);
8695
8695
  }
8696
8696
  export async function compound<T0 = any, T1 = any>(
8697
- client: SuiClient,
8697
+ client: SuiJsonRpcClient,
8698
8698
  args: [string, string, string],
8699
8699
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8700
8700
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8710,7 +8710,7 @@ export namespace vault {
8710
8710
  );
8711
8711
  }
8712
8712
  export async function deactivatingBalance<T0 = any, T1 = any>(
8713
- client: SuiClient,
8713
+ client: SuiJsonRpcClient,
8714
8714
  args: [string],
8715
8715
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8716
8716
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8726,7 +8726,7 @@ export namespace vault {
8726
8726
  );
8727
8727
  }
8728
8728
  export async function deactivatingShareSupply<T0 = any, T1 = any>(
8729
- client: SuiClient,
8729
+ client: SuiJsonRpcClient,
8730
8730
  args: [string],
8731
8731
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8732
8732
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8742,7 +8742,7 @@ export namespace vault {
8742
8742
  );
8743
8743
  }
8744
8744
  export async function deactivatingUserShares<T0 = any, T1 = any>(
8745
- client: SuiClient,
8745
+ client: SuiJsonRpcClient,
8746
8746
  args: [string],
8747
8747
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8748
8748
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -8758,7 +8758,7 @@ export namespace vault {
8758
8758
  );
8759
8759
  }
8760
8760
  export async function delivery<T0 = any, T1 = any, T2 = any>(
8761
- client: SuiClient,
8761
+ client: SuiJsonRpcClient,
8762
8762
  args: [
8763
8763
  string,
8764
8764
  string,
@@ -8791,7 +8791,7 @@ export namespace vault {
8791
8791
  T2 = any,
8792
8792
  T3 = any,
8793
8793
  >(
8794
- client: SuiClient,
8794
+ client: SuiJsonRpcClient,
8795
8795
  args: [
8796
8796
  string,
8797
8797
  string,
@@ -8821,7 +8821,7 @@ export namespace vault {
8821
8821
  );
8822
8822
  }
8823
8823
  export async function deposit<T0 = any, T1 = any>(
8824
- client: SuiClient,
8824
+ client: SuiJsonRpcClient,
8825
8825
  args: [string, string, string[], bigint, bigint],
8826
8826
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8827
8827
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8837,7 +8837,7 @@ export namespace vault {
8837
8837
  );
8838
8838
  }
8839
8839
  export async function getActiveUserShare<T0 = any, T1 = any>(
8840
- client: SuiClient,
8840
+ client: SuiJsonRpcClient,
8841
8841
  args: [string, string, string],
8842
8842
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8843
8843
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8853,7 +8853,7 @@ export namespace vault {
8853
8853
  );
8854
8854
  }
8855
8855
  export async function getBidVaultBalance<T0 = any, T1 = any>(
8856
- client: SuiClient,
8856
+ client: SuiJsonRpcClient,
8857
8857
  args: [string],
8858
8858
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8859
8859
  ): Promise<TypedDevInspectResults<[bigint, bigint]>> {
@@ -8869,7 +8869,7 @@ export namespace vault {
8869
8869
  >(inspectRes);
8870
8870
  }
8871
8871
  export async function getBidVaultShareSupply<T0 = any, T1 = any>(
8872
- client: SuiClient,
8872
+ client: SuiJsonRpcClient,
8873
8873
  args: [string],
8874
8874
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8875
8875
  ): Promise<TypedDevInspectResults<[bigint, bigint]>> {
@@ -8885,7 +8885,7 @@ export namespace vault {
8885
8885
  >(inspectRes);
8886
8886
  }
8887
8887
  export async function getBidderUserShare<T0 = any, T1 = any>(
8888
- client: SuiClient,
8888
+ client: SuiJsonRpcClient,
8889
8889
  args: [string, string, string],
8890
8890
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8891
8891
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8901,7 +8901,7 @@ export namespace vault {
8901
8901
  );
8902
8902
  }
8903
8903
  export async function getDeactivatingUserShare<T0 = any, T1 = any>(
8904
- client: SuiClient,
8904
+ client: SuiJsonRpcClient,
8905
8905
  args: [string, string, string],
8906
8906
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8907
8907
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8917,7 +8917,7 @@ export namespace vault {
8917
8917
  );
8918
8918
  }
8919
8919
  export async function getDepositVaultBalance<T0 = any, T1 = any>(
8920
- client: SuiClient,
8920
+ client: SuiJsonRpcClient,
8921
8921
  args: [string],
8922
8922
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8923
8923
  ): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
@@ -8933,7 +8933,7 @@ export namespace vault {
8933
8933
  >(inspectRes);
8934
8934
  }
8935
8935
  export async function getDepositVaultShareSupply<T0 = any, T1 = any>(
8936
- client: SuiClient,
8936
+ client: SuiJsonRpcClient,
8937
8937
  args: [string],
8938
8938
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8939
8939
  ): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
@@ -8949,7 +8949,7 @@ export namespace vault {
8949
8949
  >(inspectRes);
8950
8950
  }
8951
8951
  export async function getInactiveUserShare<T0 = any, T1 = any>(
8952
- client: SuiClient,
8952
+ client: SuiJsonRpcClient,
8953
8953
  args: [string, string, string],
8954
8954
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8955
8955
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8965,7 +8965,7 @@ export namespace vault {
8965
8965
  );
8966
8966
  }
8967
8967
  export async function getPerformanceFeeUserShare<T0 = any, T1 = any>(
8968
- client: SuiClient,
8968
+ client: SuiJsonRpcClient,
8969
8969
  args: [string, string, string],
8970
8970
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8971
8971
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8981,7 +8981,7 @@ export namespace vault {
8981
8981
  );
8982
8982
  }
8983
8983
  export async function getPremiumUserShare<T0 = any, T1 = any>(
8984
- client: SuiClient,
8984
+ client: SuiJsonRpcClient,
8985
8985
  args: [string, string, string],
8986
8986
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
8987
8987
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8997,7 +8997,7 @@ export namespace vault {
8997
8997
  );
8998
8998
  }
8999
8999
  export async function getWarmupUserShare<T0 = any, T1 = any>(
9000
- client: SuiClient,
9000
+ client: SuiJsonRpcClient,
9001
9001
  args: [string, string, string],
9002
9002
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9003
9003
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9013,7 +9013,7 @@ export namespace vault {
9013
9013
  );
9014
9014
  }
9015
9015
  export async function harvest<T0 = any, T1 = any>(
9016
- client: SuiClient,
9016
+ client: SuiJsonRpcClient,
9017
9017
  args: [string, string],
9018
9018
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9019
9019
  ): Promise<TypedDevInspectResults<[bigint, bigint]>> {
@@ -9029,7 +9029,7 @@ export namespace vault {
9029
9029
  >(inspectRes);
9030
9030
  }
9031
9031
  export async function hasNext<T0 = any, T1 = any>(
9032
- client: SuiClient,
9032
+ client: SuiJsonRpcClient,
9033
9033
  args: [string],
9034
9034
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9035
9035
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -9045,7 +9045,7 @@ export namespace vault {
9045
9045
  );
9046
9046
  }
9047
9047
  export async function inactiveBalance<T0 = any, T1 = any>(
9048
- client: SuiClient,
9048
+ client: SuiJsonRpcClient,
9049
9049
  args: [string],
9050
9050
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9051
9051
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9061,7 +9061,7 @@ export namespace vault {
9061
9061
  );
9062
9062
  }
9063
9063
  export async function inactiveShareSupply<T0 = any, T1 = any>(
9064
- client: SuiClient,
9064
+ client: SuiJsonRpcClient,
9065
9065
  args: [string],
9066
9066
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9067
9067
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9077,7 +9077,7 @@ export namespace vault {
9077
9077
  );
9078
9078
  }
9079
9079
  export async function inactiveUserShares<T0 = any, T1 = any>(
9080
- client: SuiClient,
9080
+ client: SuiJsonRpcClient,
9081
9081
  args: [string],
9082
9082
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9083
9083
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -9093,7 +9093,7 @@ export namespace vault {
9093
9093
  );
9094
9094
  }
9095
9095
  export async function isActiveUser<T0 = any, T1 = any>(
9096
- client: SuiClient,
9096
+ client: SuiJsonRpcClient,
9097
9097
  args: [string, string, string],
9098
9098
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9099
9099
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -9109,7 +9109,7 @@ export namespace vault {
9109
9109
  );
9110
9110
  }
9111
9111
  export async function isDeactivatingUser<T0 = any, T1 = any>(
9112
- client: SuiClient,
9112
+ client: SuiJsonRpcClient,
9113
9113
  args: [string, string, string],
9114
9114
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9115
9115
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -9125,7 +9125,7 @@ export namespace vault {
9125
9125
  );
9126
9126
  }
9127
9127
  export async function isInactiveUser<T0 = any, T1 = any>(
9128
- client: SuiClient,
9128
+ client: SuiJsonRpcClient,
9129
9129
  args: [string, string, string],
9130
9130
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9131
9131
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -9141,7 +9141,7 @@ export namespace vault {
9141
9141
  );
9142
9142
  }
9143
9143
  export async function isWarmupUser<T0 = any, T1 = any>(
9144
- client: SuiClient,
9144
+ client: SuiJsonRpcClient,
9145
9145
  args: [string, string, string],
9146
9146
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9147
9147
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -9157,7 +9157,7 @@ export namespace vault {
9157
9157
  );
9158
9158
  }
9159
9159
  export async function newBidVault<T0 = any, T1 = any>(
9160
- client: SuiClient,
9160
+ client: SuiJsonRpcClient,
9161
9161
  args: [bigint, string],
9162
9162
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9163
9163
  ): Promise<TypedDevInspectResults<[vault.BidVault<T0, T1>]>> {
@@ -9173,7 +9173,7 @@ export namespace vault {
9173
9173
  >(inspectRes);
9174
9174
  }
9175
9175
  export async function newDepositVault<T0 = any, T1 = any>(
9176
- client: SuiClient,
9176
+ client: SuiJsonRpcClient,
9177
9177
  args: [bigint, string],
9178
9178
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9179
9179
  ): Promise<TypedDevInspectResults<[vault.DepositVault<T0, T1>]>> {
@@ -9189,7 +9189,7 @@ export namespace vault {
9189
9189
  >(inspectRes);
9190
9190
  }
9191
9191
  export async function newUserShareRegistry(
9192
- client: SuiClient,
9192
+ client: SuiJsonRpcClient,
9193
9193
  args: [],
9194
9194
  ): Promise<TypedDevInspectResults<[vault.UserShareRegistry]>> {
9195
9195
  const tx = new Transaction();
@@ -9204,7 +9204,7 @@ export namespace vault {
9204
9204
  >(inspectRes);
9205
9205
  }
9206
9206
  export async function performanceFeeBalance<T0 = any, T1 = any>(
9207
- client: SuiClient,
9207
+ client: SuiJsonRpcClient,
9208
9208
  args: [string],
9209
9209
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9210
9210
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9220,7 +9220,7 @@ export namespace vault {
9220
9220
  );
9221
9221
  }
9222
9222
  export async function performanceFeeShareSupply<T0 = any, T1 = any>(
9223
- client: SuiClient,
9223
+ client: SuiJsonRpcClient,
9224
9224
  args: [string],
9225
9225
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9226
9226
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9236,7 +9236,7 @@ export namespace vault {
9236
9236
  );
9237
9237
  }
9238
9238
  export async function performanceFeeShares<T0 = any, T1 = any>(
9239
- client: SuiClient,
9239
+ client: SuiJsonRpcClient,
9240
9240
  args: [string],
9241
9241
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9242
9242
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -9252,7 +9252,7 @@ export namespace vault {
9252
9252
  );
9253
9253
  }
9254
9254
  export async function premiumBalance<T0 = any, T1 = any>(
9255
- client: SuiClient,
9255
+ client: SuiJsonRpcClient,
9256
9256
  args: [string],
9257
9257
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9258
9258
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9268,7 +9268,7 @@ export namespace vault {
9268
9268
  );
9269
9269
  }
9270
9270
  export async function premiumShareSupply<T0 = any, T1 = any>(
9271
- client: SuiClient,
9271
+ client: SuiJsonRpcClient,
9272
9272
  args: [string],
9273
9273
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9274
9274
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9284,7 +9284,7 @@ export namespace vault {
9284
9284
  );
9285
9285
  }
9286
9286
  export async function premiumShares<T0 = any, T1 = any>(
9287
- client: SuiClient,
9287
+ client: SuiJsonRpcClient,
9288
9288
  args: [string],
9289
9289
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9290
9290
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -9300,7 +9300,7 @@ export namespace vault {
9300
9300
  );
9301
9301
  }
9302
9302
  export async function refund<T0 = any, T1 = any>(
9303
- client: SuiClient,
9303
+ client: SuiJsonRpcClient,
9304
9304
  args: [string, string, string, bigint],
9305
9305
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9306
9306
  ): Promise<TypedDevInspectResults<[]>> {
@@ -9316,7 +9316,7 @@ export namespace vault {
9316
9316
  );
9317
9317
  }
9318
9318
  export async function settleFund<T0 = any, T1 = any, T2 = any, T3 = any>(
9319
- client: SuiClient,
9319
+ client: SuiJsonRpcClient,
9320
9320
  args: [string, string, string, string, bigint, bigint, bigint, bigint],
9321
9321
  typeArguments: [
9322
9322
  TypeDescriptor<T0> | string,
@@ -9342,7 +9342,7 @@ export namespace vault {
9342
9342
  T2 = any,
9343
9343
  T3 = any,
9344
9344
  >(
9345
- client: SuiClient,
9345
+ client: SuiJsonRpcClient,
9346
9346
  args: [
9347
9347
  string,
9348
9348
  string,
@@ -9377,7 +9377,7 @@ export namespace vault {
9377
9377
  );
9378
9378
  }
9379
9379
  export async function unsubscribe<T0 = any, T1 = any>(
9380
- client: SuiClient,
9380
+ client: SuiJsonRpcClient,
9381
9381
  args: [string, string, _0x1.option.Option<bigint>],
9382
9382
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9383
9383
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9393,7 +9393,7 @@ export namespace vault {
9393
9393
  );
9394
9394
  }
9395
9395
  export async function userShareRegistryUid(
9396
- client: SuiClient,
9396
+ client: SuiJsonRpcClient,
9397
9397
  args: [string],
9398
9398
  ): Promise<TypedDevInspectResults<[string]>> {
9399
9399
  const tx = new Transaction();
@@ -9408,7 +9408,7 @@ export namespace vault {
9408
9408
  );
9409
9409
  }
9410
9410
  export async function warmupBalance<T0 = any, T1 = any>(
9411
- client: SuiClient,
9411
+ client: SuiJsonRpcClient,
9412
9412
  args: [string],
9413
9413
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9414
9414
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9424,7 +9424,7 @@ export namespace vault {
9424
9424
  );
9425
9425
  }
9426
9426
  export async function warmupShareSupply<T0 = any, T1 = any>(
9427
- client: SuiClient,
9427
+ client: SuiJsonRpcClient,
9428
9428
  args: [string],
9429
9429
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9430
9430
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -9440,7 +9440,7 @@ export namespace vault {
9440
9440
  );
9441
9441
  }
9442
9442
  export async function warmupUserShares<T0 = any, T1 = any>(
9443
- client: SuiClient,
9443
+ client: SuiJsonRpcClient,
9444
9444
  args: [string],
9445
9445
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9446
9446
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -9456,7 +9456,7 @@ export namespace vault {
9456
9456
  );
9457
9457
  }
9458
9458
  export async function withdraw<T0 = any, T1 = any>(
9459
- client: SuiClient,
9459
+ client: SuiJsonRpcClient,
9460
9460
  args: [string, string, _0x1.option.Option<bigint>],
9461
9461
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
9462
9462
  ): Promise<TypedDevInspectResults<[bigint]>> {