@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,
@@ -52,7 +52,7 @@ export namespace address {
52
52
  }
53
53
  export namespace view {
54
54
  export async function length(
55
- client: SuiClient,
55
+ client: SuiJsonRpcClient,
56
56
  args: [],
57
57
  ): Promise<TypedDevInspectResults<[bigint]>> {
58
58
  const tx = new Transaction();
@@ -369,7 +369,7 @@ export namespace ascii {
369
369
  }
370
370
  export namespace view {
371
371
  export async function allCharactersPrintable(
372
- client: SuiClient,
372
+ client: SuiJsonRpcClient,
373
373
  args: [string],
374
374
  ): Promise<TypedDevInspectResults<[boolean]>> {
375
375
  const tx = new Transaction();
@@ -384,7 +384,7 @@ export namespace ascii {
384
384
  );
385
385
  }
386
386
  export async function append(
387
- client: SuiClient,
387
+ client: SuiJsonRpcClient,
388
388
  args: [string, ascii.String],
389
389
  ): Promise<TypedDevInspectResults<[]>> {
390
390
  const tx = new Transaction();
@@ -399,7 +399,7 @@ export namespace ascii {
399
399
  );
400
400
  }
401
401
  export async function asBytes(
402
- client: SuiClient,
402
+ client: SuiJsonRpcClient,
403
403
  args: [string],
404
404
  ): Promise<TypedDevInspectResults<[string]>> {
405
405
  const tx = new Transaction();
@@ -414,7 +414,7 @@ export namespace ascii {
414
414
  );
415
415
  }
416
416
  export async function byte(
417
- client: SuiClient,
417
+ client: SuiJsonRpcClient,
418
418
  args: [ascii.Char],
419
419
  ): Promise<TypedDevInspectResults<[number]>> {
420
420
  const tx = new Transaction();
@@ -429,7 +429,7 @@ export namespace ascii {
429
429
  );
430
430
  }
431
431
  export async function char(
432
- client: SuiClient,
432
+ client: SuiJsonRpcClient,
433
433
  args: [number],
434
434
  ): Promise<TypedDevInspectResults<[ascii.Char]>> {
435
435
  const tx = new Transaction();
@@ -444,7 +444,7 @@ export namespace ascii {
444
444
  );
445
445
  }
446
446
  export async function indexOf(
447
- client: SuiClient,
447
+ client: SuiJsonRpcClient,
448
448
  args: [string, string],
449
449
  ): Promise<TypedDevInspectResults<[bigint]>> {
450
450
  const tx = new Transaction();
@@ -459,7 +459,7 @@ export namespace ascii {
459
459
  );
460
460
  }
461
461
  export async function insert(
462
- client: SuiClient,
462
+ client: SuiJsonRpcClient,
463
463
  args: [string, bigint, ascii.String],
464
464
  ): Promise<TypedDevInspectResults<[]>> {
465
465
  const tx = new Transaction();
@@ -474,7 +474,7 @@ export namespace ascii {
474
474
  );
475
475
  }
476
476
  export async function intoBytes(
477
- client: SuiClient,
477
+ client: SuiJsonRpcClient,
478
478
  args: [ascii.String],
479
479
  ): Promise<TypedDevInspectResults<[number[]]>> {
480
480
  const tx = new Transaction();
@@ -489,7 +489,7 @@ export namespace ascii {
489
489
  );
490
490
  }
491
491
  export async function isEmpty(
492
- client: SuiClient,
492
+ client: SuiJsonRpcClient,
493
493
  args: [string],
494
494
  ): Promise<TypedDevInspectResults<[boolean]>> {
495
495
  const tx = new Transaction();
@@ -504,7 +504,7 @@ export namespace ascii {
504
504
  );
505
505
  }
506
506
  export async function isPrintableChar(
507
- client: SuiClient,
507
+ client: SuiJsonRpcClient,
508
508
  args: [number],
509
509
  ): Promise<TypedDevInspectResults<[boolean]>> {
510
510
  const tx = new Transaction();
@@ -519,7 +519,7 @@ export namespace ascii {
519
519
  );
520
520
  }
521
521
  export async function isValidChar(
522
- client: SuiClient,
522
+ client: SuiJsonRpcClient,
523
523
  args: [number],
524
524
  ): Promise<TypedDevInspectResults<[boolean]>> {
525
525
  const tx = new Transaction();
@@ -534,7 +534,7 @@ export namespace ascii {
534
534
  );
535
535
  }
536
536
  export async function length(
537
- client: SuiClient,
537
+ client: SuiJsonRpcClient,
538
538
  args: [string],
539
539
  ): Promise<TypedDevInspectResults<[bigint]>> {
540
540
  const tx = new Transaction();
@@ -549,7 +549,7 @@ export namespace ascii {
549
549
  );
550
550
  }
551
551
  export async function popChar(
552
- client: SuiClient,
552
+ client: SuiJsonRpcClient,
553
553
  args: [string],
554
554
  ): Promise<TypedDevInspectResults<[ascii.Char]>> {
555
555
  const tx = new Transaction();
@@ -564,7 +564,7 @@ export namespace ascii {
564
564
  );
565
565
  }
566
566
  export async function pushChar(
567
- client: SuiClient,
567
+ client: SuiJsonRpcClient,
568
568
  args: [string, ascii.Char],
569
569
  ): Promise<TypedDevInspectResults<[]>> {
570
570
  const tx = new Transaction();
@@ -579,7 +579,7 @@ export namespace ascii {
579
579
  );
580
580
  }
581
581
  export async function string$(
582
- client: SuiClient,
582
+ client: SuiJsonRpcClient,
583
583
  args: [string[]],
584
584
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
585
585
  const tx = new Transaction();
@@ -594,7 +594,7 @@ export namespace ascii {
594
594
  >(inspectRes);
595
595
  }
596
596
  export async function substring(
597
- client: SuiClient,
597
+ client: SuiJsonRpcClient,
598
598
  args: [string, bigint, bigint],
599
599
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
600
600
  const tx = new Transaction();
@@ -609,7 +609,7 @@ export namespace ascii {
609
609
  >(inspectRes);
610
610
  }
611
611
  export async function toLowercase(
612
- client: SuiClient,
612
+ client: SuiJsonRpcClient,
613
613
  args: [string],
614
614
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
615
615
  const tx = new Transaction();
@@ -624,7 +624,7 @@ export namespace ascii {
624
624
  >(inspectRes);
625
625
  }
626
626
  export async function toUppercase(
627
- client: SuiClient,
627
+ client: SuiJsonRpcClient,
628
628
  args: [string],
629
629
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
630
630
  const tx = new Transaction();
@@ -639,7 +639,7 @@ export namespace ascii {
639
639
  >(inspectRes);
640
640
  }
641
641
  export async function tryString(
642
- client: SuiClient,
642
+ client: SuiJsonRpcClient,
643
643
  args: [string[]],
644
644
  ): Promise<TypedDevInspectResults<[option.Option<ascii.String>]>> {
645
645
  const tx = new Transaction();
@@ -680,7 +680,7 @@ export namespace bcs {
680
680
  }
681
681
  export namespace view {
682
682
  export async function toBytes<T0 = any>(
683
- client: SuiClient,
683
+ client: SuiJsonRpcClient,
684
684
  args: [string],
685
685
  typeArguments: [TypeDescriptor<T0> | string],
686
686
  ): Promise<TypedDevInspectResults<[number[]]>> {
@@ -819,7 +819,7 @@ export namespace bit_vector {
819
819
  }
820
820
  export namespace view {
821
821
  export async function isIndexSet(
822
- client: SuiClient,
822
+ client: SuiJsonRpcClient,
823
823
  args: [string, bigint],
824
824
  ): Promise<TypedDevInspectResults<[boolean]>> {
825
825
  const tx = new Transaction();
@@ -834,7 +834,7 @@ export namespace bit_vector {
834
834
  );
835
835
  }
836
836
  export async function length(
837
- client: SuiClient,
837
+ client: SuiJsonRpcClient,
838
838
  args: [string],
839
839
  ): Promise<TypedDevInspectResults<[bigint]>> {
840
840
  const tx = new Transaction();
@@ -849,7 +849,7 @@ export namespace bit_vector {
849
849
  );
850
850
  }
851
851
  export async function longestSetSequenceStartingAt(
852
- client: SuiClient,
852
+ client: SuiJsonRpcClient,
853
853
  args: [string, bigint],
854
854
  ): Promise<TypedDevInspectResults<[bigint]>> {
855
855
  const tx = new Transaction();
@@ -864,7 +864,7 @@ export namespace bit_vector {
864
864
  );
865
865
  }
866
866
  export async function new$(
867
- client: SuiClient,
867
+ client: SuiJsonRpcClient,
868
868
  args: [bigint],
869
869
  ): Promise<TypedDevInspectResults<[bit_vector.BitVector]>> {
870
870
  const tx = new Transaction();
@@ -879,7 +879,7 @@ export namespace bit_vector {
879
879
  >(inspectRes);
880
880
  }
881
881
  export async function set(
882
- client: SuiClient,
882
+ client: SuiJsonRpcClient,
883
883
  args: [string, bigint],
884
884
  ): Promise<TypedDevInspectResults<[]>> {
885
885
  const tx = new Transaction();
@@ -894,7 +894,7 @@ export namespace bit_vector {
894
894
  );
895
895
  }
896
896
  export async function shiftLeft(
897
- client: SuiClient,
897
+ client: SuiJsonRpcClient,
898
898
  args: [string, bigint],
899
899
  ): Promise<TypedDevInspectResults<[]>> {
900
900
  const tx = new Transaction();
@@ -909,7 +909,7 @@ export namespace bit_vector {
909
909
  );
910
910
  }
911
911
  export async function unset(
912
- client: SuiClient,
912
+ client: SuiJsonRpcClient,
913
913
  args: [string, bigint],
914
914
  ): Promise<TypedDevInspectResults<[]>> {
915
915
  const tx = new Transaction();
@@ -967,7 +967,7 @@ export namespace debug {
967
967
  }
968
968
  export namespace view {
969
969
  export async function print<T0 = any>(
970
- client: SuiClient,
970
+ client: SuiJsonRpcClient,
971
971
  args: [string],
972
972
  typeArguments: [TypeDescriptor<T0> | string],
973
973
  ): Promise<TypedDevInspectResults<[]>> {
@@ -983,7 +983,7 @@ export namespace debug {
983
983
  );
984
984
  }
985
985
  export async function printStackTrace(
986
- client: SuiClient,
986
+ client: SuiJsonRpcClient,
987
987
  args: [],
988
988
  ): Promise<TypedDevInspectResults<[]>> {
989
989
  const tx = new Transaction();
@@ -1111,7 +1111,7 @@ export namespace fixed_point32 {
1111
1111
  }
1112
1112
  export namespace view {
1113
1113
  export async function createFromRational(
1114
- client: SuiClient,
1114
+ client: SuiJsonRpcClient,
1115
1115
  args: [bigint, bigint],
1116
1116
  ): Promise<TypedDevInspectResults<[fixed_point32.FixedPoint32]>> {
1117
1117
  const tx = new Transaction();
@@ -1126,7 +1126,7 @@ export namespace fixed_point32 {
1126
1126
  >(inspectRes);
1127
1127
  }
1128
1128
  export async function createFromRawValue(
1129
- client: SuiClient,
1129
+ client: SuiJsonRpcClient,
1130
1130
  args: [bigint],
1131
1131
  ): Promise<TypedDevInspectResults<[fixed_point32.FixedPoint32]>> {
1132
1132
  const tx = new Transaction();
@@ -1141,7 +1141,7 @@ export namespace fixed_point32 {
1141
1141
  >(inspectRes);
1142
1142
  }
1143
1143
  export async function divideU64(
1144
- client: SuiClient,
1144
+ client: SuiJsonRpcClient,
1145
1145
  args: [bigint, fixed_point32.FixedPoint32],
1146
1146
  ): Promise<TypedDevInspectResults<[bigint]>> {
1147
1147
  const tx = new Transaction();
@@ -1156,7 +1156,7 @@ export namespace fixed_point32 {
1156
1156
  );
1157
1157
  }
1158
1158
  export async function getRawValue(
1159
- client: SuiClient,
1159
+ client: SuiJsonRpcClient,
1160
1160
  args: [fixed_point32.FixedPoint32],
1161
1161
  ): Promise<TypedDevInspectResults<[bigint]>> {
1162
1162
  const tx = new Transaction();
@@ -1171,7 +1171,7 @@ export namespace fixed_point32 {
1171
1171
  );
1172
1172
  }
1173
1173
  export async function isZero(
1174
- client: SuiClient,
1174
+ client: SuiJsonRpcClient,
1175
1175
  args: [fixed_point32.FixedPoint32],
1176
1176
  ): Promise<TypedDevInspectResults<[boolean]>> {
1177
1177
  const tx = new Transaction();
@@ -1186,7 +1186,7 @@ export namespace fixed_point32 {
1186
1186
  );
1187
1187
  }
1188
1188
  export async function multiplyU64(
1189
- client: SuiClient,
1189
+ client: SuiJsonRpcClient,
1190
1190
  args: [bigint, fixed_point32.FixedPoint32],
1191
1191
  ): Promise<TypedDevInspectResults<[bigint]>> {
1192
1192
  const tx = new Transaction();
@@ -1234,7 +1234,7 @@ export namespace hash {
1234
1234
  }
1235
1235
  export namespace view {
1236
1236
  export async function sha2256(
1237
- client: SuiClient,
1237
+ client: SuiJsonRpcClient,
1238
1238
  args: [string[]],
1239
1239
  ): Promise<TypedDevInspectResults<[number[]]>> {
1240
1240
  const tx = new Transaction();
@@ -1249,7 +1249,7 @@ export namespace hash {
1249
1249
  );
1250
1250
  }
1251
1251
  export async function sha3256(
1252
- client: SuiClient,
1252
+ client: SuiJsonRpcClient,
1253
1253
  args: [string[]],
1254
1254
  ): Promise<TypedDevInspectResults<[number[]]>> {
1255
1255
  const tx = new Transaction();
@@ -1305,7 +1305,7 @@ export namespace internal {
1305
1305
  }
1306
1306
  export namespace view {
1307
1307
  export async function permit<T0 = any>(
1308
- client: SuiClient,
1308
+ client: SuiJsonRpcClient,
1309
1309
  args: [],
1310
1310
  typeArguments: [TypeDescriptor<T0> | string],
1311
1311
  ): Promise<TypedDevInspectResults<[internal.Permit<T0>]>> {
@@ -1681,7 +1681,7 @@ export namespace option {
1681
1681
  }
1682
1682
  export namespace view {
1683
1683
  export async function borrow<T0 = any>(
1684
- client: SuiClient,
1684
+ client: SuiJsonRpcClient,
1685
1685
  args: [string],
1686
1686
  typeArguments: [TypeDescriptor<T0> | string],
1687
1687
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -1697,7 +1697,7 @@ export namespace option {
1697
1697
  );
1698
1698
  }
1699
1699
  export async function borrowMut<T0 = any>(
1700
- client: SuiClient,
1700
+ client: SuiJsonRpcClient,
1701
1701
  args: [string],
1702
1702
  typeArguments: [TypeDescriptor<T0> | string],
1703
1703
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -1713,7 +1713,7 @@ export namespace option {
1713
1713
  );
1714
1714
  }
1715
1715
  export async function borrowWithDefault<T0 = any>(
1716
- client: SuiClient,
1716
+ client: SuiJsonRpcClient,
1717
1717
  args: [string, string],
1718
1718
  typeArguments: [TypeDescriptor<T0> | string],
1719
1719
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -1729,7 +1729,7 @@ export namespace option {
1729
1729
  );
1730
1730
  }
1731
1731
  export async function contains<T0 = any>(
1732
- client: SuiClient,
1732
+ client: SuiJsonRpcClient,
1733
1733
  args: [string, string],
1734
1734
  typeArguments: [TypeDescriptor<T0> | string],
1735
1735
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -1745,7 +1745,7 @@ export namespace option {
1745
1745
  );
1746
1746
  }
1747
1747
  export async function destroyNone<T0 = any>(
1748
- client: SuiClient,
1748
+ client: SuiJsonRpcClient,
1749
1749
  args: [option.Option<T0>],
1750
1750
  typeArguments: [TypeDescriptor<T0> | string],
1751
1751
  ): Promise<TypedDevInspectResults<[]>> {
@@ -1761,7 +1761,7 @@ export namespace option {
1761
1761
  );
1762
1762
  }
1763
1763
  export async function destroySome<T0 = any>(
1764
- client: SuiClient,
1764
+ client: SuiJsonRpcClient,
1765
1765
  args: [option.Option<T0>],
1766
1766
  typeArguments: [TypeDescriptor<T0> | string],
1767
1767
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -1777,7 +1777,7 @@ export namespace option {
1777
1777
  );
1778
1778
  }
1779
1779
  export async function destroyWithDefault<T0 = any>(
1780
- client: SuiClient,
1780
+ client: SuiJsonRpcClient,
1781
1781
  args: [option.Option<T0>, T0],
1782
1782
  typeArguments: [TypeDescriptor<T0> | string],
1783
1783
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -1793,7 +1793,7 @@ export namespace option {
1793
1793
  );
1794
1794
  }
1795
1795
  export async function extract<T0 = any>(
1796
- client: SuiClient,
1796
+ client: SuiJsonRpcClient,
1797
1797
  args: [string],
1798
1798
  typeArguments: [TypeDescriptor<T0> | string],
1799
1799
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -1809,7 +1809,7 @@ export namespace option {
1809
1809
  );
1810
1810
  }
1811
1811
  export async function fill<T0 = any>(
1812
- client: SuiClient,
1812
+ client: SuiJsonRpcClient,
1813
1813
  args: [string, T0],
1814
1814
  typeArguments: [TypeDescriptor<T0> | string],
1815
1815
  ): Promise<TypedDevInspectResults<[]>> {
@@ -1825,7 +1825,7 @@ export namespace option {
1825
1825
  );
1826
1826
  }
1827
1827
  export async function getWithDefault<T0 = any>(
1828
- client: SuiClient,
1828
+ client: SuiJsonRpcClient,
1829
1829
  args: [string, T0],
1830
1830
  typeArguments: [TypeDescriptor<T0> | string],
1831
1831
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -1841,7 +1841,7 @@ export namespace option {
1841
1841
  );
1842
1842
  }
1843
1843
  export async function isNone<T0 = any>(
1844
- client: SuiClient,
1844
+ client: SuiJsonRpcClient,
1845
1845
  args: [string],
1846
1846
  typeArguments: [TypeDescriptor<T0> | string],
1847
1847
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -1857,7 +1857,7 @@ export namespace option {
1857
1857
  );
1858
1858
  }
1859
1859
  export async function isSome<T0 = any>(
1860
- client: SuiClient,
1860
+ client: SuiJsonRpcClient,
1861
1861
  args: [string],
1862
1862
  typeArguments: [TypeDescriptor<T0> | string],
1863
1863
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -1873,7 +1873,7 @@ export namespace option {
1873
1873
  );
1874
1874
  }
1875
1875
  export async function none<T0 = any>(
1876
- client: SuiClient,
1876
+ client: SuiJsonRpcClient,
1877
1877
  args: [],
1878
1878
  typeArguments: [TypeDescriptor<T0> | string],
1879
1879
  ): Promise<TypedDevInspectResults<[option.Option<T0>]>> {
@@ -1889,7 +1889,7 @@ export namespace option {
1889
1889
  >(inspectRes);
1890
1890
  }
1891
1891
  export async function some<T0 = any>(
1892
- client: SuiClient,
1892
+ client: SuiJsonRpcClient,
1893
1893
  args: [T0],
1894
1894
  typeArguments: [TypeDescriptor<T0> | string],
1895
1895
  ): Promise<TypedDevInspectResults<[option.Option<T0>]>> {
@@ -1905,7 +1905,7 @@ export namespace option {
1905
1905
  >(inspectRes);
1906
1906
  }
1907
1907
  export async function swap<T0 = any>(
1908
- client: SuiClient,
1908
+ client: SuiJsonRpcClient,
1909
1909
  args: [string, T0],
1910
1910
  typeArguments: [TypeDescriptor<T0> | string],
1911
1911
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -1921,7 +1921,7 @@ export namespace option {
1921
1921
  );
1922
1922
  }
1923
1923
  export async function swapOrFill<T0 = any>(
1924
- client: SuiClient,
1924
+ client: SuiJsonRpcClient,
1925
1925
  args: [string, T0],
1926
1926
  typeArguments: [TypeDescriptor<T0> | string],
1927
1927
  ): Promise<TypedDevInspectResults<[option.Option<T0>]>> {
@@ -1937,7 +1937,7 @@ export namespace option {
1937
1937
  >(inspectRes);
1938
1938
  }
1939
1939
  export async function toVec<T0 = any>(
1940
- client: SuiClient,
1940
+ client: SuiJsonRpcClient,
1941
1941
  args: [option.Option<T0>],
1942
1942
  typeArguments: [TypeDescriptor<T0> | string],
1943
1943
  ): Promise<TypedDevInspectResults<[T0[]]>> {
@@ -2204,7 +2204,7 @@ export namespace string$ {
2204
2204
  }
2205
2205
  export namespace view {
2206
2206
  export async function append(
2207
- client: SuiClient,
2207
+ client: SuiJsonRpcClient,
2208
2208
  args: [string, string],
2209
2209
  ): Promise<TypedDevInspectResults<[]>> {
2210
2210
  const tx = new Transaction();
@@ -2219,7 +2219,7 @@ export namespace string$ {
2219
2219
  );
2220
2220
  }
2221
2221
  export async function appendUtf8(
2222
- client: SuiClient,
2222
+ client: SuiJsonRpcClient,
2223
2223
  args: [string, string[]],
2224
2224
  ): Promise<TypedDevInspectResults<[]>> {
2225
2225
  const tx = new Transaction();
@@ -2234,7 +2234,7 @@ export namespace string$ {
2234
2234
  );
2235
2235
  }
2236
2236
  export async function asBytes(
2237
- client: SuiClient,
2237
+ client: SuiJsonRpcClient,
2238
2238
  args: [string],
2239
2239
  ): Promise<TypedDevInspectResults<[string]>> {
2240
2240
  const tx = new Transaction();
@@ -2249,7 +2249,7 @@ export namespace string$ {
2249
2249
  );
2250
2250
  }
2251
2251
  export async function bytes(
2252
- client: SuiClient,
2252
+ client: SuiJsonRpcClient,
2253
2253
  args: [string],
2254
2254
  ): Promise<TypedDevInspectResults<[string]>> {
2255
2255
  const tx = new Transaction();
@@ -2264,7 +2264,7 @@ export namespace string$ {
2264
2264
  );
2265
2265
  }
2266
2266
  export async function fromAscii(
2267
- client: SuiClient,
2267
+ client: SuiJsonRpcClient,
2268
2268
  args: [ascii.String],
2269
2269
  ): Promise<TypedDevInspectResults<[string]>> {
2270
2270
  const tx = new Transaction();
@@ -2279,7 +2279,7 @@ export namespace string$ {
2279
2279
  );
2280
2280
  }
2281
2281
  export async function indexOf(
2282
- client: SuiClient,
2282
+ client: SuiJsonRpcClient,
2283
2283
  args: [string, string],
2284
2284
  ): Promise<TypedDevInspectResults<[bigint]>> {
2285
2285
  const tx = new Transaction();
@@ -2294,7 +2294,7 @@ export namespace string$ {
2294
2294
  );
2295
2295
  }
2296
2296
  export async function insert(
2297
- client: SuiClient,
2297
+ client: SuiJsonRpcClient,
2298
2298
  args: [string, bigint, string],
2299
2299
  ): Promise<TypedDevInspectResults<[]>> {
2300
2300
  const tx = new Transaction();
@@ -2309,7 +2309,7 @@ export namespace string$ {
2309
2309
  );
2310
2310
  }
2311
2311
  export async function intoBytes(
2312
- client: SuiClient,
2312
+ client: SuiJsonRpcClient,
2313
2313
  args: [string],
2314
2314
  ): Promise<TypedDevInspectResults<[number[]]>> {
2315
2315
  const tx = new Transaction();
@@ -2324,7 +2324,7 @@ export namespace string$ {
2324
2324
  );
2325
2325
  }
2326
2326
  export async function isEmpty(
2327
- client: SuiClient,
2327
+ client: SuiJsonRpcClient,
2328
2328
  args: [string],
2329
2329
  ): Promise<TypedDevInspectResults<[boolean]>> {
2330
2330
  const tx = new Transaction();
@@ -2339,7 +2339,7 @@ export namespace string$ {
2339
2339
  );
2340
2340
  }
2341
2341
  export async function length(
2342
- client: SuiClient,
2342
+ client: SuiJsonRpcClient,
2343
2343
  args: [string],
2344
2344
  ): Promise<TypedDevInspectResults<[bigint]>> {
2345
2345
  const tx = new Transaction();
@@ -2354,7 +2354,7 @@ export namespace string$ {
2354
2354
  );
2355
2355
  }
2356
2356
  export async function subString(
2357
- client: SuiClient,
2357
+ client: SuiJsonRpcClient,
2358
2358
  args: [string, bigint, bigint],
2359
2359
  ): Promise<TypedDevInspectResults<[string]>> {
2360
2360
  const tx = new Transaction();
@@ -2369,7 +2369,7 @@ export namespace string$ {
2369
2369
  );
2370
2370
  }
2371
2371
  export async function substring(
2372
- client: SuiClient,
2372
+ client: SuiJsonRpcClient,
2373
2373
  args: [string, bigint, bigint],
2374
2374
  ): Promise<TypedDevInspectResults<[string]>> {
2375
2375
  const tx = new Transaction();
@@ -2384,7 +2384,7 @@ export namespace string$ {
2384
2384
  );
2385
2385
  }
2386
2386
  export async function toAscii(
2387
- client: SuiClient,
2387
+ client: SuiJsonRpcClient,
2388
2388
  args: [string],
2389
2389
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2390
2390
  const tx = new Transaction();
@@ -2399,7 +2399,7 @@ export namespace string$ {
2399
2399
  >(inspectRes);
2400
2400
  }
2401
2401
  export async function tryUtf8(
2402
- client: SuiClient,
2402
+ client: SuiJsonRpcClient,
2403
2403
  args: [string[]],
2404
2404
  ): Promise<TypedDevInspectResults<[option.Option<string>]>> {
2405
2405
  const tx = new Transaction();
@@ -2414,7 +2414,7 @@ export namespace string$ {
2414
2414
  >(inspectRes);
2415
2415
  }
2416
2416
  export async function utf8(
2417
- client: SuiClient,
2417
+ client: SuiJsonRpcClient,
2418
2418
  args: [string[]],
2419
2419
  ): Promise<TypedDevInspectResults<[string]>> {
2420
2420
  const tx = new Transaction();
@@ -2680,7 +2680,7 @@ export namespace type_name {
2680
2680
  }
2681
2681
  export namespace view {
2682
2682
  export async function addressString(
2683
- client: SuiClient,
2683
+ client: SuiJsonRpcClient,
2684
2684
  args: [string],
2685
2685
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2686
2686
  const tx = new Transaction();
@@ -2695,7 +2695,7 @@ export namespace type_name {
2695
2695
  >(inspectRes);
2696
2696
  }
2697
2697
  export async function asString(
2698
- client: SuiClient,
2698
+ client: SuiJsonRpcClient,
2699
2699
  args: [string],
2700
2700
  ): Promise<TypedDevInspectResults<[string]>> {
2701
2701
  const tx = new Transaction();
@@ -2710,7 +2710,7 @@ export namespace type_name {
2710
2710
  );
2711
2711
  }
2712
2712
  export async function borrowString(
2713
- client: SuiClient,
2713
+ client: SuiJsonRpcClient,
2714
2714
  args: [string],
2715
2715
  ): Promise<TypedDevInspectResults<[string]>> {
2716
2716
  const tx = new Transaction();
@@ -2725,7 +2725,7 @@ export namespace type_name {
2725
2725
  );
2726
2726
  }
2727
2727
  export async function datatypeString(
2728
- client: SuiClient,
2728
+ client: SuiJsonRpcClient,
2729
2729
  args: [string],
2730
2730
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2731
2731
  const tx = new Transaction();
@@ -2740,7 +2740,7 @@ export namespace type_name {
2740
2740
  >(inspectRes);
2741
2741
  }
2742
2742
  export async function definingId<T0 = any>(
2743
- client: SuiClient,
2743
+ client: SuiJsonRpcClient,
2744
2744
  args: [],
2745
2745
  typeArguments: [TypeDescriptor<T0> | string],
2746
2746
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -2756,7 +2756,7 @@ export namespace type_name {
2756
2756
  );
2757
2757
  }
2758
2758
  export async function get<T0 = any>(
2759
- client: SuiClient,
2759
+ client: SuiJsonRpcClient,
2760
2760
  args: [],
2761
2761
  typeArguments: [TypeDescriptor<T0> | string],
2762
2762
  ): Promise<TypedDevInspectResults<[type_name.TypeName]>> {
@@ -2772,7 +2772,7 @@ export namespace type_name {
2772
2772
  >(inspectRes);
2773
2773
  }
2774
2774
  export async function getAddress(
2775
- client: SuiClient,
2775
+ client: SuiJsonRpcClient,
2776
2776
  args: [string],
2777
2777
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2778
2778
  const tx = new Transaction();
@@ -2787,7 +2787,7 @@ export namespace type_name {
2787
2787
  >(inspectRes);
2788
2788
  }
2789
2789
  export async function getModule(
2790
- client: SuiClient,
2790
+ client: SuiJsonRpcClient,
2791
2791
  args: [string],
2792
2792
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2793
2793
  const tx = new Transaction();
@@ -2802,7 +2802,7 @@ export namespace type_name {
2802
2802
  >(inspectRes);
2803
2803
  }
2804
2804
  export async function getWithOriginalIds<T0 = any>(
2805
- client: SuiClient,
2805
+ client: SuiJsonRpcClient,
2806
2806
  args: [],
2807
2807
  typeArguments: [TypeDescriptor<T0> | string],
2808
2808
  ): Promise<TypedDevInspectResults<[type_name.TypeName]>> {
@@ -2818,7 +2818,7 @@ export namespace type_name {
2818
2818
  >(inspectRes);
2819
2819
  }
2820
2820
  export async function intoString(
2821
- client: SuiClient,
2821
+ client: SuiJsonRpcClient,
2822
2822
  args: [type_name.TypeName],
2823
2823
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2824
2824
  const tx = new Transaction();
@@ -2833,7 +2833,7 @@ export namespace type_name {
2833
2833
  >(inspectRes);
2834
2834
  }
2835
2835
  export async function isPrimitive(
2836
- client: SuiClient,
2836
+ client: SuiJsonRpcClient,
2837
2837
  args: [string],
2838
2838
  ): Promise<TypedDevInspectResults<[boolean]>> {
2839
2839
  const tx = new Transaction();
@@ -2848,7 +2848,7 @@ export namespace type_name {
2848
2848
  );
2849
2849
  }
2850
2850
  export async function moduleString(
2851
- client: SuiClient,
2851
+ client: SuiJsonRpcClient,
2852
2852
  args: [string],
2853
2853
  ): Promise<TypedDevInspectResults<[ascii.String]>> {
2854
2854
  const tx = new Transaction();
@@ -2863,7 +2863,7 @@ export namespace type_name {
2863
2863
  >(inspectRes);
2864
2864
  }
2865
2865
  export async function originalId<T0 = any>(
2866
- client: SuiClient,
2866
+ client: SuiJsonRpcClient,
2867
2867
  args: [],
2868
2868
  typeArguments: [TypeDescriptor<T0> | string],
2869
2869
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -2879,7 +2879,7 @@ export namespace type_name {
2879
2879
  );
2880
2880
  }
2881
2881
  export async function withDefiningIds<T0 = any>(
2882
- client: SuiClient,
2882
+ client: SuiJsonRpcClient,
2883
2883
  args: [],
2884
2884
  typeArguments: [TypeDescriptor<T0> | string],
2885
2885
  ): Promise<TypedDevInspectResults<[type_name.TypeName]>> {
@@ -2895,7 +2895,7 @@ export namespace type_name {
2895
2895
  >(inspectRes);
2896
2896
  }
2897
2897
  export async function withOriginalIds<T0 = any>(
2898
- client: SuiClient,
2898
+ client: SuiJsonRpcClient,
2899
2899
  args: [],
2900
2900
  typeArguments: [TypeDescriptor<T0> | string],
2901
2901
  ): Promise<TypedDevInspectResults<[type_name.TypeName]>> {
@@ -3247,7 +3247,7 @@ export namespace u128 {
3247
3247
  }
3248
3248
  export namespace view {
3249
3249
  export async function bitwiseNot(
3250
- client: SuiClient,
3250
+ client: SuiJsonRpcClient,
3251
3251
  args: [bigint],
3252
3252
  ): Promise<TypedDevInspectResults<[bigint]>> {
3253
3253
  const tx = new Transaction();
@@ -3262,7 +3262,7 @@ export namespace u128 {
3262
3262
  );
3263
3263
  }
3264
3264
  export async function checkedAdd(
3265
- client: SuiClient,
3265
+ client: SuiJsonRpcClient,
3266
3266
  args: [bigint, bigint],
3267
3267
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3268
3268
  const tx = new Transaction();
@@ -3277,7 +3277,7 @@ export namespace u128 {
3277
3277
  >(inspectRes);
3278
3278
  }
3279
3279
  export async function checkedDiv(
3280
- client: SuiClient,
3280
+ client: SuiJsonRpcClient,
3281
3281
  args: [bigint, bigint],
3282
3282
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3283
3283
  const tx = new Transaction();
@@ -3292,7 +3292,7 @@ export namespace u128 {
3292
3292
  >(inspectRes);
3293
3293
  }
3294
3294
  export async function checkedMul(
3295
- client: SuiClient,
3295
+ client: SuiJsonRpcClient,
3296
3296
  args: [bigint, bigint],
3297
3297
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3298
3298
  const tx = new Transaction();
@@ -3307,7 +3307,7 @@ export namespace u128 {
3307
3307
  >(inspectRes);
3308
3308
  }
3309
3309
  export async function checkedShl(
3310
- client: SuiClient,
3310
+ client: SuiJsonRpcClient,
3311
3311
  args: [bigint, number],
3312
3312
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3313
3313
  const tx = new Transaction();
@@ -3322,7 +3322,7 @@ export namespace u128 {
3322
3322
  >(inspectRes);
3323
3323
  }
3324
3324
  export async function checkedShr(
3325
- client: SuiClient,
3325
+ client: SuiJsonRpcClient,
3326
3326
  args: [bigint, number],
3327
3327
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3328
3328
  const tx = new Transaction();
@@ -3337,7 +3337,7 @@ export namespace u128 {
3337
3337
  >(inspectRes);
3338
3338
  }
3339
3339
  export async function checkedSub(
3340
- client: SuiClient,
3340
+ client: SuiJsonRpcClient,
3341
3341
  args: [bigint, bigint],
3342
3342
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3343
3343
  const tx = new Transaction();
@@ -3352,7 +3352,7 @@ export namespace u128 {
3352
3352
  >(inspectRes);
3353
3353
  }
3354
3354
  export async function diff(
3355
- client: SuiClient,
3355
+ client: SuiJsonRpcClient,
3356
3356
  args: [bigint, bigint],
3357
3357
  ): Promise<TypedDevInspectResults<[bigint]>> {
3358
3358
  const tx = new Transaction();
@@ -3367,7 +3367,7 @@ export namespace u128 {
3367
3367
  );
3368
3368
  }
3369
3369
  export async function divideAndRoundUp(
3370
- client: SuiClient,
3370
+ client: SuiJsonRpcClient,
3371
3371
  args: [bigint, bigint],
3372
3372
  ): Promise<TypedDevInspectResults<[bigint]>> {
3373
3373
  const tx = new Transaction();
@@ -3382,7 +3382,7 @@ export namespace u128 {
3382
3382
  );
3383
3383
  }
3384
3384
  export async function losslessDiv(
3385
- client: SuiClient,
3385
+ client: SuiJsonRpcClient,
3386
3386
  args: [bigint, bigint],
3387
3387
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3388
3388
  const tx = new Transaction();
@@ -3397,7 +3397,7 @@ export namespace u128 {
3397
3397
  >(inspectRes);
3398
3398
  }
3399
3399
  export async function losslessShl(
3400
- client: SuiClient,
3400
+ client: SuiJsonRpcClient,
3401
3401
  args: [bigint, number],
3402
3402
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3403
3403
  const tx = new Transaction();
@@ -3412,7 +3412,7 @@ export namespace u128 {
3412
3412
  >(inspectRes);
3413
3413
  }
3414
3414
  export async function losslessShr(
3415
- client: SuiClient,
3415
+ client: SuiJsonRpcClient,
3416
3416
  args: [bigint, number],
3417
3417
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3418
3418
  const tx = new Transaction();
@@ -3427,7 +3427,7 @@ export namespace u128 {
3427
3427
  >(inspectRes);
3428
3428
  }
3429
3429
  export async function max(
3430
- client: SuiClient,
3430
+ client: SuiJsonRpcClient,
3431
3431
  args: [bigint, bigint],
3432
3432
  ): Promise<TypedDevInspectResults<[bigint]>> {
3433
3433
  const tx = new Transaction();
@@ -3442,7 +3442,7 @@ export namespace u128 {
3442
3442
  );
3443
3443
  }
3444
3444
  export async function min(
3445
- client: SuiClient,
3445
+ client: SuiJsonRpcClient,
3446
3446
  args: [bigint, bigint],
3447
3447
  ): Promise<TypedDevInspectResults<[bigint]>> {
3448
3448
  const tx = new Transaction();
@@ -3457,7 +3457,7 @@ export namespace u128 {
3457
3457
  );
3458
3458
  }
3459
3459
  export async function pow(
3460
- client: SuiClient,
3460
+ client: SuiJsonRpcClient,
3461
3461
  args: [bigint, number],
3462
3462
  ): Promise<TypedDevInspectResults<[bigint]>> {
3463
3463
  const tx = new Transaction();
@@ -3472,7 +3472,7 @@ export namespace u128 {
3472
3472
  );
3473
3473
  }
3474
3474
  export async function saturatingAdd(
3475
- client: SuiClient,
3475
+ client: SuiJsonRpcClient,
3476
3476
  args: [bigint, bigint],
3477
3477
  ): Promise<TypedDevInspectResults<[bigint]>> {
3478
3478
  const tx = new Transaction();
@@ -3487,7 +3487,7 @@ export namespace u128 {
3487
3487
  );
3488
3488
  }
3489
3489
  export async function saturatingMul(
3490
- client: SuiClient,
3490
+ client: SuiJsonRpcClient,
3491
3491
  args: [bigint, bigint],
3492
3492
  ): Promise<TypedDevInspectResults<[bigint]>> {
3493
3493
  const tx = new Transaction();
@@ -3502,7 +3502,7 @@ export namespace u128 {
3502
3502
  );
3503
3503
  }
3504
3504
  export async function saturatingSub(
3505
- client: SuiClient,
3505
+ client: SuiJsonRpcClient,
3506
3506
  args: [bigint, bigint],
3507
3507
  ): Promise<TypedDevInspectResults<[bigint]>> {
3508
3508
  const tx = new Transaction();
@@ -3517,7 +3517,7 @@ export namespace u128 {
3517
3517
  );
3518
3518
  }
3519
3519
  export async function sqrt(
3520
- client: SuiClient,
3520
+ client: SuiJsonRpcClient,
3521
3521
  args: [bigint],
3522
3522
  ): Promise<TypedDevInspectResults<[bigint]>> {
3523
3523
  const tx = new Transaction();
@@ -3532,7 +3532,7 @@ export namespace u128 {
3532
3532
  );
3533
3533
  }
3534
3534
  export async function toString(
3535
- client: SuiClient,
3535
+ client: SuiJsonRpcClient,
3536
3536
  args: [bigint],
3537
3537
  ): Promise<TypedDevInspectResults<[string]>> {
3538
3538
  const tx = new Transaction();
@@ -3547,7 +3547,7 @@ export namespace u128 {
3547
3547
  );
3548
3548
  }
3549
3549
  export async function tryAsU16(
3550
- client: SuiClient,
3550
+ client: SuiJsonRpcClient,
3551
3551
  args: [bigint],
3552
3552
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3553
3553
  const tx = new Transaction();
@@ -3562,7 +3562,7 @@ export namespace u128 {
3562
3562
  >(inspectRes);
3563
3563
  }
3564
3564
  export async function tryAsU32(
3565
- client: SuiClient,
3565
+ client: SuiJsonRpcClient,
3566
3566
  args: [bigint],
3567
3567
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3568
3568
  const tx = new Transaction();
@@ -3577,7 +3577,7 @@ export namespace u128 {
3577
3577
  >(inspectRes);
3578
3578
  }
3579
3579
  export async function tryAsU64(
3580
- client: SuiClient,
3580
+ client: SuiJsonRpcClient,
3581
3581
  args: [bigint],
3582
3582
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
3583
3583
  const tx = new Transaction();
@@ -3592,7 +3592,7 @@ export namespace u128 {
3592
3592
  >(inspectRes);
3593
3593
  }
3594
3594
  export async function tryAsU8(
3595
- client: SuiClient,
3595
+ client: SuiJsonRpcClient,
3596
3596
  args: [bigint],
3597
3597
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3598
3598
  const tx = new Transaction();
@@ -3904,7 +3904,7 @@ export namespace u16 {
3904
3904
  }
3905
3905
  export namespace view {
3906
3906
  export async function bitwiseNot(
3907
- client: SuiClient,
3907
+ client: SuiJsonRpcClient,
3908
3908
  args: [number],
3909
3909
  ): Promise<TypedDevInspectResults<[number]>> {
3910
3910
  const tx = new Transaction();
@@ -3919,7 +3919,7 @@ export namespace u16 {
3919
3919
  );
3920
3920
  }
3921
3921
  export async function checkedAdd(
3922
- client: SuiClient,
3922
+ client: SuiJsonRpcClient,
3923
3923
  args: [number, number],
3924
3924
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3925
3925
  const tx = new Transaction();
@@ -3934,7 +3934,7 @@ export namespace u16 {
3934
3934
  >(inspectRes);
3935
3935
  }
3936
3936
  export async function checkedDiv(
3937
- client: SuiClient,
3937
+ client: SuiJsonRpcClient,
3938
3938
  args: [number, number],
3939
3939
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3940
3940
  const tx = new Transaction();
@@ -3949,7 +3949,7 @@ export namespace u16 {
3949
3949
  >(inspectRes);
3950
3950
  }
3951
3951
  export async function checkedMul(
3952
- client: SuiClient,
3952
+ client: SuiJsonRpcClient,
3953
3953
  args: [number, number],
3954
3954
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3955
3955
  const tx = new Transaction();
@@ -3964,7 +3964,7 @@ export namespace u16 {
3964
3964
  >(inspectRes);
3965
3965
  }
3966
3966
  export async function checkedShl(
3967
- client: SuiClient,
3967
+ client: SuiJsonRpcClient,
3968
3968
  args: [number, number],
3969
3969
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3970
3970
  const tx = new Transaction();
@@ -3979,7 +3979,7 @@ export namespace u16 {
3979
3979
  >(inspectRes);
3980
3980
  }
3981
3981
  export async function checkedShr(
3982
- client: SuiClient,
3982
+ client: SuiJsonRpcClient,
3983
3983
  args: [number, number],
3984
3984
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
3985
3985
  const tx = new Transaction();
@@ -3994,7 +3994,7 @@ export namespace u16 {
3994
3994
  >(inspectRes);
3995
3995
  }
3996
3996
  export async function checkedSub(
3997
- client: SuiClient,
3997
+ client: SuiJsonRpcClient,
3998
3998
  args: [number, number],
3999
3999
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4000
4000
  const tx = new Transaction();
@@ -4009,7 +4009,7 @@ export namespace u16 {
4009
4009
  >(inspectRes);
4010
4010
  }
4011
4011
  export async function diff(
4012
- client: SuiClient,
4012
+ client: SuiJsonRpcClient,
4013
4013
  args: [number, number],
4014
4014
  ): Promise<TypedDevInspectResults<[number]>> {
4015
4015
  const tx = new Transaction();
@@ -4024,7 +4024,7 @@ export namespace u16 {
4024
4024
  );
4025
4025
  }
4026
4026
  export async function divideAndRoundUp(
4027
- client: SuiClient,
4027
+ client: SuiJsonRpcClient,
4028
4028
  args: [number, number],
4029
4029
  ): Promise<TypedDevInspectResults<[number]>> {
4030
4030
  const tx = new Transaction();
@@ -4039,7 +4039,7 @@ export namespace u16 {
4039
4039
  );
4040
4040
  }
4041
4041
  export async function losslessDiv(
4042
- client: SuiClient,
4042
+ client: SuiJsonRpcClient,
4043
4043
  args: [number, number],
4044
4044
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4045
4045
  const tx = new Transaction();
@@ -4054,7 +4054,7 @@ export namespace u16 {
4054
4054
  >(inspectRes);
4055
4055
  }
4056
4056
  export async function losslessShl(
4057
- client: SuiClient,
4057
+ client: SuiJsonRpcClient,
4058
4058
  args: [number, number],
4059
4059
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4060
4060
  const tx = new Transaction();
@@ -4069,7 +4069,7 @@ export namespace u16 {
4069
4069
  >(inspectRes);
4070
4070
  }
4071
4071
  export async function losslessShr(
4072
- client: SuiClient,
4072
+ client: SuiJsonRpcClient,
4073
4073
  args: [number, number],
4074
4074
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4075
4075
  const tx = new Transaction();
@@ -4084,7 +4084,7 @@ export namespace u16 {
4084
4084
  >(inspectRes);
4085
4085
  }
4086
4086
  export async function max(
4087
- client: SuiClient,
4087
+ client: SuiJsonRpcClient,
4088
4088
  args: [number, number],
4089
4089
  ): Promise<TypedDevInspectResults<[number]>> {
4090
4090
  const tx = new Transaction();
@@ -4099,7 +4099,7 @@ export namespace u16 {
4099
4099
  );
4100
4100
  }
4101
4101
  export async function min(
4102
- client: SuiClient,
4102
+ client: SuiJsonRpcClient,
4103
4103
  args: [number, number],
4104
4104
  ): Promise<TypedDevInspectResults<[number]>> {
4105
4105
  const tx = new Transaction();
@@ -4114,7 +4114,7 @@ export namespace u16 {
4114
4114
  );
4115
4115
  }
4116
4116
  export async function pow(
4117
- client: SuiClient,
4117
+ client: SuiJsonRpcClient,
4118
4118
  args: [number, number],
4119
4119
  ): Promise<TypedDevInspectResults<[number]>> {
4120
4120
  const tx = new Transaction();
@@ -4129,7 +4129,7 @@ export namespace u16 {
4129
4129
  );
4130
4130
  }
4131
4131
  export async function saturatingAdd(
4132
- client: SuiClient,
4132
+ client: SuiJsonRpcClient,
4133
4133
  args: [number, number],
4134
4134
  ): Promise<TypedDevInspectResults<[number]>> {
4135
4135
  const tx = new Transaction();
@@ -4144,7 +4144,7 @@ export namespace u16 {
4144
4144
  );
4145
4145
  }
4146
4146
  export async function saturatingMul(
4147
- client: SuiClient,
4147
+ client: SuiJsonRpcClient,
4148
4148
  args: [number, number],
4149
4149
  ): Promise<TypedDevInspectResults<[number]>> {
4150
4150
  const tx = new Transaction();
@@ -4159,7 +4159,7 @@ export namespace u16 {
4159
4159
  );
4160
4160
  }
4161
4161
  export async function saturatingSub(
4162
- client: SuiClient,
4162
+ client: SuiJsonRpcClient,
4163
4163
  args: [number, number],
4164
4164
  ): Promise<TypedDevInspectResults<[number]>> {
4165
4165
  const tx = new Transaction();
@@ -4174,7 +4174,7 @@ export namespace u16 {
4174
4174
  );
4175
4175
  }
4176
4176
  export async function sqrt(
4177
- client: SuiClient,
4177
+ client: SuiJsonRpcClient,
4178
4178
  args: [number],
4179
4179
  ): Promise<TypedDevInspectResults<[number]>> {
4180
4180
  const tx = new Transaction();
@@ -4189,7 +4189,7 @@ export namespace u16 {
4189
4189
  );
4190
4190
  }
4191
4191
  export async function toString(
4192
- client: SuiClient,
4192
+ client: SuiJsonRpcClient,
4193
4193
  args: [number],
4194
4194
  ): Promise<TypedDevInspectResults<[string]>> {
4195
4195
  const tx = new Transaction();
@@ -4204,7 +4204,7 @@ export namespace u16 {
4204
4204
  );
4205
4205
  }
4206
4206
  export async function tryAsU8(
4207
- client: SuiClient,
4207
+ client: SuiJsonRpcClient,
4208
4208
  args: [number],
4209
4209
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4210
4210
  const tx = new Transaction();
@@ -4527,7 +4527,7 @@ export namespace u256 {
4527
4527
  }
4528
4528
  export namespace view {
4529
4529
  export async function bitwiseNot(
4530
- client: SuiClient,
4530
+ client: SuiJsonRpcClient,
4531
4531
  args: [bigint],
4532
4532
  ): Promise<TypedDevInspectResults<[bigint]>> {
4533
4533
  const tx = new Transaction();
@@ -4542,7 +4542,7 @@ export namespace u256 {
4542
4542
  );
4543
4543
  }
4544
4544
  export async function checkedAdd(
4545
- client: SuiClient,
4545
+ client: SuiJsonRpcClient,
4546
4546
  args: [bigint, bigint],
4547
4547
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4548
4548
  const tx = new Transaction();
@@ -4557,7 +4557,7 @@ export namespace u256 {
4557
4557
  >(inspectRes);
4558
4558
  }
4559
4559
  export async function checkedDiv(
4560
- client: SuiClient,
4560
+ client: SuiJsonRpcClient,
4561
4561
  args: [bigint, bigint],
4562
4562
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4563
4563
  const tx = new Transaction();
@@ -4572,7 +4572,7 @@ export namespace u256 {
4572
4572
  >(inspectRes);
4573
4573
  }
4574
4574
  export async function checkedMul(
4575
- client: SuiClient,
4575
+ client: SuiJsonRpcClient,
4576
4576
  args: [bigint, bigint],
4577
4577
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4578
4578
  const tx = new Transaction();
@@ -4587,7 +4587,7 @@ export namespace u256 {
4587
4587
  >(inspectRes);
4588
4588
  }
4589
4589
  export async function checkedSub(
4590
- client: SuiClient,
4590
+ client: SuiJsonRpcClient,
4591
4591
  args: [bigint, bigint],
4592
4592
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4593
4593
  const tx = new Transaction();
@@ -4602,7 +4602,7 @@ export namespace u256 {
4602
4602
  >(inspectRes);
4603
4603
  }
4604
4604
  export async function diff(
4605
- client: SuiClient,
4605
+ client: SuiJsonRpcClient,
4606
4606
  args: [bigint, bigint],
4607
4607
  ): Promise<TypedDevInspectResults<[bigint]>> {
4608
4608
  const tx = new Transaction();
@@ -4617,7 +4617,7 @@ export namespace u256 {
4617
4617
  );
4618
4618
  }
4619
4619
  export async function divideAndRoundUp(
4620
- client: SuiClient,
4620
+ client: SuiJsonRpcClient,
4621
4621
  args: [bigint, bigint],
4622
4622
  ): Promise<TypedDevInspectResults<[bigint]>> {
4623
4623
  const tx = new Transaction();
@@ -4632,7 +4632,7 @@ export namespace u256 {
4632
4632
  );
4633
4633
  }
4634
4634
  export async function losslessDiv(
4635
- client: SuiClient,
4635
+ client: SuiJsonRpcClient,
4636
4636
  args: [bigint, bigint],
4637
4637
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4638
4638
  const tx = new Transaction();
@@ -4647,7 +4647,7 @@ export namespace u256 {
4647
4647
  >(inspectRes);
4648
4648
  }
4649
4649
  export async function losslessShl(
4650
- client: SuiClient,
4650
+ client: SuiJsonRpcClient,
4651
4651
  args: [bigint, number],
4652
4652
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4653
4653
  const tx = new Transaction();
@@ -4662,7 +4662,7 @@ export namespace u256 {
4662
4662
  >(inspectRes);
4663
4663
  }
4664
4664
  export async function losslessShr(
4665
- client: SuiClient,
4665
+ client: SuiJsonRpcClient,
4666
4666
  args: [bigint, number],
4667
4667
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4668
4668
  const tx = new Transaction();
@@ -4677,7 +4677,7 @@ export namespace u256 {
4677
4677
  >(inspectRes);
4678
4678
  }
4679
4679
  export async function max(
4680
- client: SuiClient,
4680
+ client: SuiJsonRpcClient,
4681
4681
  args: [bigint, bigint],
4682
4682
  ): Promise<TypedDevInspectResults<[bigint]>> {
4683
4683
  const tx = new Transaction();
@@ -4692,7 +4692,7 @@ export namespace u256 {
4692
4692
  );
4693
4693
  }
4694
4694
  export async function min(
4695
- client: SuiClient,
4695
+ client: SuiJsonRpcClient,
4696
4696
  args: [bigint, bigint],
4697
4697
  ): Promise<TypedDevInspectResults<[bigint]>> {
4698
4698
  const tx = new Transaction();
@@ -4707,7 +4707,7 @@ export namespace u256 {
4707
4707
  );
4708
4708
  }
4709
4709
  export async function pow(
4710
- client: SuiClient,
4710
+ client: SuiJsonRpcClient,
4711
4711
  args: [bigint, number],
4712
4712
  ): Promise<TypedDevInspectResults<[bigint]>> {
4713
4713
  const tx = new Transaction();
@@ -4722,7 +4722,7 @@ export namespace u256 {
4722
4722
  );
4723
4723
  }
4724
4724
  export async function saturatingAdd(
4725
- client: SuiClient,
4725
+ client: SuiJsonRpcClient,
4726
4726
  args: [bigint, bigint],
4727
4727
  ): Promise<TypedDevInspectResults<[bigint]>> {
4728
4728
  const tx = new Transaction();
@@ -4737,7 +4737,7 @@ export namespace u256 {
4737
4737
  );
4738
4738
  }
4739
4739
  export async function saturatingMul(
4740
- client: SuiClient,
4740
+ client: SuiJsonRpcClient,
4741
4741
  args: [bigint, bigint],
4742
4742
  ): Promise<TypedDevInspectResults<[bigint]>> {
4743
4743
  const tx = new Transaction();
@@ -4752,7 +4752,7 @@ export namespace u256 {
4752
4752
  );
4753
4753
  }
4754
4754
  export async function saturatingSub(
4755
- client: SuiClient,
4755
+ client: SuiJsonRpcClient,
4756
4756
  args: [bigint, bigint],
4757
4757
  ): Promise<TypedDevInspectResults<[bigint]>> {
4758
4758
  const tx = new Transaction();
@@ -4767,7 +4767,7 @@ export namespace u256 {
4767
4767
  );
4768
4768
  }
4769
4769
  export async function toString(
4770
- client: SuiClient,
4770
+ client: SuiJsonRpcClient,
4771
4771
  args: [bigint],
4772
4772
  ): Promise<TypedDevInspectResults<[string]>> {
4773
4773
  const tx = new Transaction();
@@ -4782,7 +4782,7 @@ export namespace u256 {
4782
4782
  );
4783
4783
  }
4784
4784
  export async function tryAsU128(
4785
- client: SuiClient,
4785
+ client: SuiJsonRpcClient,
4786
4786
  args: [bigint],
4787
4787
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4788
4788
  const tx = new Transaction();
@@ -4797,7 +4797,7 @@ export namespace u256 {
4797
4797
  >(inspectRes);
4798
4798
  }
4799
4799
  export async function tryAsU16(
4800
- client: SuiClient,
4800
+ client: SuiJsonRpcClient,
4801
4801
  args: [bigint],
4802
4802
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4803
4803
  const tx = new Transaction();
@@ -4812,7 +4812,7 @@ export namespace u256 {
4812
4812
  >(inspectRes);
4813
4813
  }
4814
4814
  export async function tryAsU32(
4815
- client: SuiClient,
4815
+ client: SuiJsonRpcClient,
4816
4816
  args: [bigint],
4817
4817
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4818
4818
  const tx = new Transaction();
@@ -4827,7 +4827,7 @@ export namespace u256 {
4827
4827
  >(inspectRes);
4828
4828
  }
4829
4829
  export async function tryAsU64(
4830
- client: SuiClient,
4830
+ client: SuiJsonRpcClient,
4831
4831
  args: [bigint],
4832
4832
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
4833
4833
  const tx = new Transaction();
@@ -4842,7 +4842,7 @@ export namespace u256 {
4842
4842
  >(inspectRes);
4843
4843
  }
4844
4844
  export async function tryAsU8(
4845
- client: SuiClient,
4845
+ client: SuiJsonRpcClient,
4846
4846
  args: [bigint],
4847
4847
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
4848
4848
  const tx = new Transaction();
@@ -5167,7 +5167,7 @@ export namespace u32 {
5167
5167
  }
5168
5168
  export namespace view {
5169
5169
  export async function bitwiseNot(
5170
- client: SuiClient,
5170
+ client: SuiJsonRpcClient,
5171
5171
  args: [number],
5172
5172
  ): Promise<TypedDevInspectResults<[number]>> {
5173
5173
  const tx = new Transaction();
@@ -5182,7 +5182,7 @@ export namespace u32 {
5182
5182
  );
5183
5183
  }
5184
5184
  export async function checkedAdd(
5185
- client: SuiClient,
5185
+ client: SuiJsonRpcClient,
5186
5186
  args: [number, number],
5187
5187
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5188
5188
  const tx = new Transaction();
@@ -5197,7 +5197,7 @@ export namespace u32 {
5197
5197
  >(inspectRes);
5198
5198
  }
5199
5199
  export async function checkedDiv(
5200
- client: SuiClient,
5200
+ client: SuiJsonRpcClient,
5201
5201
  args: [number, number],
5202
5202
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5203
5203
  const tx = new Transaction();
@@ -5212,7 +5212,7 @@ export namespace u32 {
5212
5212
  >(inspectRes);
5213
5213
  }
5214
5214
  export async function checkedMul(
5215
- client: SuiClient,
5215
+ client: SuiJsonRpcClient,
5216
5216
  args: [number, number],
5217
5217
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5218
5218
  const tx = new Transaction();
@@ -5227,7 +5227,7 @@ export namespace u32 {
5227
5227
  >(inspectRes);
5228
5228
  }
5229
5229
  export async function checkedShl(
5230
- client: SuiClient,
5230
+ client: SuiJsonRpcClient,
5231
5231
  args: [number, number],
5232
5232
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5233
5233
  const tx = new Transaction();
@@ -5242,7 +5242,7 @@ export namespace u32 {
5242
5242
  >(inspectRes);
5243
5243
  }
5244
5244
  export async function checkedShr(
5245
- client: SuiClient,
5245
+ client: SuiJsonRpcClient,
5246
5246
  args: [number, number],
5247
5247
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5248
5248
  const tx = new Transaction();
@@ -5257,7 +5257,7 @@ export namespace u32 {
5257
5257
  >(inspectRes);
5258
5258
  }
5259
5259
  export async function checkedSub(
5260
- client: SuiClient,
5260
+ client: SuiJsonRpcClient,
5261
5261
  args: [number, number],
5262
5262
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5263
5263
  const tx = new Transaction();
@@ -5272,7 +5272,7 @@ export namespace u32 {
5272
5272
  >(inspectRes);
5273
5273
  }
5274
5274
  export async function diff(
5275
- client: SuiClient,
5275
+ client: SuiJsonRpcClient,
5276
5276
  args: [number, number],
5277
5277
  ): Promise<TypedDevInspectResults<[number]>> {
5278
5278
  const tx = new Transaction();
@@ -5287,7 +5287,7 @@ export namespace u32 {
5287
5287
  );
5288
5288
  }
5289
5289
  export async function divideAndRoundUp(
5290
- client: SuiClient,
5290
+ client: SuiJsonRpcClient,
5291
5291
  args: [number, number],
5292
5292
  ): Promise<TypedDevInspectResults<[number]>> {
5293
5293
  const tx = new Transaction();
@@ -5302,7 +5302,7 @@ export namespace u32 {
5302
5302
  );
5303
5303
  }
5304
5304
  export async function losslessDiv(
5305
- client: SuiClient,
5305
+ client: SuiJsonRpcClient,
5306
5306
  args: [number, number],
5307
5307
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5308
5308
  const tx = new Transaction();
@@ -5317,7 +5317,7 @@ export namespace u32 {
5317
5317
  >(inspectRes);
5318
5318
  }
5319
5319
  export async function losslessShl(
5320
- client: SuiClient,
5320
+ client: SuiJsonRpcClient,
5321
5321
  args: [number, number],
5322
5322
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5323
5323
  const tx = new Transaction();
@@ -5332,7 +5332,7 @@ export namespace u32 {
5332
5332
  >(inspectRes);
5333
5333
  }
5334
5334
  export async function losslessShr(
5335
- client: SuiClient,
5335
+ client: SuiJsonRpcClient,
5336
5336
  args: [number, number],
5337
5337
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5338
5338
  const tx = new Transaction();
@@ -5347,7 +5347,7 @@ export namespace u32 {
5347
5347
  >(inspectRes);
5348
5348
  }
5349
5349
  export async function max(
5350
- client: SuiClient,
5350
+ client: SuiJsonRpcClient,
5351
5351
  args: [number, number],
5352
5352
  ): Promise<TypedDevInspectResults<[number]>> {
5353
5353
  const tx = new Transaction();
@@ -5362,7 +5362,7 @@ export namespace u32 {
5362
5362
  );
5363
5363
  }
5364
5364
  export async function min(
5365
- client: SuiClient,
5365
+ client: SuiJsonRpcClient,
5366
5366
  args: [number, number],
5367
5367
  ): Promise<TypedDevInspectResults<[number]>> {
5368
5368
  const tx = new Transaction();
@@ -5377,7 +5377,7 @@ export namespace u32 {
5377
5377
  );
5378
5378
  }
5379
5379
  export async function pow(
5380
- client: SuiClient,
5380
+ client: SuiJsonRpcClient,
5381
5381
  args: [number, number],
5382
5382
  ): Promise<TypedDevInspectResults<[number]>> {
5383
5383
  const tx = new Transaction();
@@ -5392,7 +5392,7 @@ export namespace u32 {
5392
5392
  );
5393
5393
  }
5394
5394
  export async function saturatingAdd(
5395
- client: SuiClient,
5395
+ client: SuiJsonRpcClient,
5396
5396
  args: [number, number],
5397
5397
  ): Promise<TypedDevInspectResults<[number]>> {
5398
5398
  const tx = new Transaction();
@@ -5407,7 +5407,7 @@ export namespace u32 {
5407
5407
  );
5408
5408
  }
5409
5409
  export async function saturatingMul(
5410
- client: SuiClient,
5410
+ client: SuiJsonRpcClient,
5411
5411
  args: [number, number],
5412
5412
  ): Promise<TypedDevInspectResults<[number]>> {
5413
5413
  const tx = new Transaction();
@@ -5422,7 +5422,7 @@ export namespace u32 {
5422
5422
  );
5423
5423
  }
5424
5424
  export async function saturatingSub(
5425
- client: SuiClient,
5425
+ client: SuiJsonRpcClient,
5426
5426
  args: [number, number],
5427
5427
  ): Promise<TypedDevInspectResults<[number]>> {
5428
5428
  const tx = new Transaction();
@@ -5437,7 +5437,7 @@ export namespace u32 {
5437
5437
  );
5438
5438
  }
5439
5439
  export async function sqrt(
5440
- client: SuiClient,
5440
+ client: SuiJsonRpcClient,
5441
5441
  args: [number],
5442
5442
  ): Promise<TypedDevInspectResults<[number]>> {
5443
5443
  const tx = new Transaction();
@@ -5452,7 +5452,7 @@ export namespace u32 {
5452
5452
  );
5453
5453
  }
5454
5454
  export async function toString(
5455
- client: SuiClient,
5455
+ client: SuiJsonRpcClient,
5456
5456
  args: [number],
5457
5457
  ): Promise<TypedDevInspectResults<[string]>> {
5458
5458
  const tx = new Transaction();
@@ -5467,7 +5467,7 @@ export namespace u32 {
5467
5467
  );
5468
5468
  }
5469
5469
  export async function tryAsU16(
5470
- client: SuiClient,
5470
+ client: SuiJsonRpcClient,
5471
5471
  args: [number],
5472
5472
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5473
5473
  const tx = new Transaction();
@@ -5482,7 +5482,7 @@ export namespace u32 {
5482
5482
  >(inspectRes);
5483
5483
  }
5484
5484
  export async function tryAsU8(
5485
- client: SuiClient,
5485
+ client: SuiJsonRpcClient,
5486
5486
  args: [number],
5487
5487
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
5488
5488
  const tx = new Transaction();
@@ -5820,7 +5820,7 @@ export namespace u64 {
5820
5820
  }
5821
5821
  export namespace view {
5822
5822
  export async function bitwiseNot(
5823
- client: SuiClient,
5823
+ client: SuiJsonRpcClient,
5824
5824
  args: [bigint],
5825
5825
  ): Promise<TypedDevInspectResults<[bigint]>> {
5826
5826
  const tx = new Transaction();
@@ -5835,7 +5835,7 @@ export namespace u64 {
5835
5835
  );
5836
5836
  }
5837
5837
  export async function checkedAdd(
5838
- client: SuiClient,
5838
+ client: SuiJsonRpcClient,
5839
5839
  args: [bigint, bigint],
5840
5840
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5841
5841
  const tx = new Transaction();
@@ -5850,7 +5850,7 @@ export namespace u64 {
5850
5850
  >(inspectRes);
5851
5851
  }
5852
5852
  export async function checkedDiv(
5853
- client: SuiClient,
5853
+ client: SuiJsonRpcClient,
5854
5854
  args: [bigint, bigint],
5855
5855
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5856
5856
  const tx = new Transaction();
@@ -5865,7 +5865,7 @@ export namespace u64 {
5865
5865
  >(inspectRes);
5866
5866
  }
5867
5867
  export async function checkedMul(
5868
- client: SuiClient,
5868
+ client: SuiJsonRpcClient,
5869
5869
  args: [bigint, bigint],
5870
5870
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5871
5871
  const tx = new Transaction();
@@ -5880,7 +5880,7 @@ export namespace u64 {
5880
5880
  >(inspectRes);
5881
5881
  }
5882
5882
  export async function checkedShl(
5883
- client: SuiClient,
5883
+ client: SuiJsonRpcClient,
5884
5884
  args: [bigint, number],
5885
5885
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5886
5886
  const tx = new Transaction();
@@ -5895,7 +5895,7 @@ export namespace u64 {
5895
5895
  >(inspectRes);
5896
5896
  }
5897
5897
  export async function checkedShr(
5898
- client: SuiClient,
5898
+ client: SuiJsonRpcClient,
5899
5899
  args: [bigint, number],
5900
5900
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5901
5901
  const tx = new Transaction();
@@ -5910,7 +5910,7 @@ export namespace u64 {
5910
5910
  >(inspectRes);
5911
5911
  }
5912
5912
  export async function checkedSub(
5913
- client: SuiClient,
5913
+ client: SuiJsonRpcClient,
5914
5914
  args: [bigint, bigint],
5915
5915
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5916
5916
  const tx = new Transaction();
@@ -5925,7 +5925,7 @@ export namespace u64 {
5925
5925
  >(inspectRes);
5926
5926
  }
5927
5927
  export async function diff(
5928
- client: SuiClient,
5928
+ client: SuiJsonRpcClient,
5929
5929
  args: [bigint, bigint],
5930
5930
  ): Promise<TypedDevInspectResults<[bigint]>> {
5931
5931
  const tx = new Transaction();
@@ -5940,7 +5940,7 @@ export namespace u64 {
5940
5940
  );
5941
5941
  }
5942
5942
  export async function divideAndRoundUp(
5943
- client: SuiClient,
5943
+ client: SuiJsonRpcClient,
5944
5944
  args: [bigint, bigint],
5945
5945
  ): Promise<TypedDevInspectResults<[bigint]>> {
5946
5946
  const tx = new Transaction();
@@ -5955,7 +5955,7 @@ export namespace u64 {
5955
5955
  );
5956
5956
  }
5957
5957
  export async function losslessDiv(
5958
- client: SuiClient,
5958
+ client: SuiJsonRpcClient,
5959
5959
  args: [bigint, bigint],
5960
5960
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5961
5961
  const tx = new Transaction();
@@ -5970,7 +5970,7 @@ export namespace u64 {
5970
5970
  >(inspectRes);
5971
5971
  }
5972
5972
  export async function losslessShl(
5973
- client: SuiClient,
5973
+ client: SuiJsonRpcClient,
5974
5974
  args: [bigint, number],
5975
5975
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5976
5976
  const tx = new Transaction();
@@ -5985,7 +5985,7 @@ export namespace u64 {
5985
5985
  >(inspectRes);
5986
5986
  }
5987
5987
  export async function losslessShr(
5988
- client: SuiClient,
5988
+ client: SuiJsonRpcClient,
5989
5989
  args: [bigint, number],
5990
5990
  ): Promise<TypedDevInspectResults<[option.Option<bigint>]>> {
5991
5991
  const tx = new Transaction();
@@ -6000,7 +6000,7 @@ export namespace u64 {
6000
6000
  >(inspectRes);
6001
6001
  }
6002
6002
  export async function max(
6003
- client: SuiClient,
6003
+ client: SuiJsonRpcClient,
6004
6004
  args: [bigint, bigint],
6005
6005
  ): Promise<TypedDevInspectResults<[bigint]>> {
6006
6006
  const tx = new Transaction();
@@ -6015,7 +6015,7 @@ export namespace u64 {
6015
6015
  );
6016
6016
  }
6017
6017
  export async function min(
6018
- client: SuiClient,
6018
+ client: SuiJsonRpcClient,
6019
6019
  args: [bigint, bigint],
6020
6020
  ): Promise<TypedDevInspectResults<[bigint]>> {
6021
6021
  const tx = new Transaction();
@@ -6030,7 +6030,7 @@ export namespace u64 {
6030
6030
  );
6031
6031
  }
6032
6032
  export async function pow(
6033
- client: SuiClient,
6033
+ client: SuiJsonRpcClient,
6034
6034
  args: [bigint, number],
6035
6035
  ): Promise<TypedDevInspectResults<[bigint]>> {
6036
6036
  const tx = new Transaction();
@@ -6045,7 +6045,7 @@ export namespace u64 {
6045
6045
  );
6046
6046
  }
6047
6047
  export async function saturatingAdd(
6048
- client: SuiClient,
6048
+ client: SuiJsonRpcClient,
6049
6049
  args: [bigint, bigint],
6050
6050
  ): Promise<TypedDevInspectResults<[bigint]>> {
6051
6051
  const tx = new Transaction();
@@ -6060,7 +6060,7 @@ export namespace u64 {
6060
6060
  );
6061
6061
  }
6062
6062
  export async function saturatingMul(
6063
- client: SuiClient,
6063
+ client: SuiJsonRpcClient,
6064
6064
  args: [bigint, bigint],
6065
6065
  ): Promise<TypedDevInspectResults<[bigint]>> {
6066
6066
  const tx = new Transaction();
@@ -6075,7 +6075,7 @@ export namespace u64 {
6075
6075
  );
6076
6076
  }
6077
6077
  export async function saturatingSub(
6078
- client: SuiClient,
6078
+ client: SuiJsonRpcClient,
6079
6079
  args: [bigint, bigint],
6080
6080
  ): Promise<TypedDevInspectResults<[bigint]>> {
6081
6081
  const tx = new Transaction();
@@ -6090,7 +6090,7 @@ export namespace u64 {
6090
6090
  );
6091
6091
  }
6092
6092
  export async function sqrt(
6093
- client: SuiClient,
6093
+ client: SuiJsonRpcClient,
6094
6094
  args: [bigint],
6095
6095
  ): Promise<TypedDevInspectResults<[bigint]>> {
6096
6096
  const tx = new Transaction();
@@ -6105,7 +6105,7 @@ export namespace u64 {
6105
6105
  );
6106
6106
  }
6107
6107
  export async function toString(
6108
- client: SuiClient,
6108
+ client: SuiJsonRpcClient,
6109
6109
  args: [bigint],
6110
6110
  ): Promise<TypedDevInspectResults<[string]>> {
6111
6111
  const tx = new Transaction();
@@ -6120,7 +6120,7 @@ export namespace u64 {
6120
6120
  );
6121
6121
  }
6122
6122
  export async function tryAsU16(
6123
- client: SuiClient,
6123
+ client: SuiJsonRpcClient,
6124
6124
  args: [bigint],
6125
6125
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6126
6126
  const tx = new Transaction();
@@ -6135,7 +6135,7 @@ export namespace u64 {
6135
6135
  >(inspectRes);
6136
6136
  }
6137
6137
  export async function tryAsU32(
6138
- client: SuiClient,
6138
+ client: SuiJsonRpcClient,
6139
6139
  args: [bigint],
6140
6140
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6141
6141
  const tx = new Transaction();
@@ -6150,7 +6150,7 @@ export namespace u64 {
6150
6150
  >(inspectRes);
6151
6151
  }
6152
6152
  export async function tryAsU8(
6153
- client: SuiClient,
6153
+ client: SuiJsonRpcClient,
6154
6154
  args: [bigint],
6155
6155
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6156
6156
  const tx = new Transaction();
@@ -6449,7 +6449,7 @@ export namespace u8 {
6449
6449
  }
6450
6450
  export namespace view {
6451
6451
  export async function bitwiseNot(
6452
- client: SuiClient,
6452
+ client: SuiJsonRpcClient,
6453
6453
  args: [number],
6454
6454
  ): Promise<TypedDevInspectResults<[number]>> {
6455
6455
  const tx = new Transaction();
@@ -6464,7 +6464,7 @@ export namespace u8 {
6464
6464
  );
6465
6465
  }
6466
6466
  export async function checkedAdd(
6467
- client: SuiClient,
6467
+ client: SuiJsonRpcClient,
6468
6468
  args: [number, number],
6469
6469
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6470
6470
  const tx = new Transaction();
@@ -6479,7 +6479,7 @@ export namespace u8 {
6479
6479
  >(inspectRes);
6480
6480
  }
6481
6481
  export async function checkedDiv(
6482
- client: SuiClient,
6482
+ client: SuiJsonRpcClient,
6483
6483
  args: [number, number],
6484
6484
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6485
6485
  const tx = new Transaction();
@@ -6494,7 +6494,7 @@ export namespace u8 {
6494
6494
  >(inspectRes);
6495
6495
  }
6496
6496
  export async function checkedMul(
6497
- client: SuiClient,
6497
+ client: SuiJsonRpcClient,
6498
6498
  args: [number, number],
6499
6499
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6500
6500
  const tx = new Transaction();
@@ -6509,7 +6509,7 @@ export namespace u8 {
6509
6509
  >(inspectRes);
6510
6510
  }
6511
6511
  export async function checkedShl(
6512
- client: SuiClient,
6512
+ client: SuiJsonRpcClient,
6513
6513
  args: [number, number],
6514
6514
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6515
6515
  const tx = new Transaction();
@@ -6524,7 +6524,7 @@ export namespace u8 {
6524
6524
  >(inspectRes);
6525
6525
  }
6526
6526
  export async function checkedShr(
6527
- client: SuiClient,
6527
+ client: SuiJsonRpcClient,
6528
6528
  args: [number, number],
6529
6529
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6530
6530
  const tx = new Transaction();
@@ -6539,7 +6539,7 @@ export namespace u8 {
6539
6539
  >(inspectRes);
6540
6540
  }
6541
6541
  export async function checkedSub(
6542
- client: SuiClient,
6542
+ client: SuiJsonRpcClient,
6543
6543
  args: [number, number],
6544
6544
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6545
6545
  const tx = new Transaction();
@@ -6554,7 +6554,7 @@ export namespace u8 {
6554
6554
  >(inspectRes);
6555
6555
  }
6556
6556
  export async function diff(
6557
- client: SuiClient,
6557
+ client: SuiJsonRpcClient,
6558
6558
  args: [number, number],
6559
6559
  ): Promise<TypedDevInspectResults<[number]>> {
6560
6560
  const tx = new Transaction();
@@ -6569,7 +6569,7 @@ export namespace u8 {
6569
6569
  );
6570
6570
  }
6571
6571
  export async function divideAndRoundUp(
6572
- client: SuiClient,
6572
+ client: SuiJsonRpcClient,
6573
6573
  args: [number, number],
6574
6574
  ): Promise<TypedDevInspectResults<[number]>> {
6575
6575
  const tx = new Transaction();
@@ -6584,7 +6584,7 @@ export namespace u8 {
6584
6584
  );
6585
6585
  }
6586
6586
  export async function losslessDiv(
6587
- client: SuiClient,
6587
+ client: SuiJsonRpcClient,
6588
6588
  args: [number, number],
6589
6589
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6590
6590
  const tx = new Transaction();
@@ -6599,7 +6599,7 @@ export namespace u8 {
6599
6599
  >(inspectRes);
6600
6600
  }
6601
6601
  export async function losslessShl(
6602
- client: SuiClient,
6602
+ client: SuiJsonRpcClient,
6603
6603
  args: [number, number],
6604
6604
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6605
6605
  const tx = new Transaction();
@@ -6614,7 +6614,7 @@ export namespace u8 {
6614
6614
  >(inspectRes);
6615
6615
  }
6616
6616
  export async function losslessShr(
6617
- client: SuiClient,
6617
+ client: SuiJsonRpcClient,
6618
6618
  args: [number, number],
6619
6619
  ): Promise<TypedDevInspectResults<[option.Option<number>]>> {
6620
6620
  const tx = new Transaction();
@@ -6629,7 +6629,7 @@ export namespace u8 {
6629
6629
  >(inspectRes);
6630
6630
  }
6631
6631
  export async function max(
6632
- client: SuiClient,
6632
+ client: SuiJsonRpcClient,
6633
6633
  args: [number, number],
6634
6634
  ): Promise<TypedDevInspectResults<[number]>> {
6635
6635
  const tx = new Transaction();
@@ -6644,7 +6644,7 @@ export namespace u8 {
6644
6644
  );
6645
6645
  }
6646
6646
  export async function min(
6647
- client: SuiClient,
6647
+ client: SuiJsonRpcClient,
6648
6648
  args: [number, number],
6649
6649
  ): Promise<TypedDevInspectResults<[number]>> {
6650
6650
  const tx = new Transaction();
@@ -6659,7 +6659,7 @@ export namespace u8 {
6659
6659
  );
6660
6660
  }
6661
6661
  export async function pow(
6662
- client: SuiClient,
6662
+ client: SuiJsonRpcClient,
6663
6663
  args: [number, number],
6664
6664
  ): Promise<TypedDevInspectResults<[number]>> {
6665
6665
  const tx = new Transaction();
@@ -6674,7 +6674,7 @@ export namespace u8 {
6674
6674
  );
6675
6675
  }
6676
6676
  export async function saturatingAdd(
6677
- client: SuiClient,
6677
+ client: SuiJsonRpcClient,
6678
6678
  args: [number, number],
6679
6679
  ): Promise<TypedDevInspectResults<[number]>> {
6680
6680
  const tx = new Transaction();
@@ -6689,7 +6689,7 @@ export namespace u8 {
6689
6689
  );
6690
6690
  }
6691
6691
  export async function saturatingMul(
6692
- client: SuiClient,
6692
+ client: SuiJsonRpcClient,
6693
6693
  args: [number, number],
6694
6694
  ): Promise<TypedDevInspectResults<[number]>> {
6695
6695
  const tx = new Transaction();
@@ -6704,7 +6704,7 @@ export namespace u8 {
6704
6704
  );
6705
6705
  }
6706
6706
  export async function saturatingSub(
6707
- client: SuiClient,
6707
+ client: SuiJsonRpcClient,
6708
6708
  args: [number, number],
6709
6709
  ): Promise<TypedDevInspectResults<[number]>> {
6710
6710
  const tx = new Transaction();
@@ -6719,7 +6719,7 @@ export namespace u8 {
6719
6719
  );
6720
6720
  }
6721
6721
  export async function sqrt(
6722
- client: SuiClient,
6722
+ client: SuiJsonRpcClient,
6723
6723
  args: [number],
6724
6724
  ): Promise<TypedDevInspectResults<[number]>> {
6725
6725
  const tx = new Transaction();
@@ -6734,7 +6734,7 @@ export namespace u8 {
6734
6734
  );
6735
6735
  }
6736
6736
  export async function toString(
6737
- client: SuiClient,
6737
+ client: SuiJsonRpcClient,
6738
6738
  args: [number],
6739
6739
  ): Promise<TypedDevInspectResults<[string]>> {
6740
6740
  const tx = new Transaction();
@@ -7011,7 +7011,7 @@ export namespace uq32_32 {
7011
7011
  }
7012
7012
  export namespace view {
7013
7013
  export async function add(
7014
- client: SuiClient,
7014
+ client: SuiJsonRpcClient,
7015
7015
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7016
7016
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7017
7017
  const tx = new Transaction();
@@ -7026,7 +7026,7 @@ export namespace uq32_32 {
7026
7026
  >(inspectRes);
7027
7027
  }
7028
7028
  export async function div(
7029
- client: SuiClient,
7029
+ client: SuiJsonRpcClient,
7030
7030
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7031
7031
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7032
7032
  const tx = new Transaction();
@@ -7041,7 +7041,7 @@ export namespace uq32_32 {
7041
7041
  >(inspectRes);
7042
7042
  }
7043
7043
  export async function fromInt(
7044
- client: SuiClient,
7044
+ client: SuiJsonRpcClient,
7045
7045
  args: [number],
7046
7046
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7047
7047
  const tx = new Transaction();
@@ -7056,7 +7056,7 @@ export namespace uq32_32 {
7056
7056
  >(inspectRes);
7057
7057
  }
7058
7058
  export async function fromQuotient(
7059
- client: SuiClient,
7059
+ client: SuiJsonRpcClient,
7060
7060
  args: [bigint, bigint],
7061
7061
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7062
7062
  const tx = new Transaction();
@@ -7071,7 +7071,7 @@ export namespace uq32_32 {
7071
7071
  >(inspectRes);
7072
7072
  }
7073
7073
  export async function fromRaw(
7074
- client: SuiClient,
7074
+ client: SuiJsonRpcClient,
7075
7075
  args: [bigint],
7076
7076
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7077
7077
  const tx = new Transaction();
@@ -7086,7 +7086,7 @@ export namespace uq32_32 {
7086
7086
  >(inspectRes);
7087
7087
  }
7088
7088
  export async function ge(
7089
- client: SuiClient,
7089
+ client: SuiJsonRpcClient,
7090
7090
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7091
7091
  ): Promise<TypedDevInspectResults<[boolean]>> {
7092
7092
  const tx = new Transaction();
@@ -7101,7 +7101,7 @@ export namespace uq32_32 {
7101
7101
  );
7102
7102
  }
7103
7103
  export async function gt(
7104
- client: SuiClient,
7104
+ client: SuiJsonRpcClient,
7105
7105
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7106
7106
  ): Promise<TypedDevInspectResults<[boolean]>> {
7107
7107
  const tx = new Transaction();
@@ -7116,7 +7116,7 @@ export namespace uq32_32 {
7116
7116
  );
7117
7117
  }
7118
7118
  export async function intDiv(
7119
- client: SuiClient,
7119
+ client: SuiJsonRpcClient,
7120
7120
  args: [bigint, uq32_32.UQ32_32],
7121
7121
  ): Promise<TypedDevInspectResults<[bigint]>> {
7122
7122
  const tx = new Transaction();
@@ -7131,7 +7131,7 @@ export namespace uq32_32 {
7131
7131
  );
7132
7132
  }
7133
7133
  export async function intMul(
7134
- client: SuiClient,
7134
+ client: SuiJsonRpcClient,
7135
7135
  args: [bigint, uq32_32.UQ32_32],
7136
7136
  ): Promise<TypedDevInspectResults<[bigint]>> {
7137
7137
  const tx = new Transaction();
@@ -7146,7 +7146,7 @@ export namespace uq32_32 {
7146
7146
  );
7147
7147
  }
7148
7148
  export async function le(
7149
- client: SuiClient,
7149
+ client: SuiJsonRpcClient,
7150
7150
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7151
7151
  ): Promise<TypedDevInspectResults<[boolean]>> {
7152
7152
  const tx = new Transaction();
@@ -7161,7 +7161,7 @@ export namespace uq32_32 {
7161
7161
  );
7162
7162
  }
7163
7163
  export async function lt(
7164
- client: SuiClient,
7164
+ client: SuiJsonRpcClient,
7165
7165
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7166
7166
  ): Promise<TypedDevInspectResults<[boolean]>> {
7167
7167
  const tx = new Transaction();
@@ -7176,7 +7176,7 @@ export namespace uq32_32 {
7176
7176
  );
7177
7177
  }
7178
7178
  export async function mul(
7179
- client: SuiClient,
7179
+ client: SuiJsonRpcClient,
7180
7180
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7181
7181
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7182
7182
  const tx = new Transaction();
@@ -7191,7 +7191,7 @@ export namespace uq32_32 {
7191
7191
  >(inspectRes);
7192
7192
  }
7193
7193
  export async function sub(
7194
- client: SuiClient,
7194
+ client: SuiJsonRpcClient,
7195
7195
  args: [uq32_32.UQ32_32, uq32_32.UQ32_32],
7196
7196
  ): Promise<TypedDevInspectResults<[uq32_32.UQ32_32]>> {
7197
7197
  const tx = new Transaction();
@@ -7206,7 +7206,7 @@ export namespace uq32_32 {
7206
7206
  >(inspectRes);
7207
7207
  }
7208
7208
  export async function toInt(
7209
- client: SuiClient,
7209
+ client: SuiJsonRpcClient,
7210
7210
  args: [uq32_32.UQ32_32],
7211
7211
  ): Promise<TypedDevInspectResults<[number]>> {
7212
7212
  const tx = new Transaction();
@@ -7221,7 +7221,7 @@ export namespace uq32_32 {
7221
7221
  );
7222
7222
  }
7223
7223
  export async function toRaw(
7224
- client: SuiClient,
7224
+ client: SuiJsonRpcClient,
7225
7225
  args: [uq32_32.UQ32_32],
7226
7226
  ): Promise<TypedDevInspectResults<[bigint]>> {
7227
7227
  const tx = new Transaction();
@@ -7498,7 +7498,7 @@ export namespace uq64_64 {
7498
7498
  }
7499
7499
  export namespace view {
7500
7500
  export async function add(
7501
- client: SuiClient,
7501
+ client: SuiJsonRpcClient,
7502
7502
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7503
7503
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7504
7504
  const tx = new Transaction();
@@ -7513,7 +7513,7 @@ export namespace uq64_64 {
7513
7513
  >(inspectRes);
7514
7514
  }
7515
7515
  export async function div(
7516
- client: SuiClient,
7516
+ client: SuiJsonRpcClient,
7517
7517
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7518
7518
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7519
7519
  const tx = new Transaction();
@@ -7528,7 +7528,7 @@ export namespace uq64_64 {
7528
7528
  >(inspectRes);
7529
7529
  }
7530
7530
  export async function fromInt(
7531
- client: SuiClient,
7531
+ client: SuiJsonRpcClient,
7532
7532
  args: [bigint],
7533
7533
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7534
7534
  const tx = new Transaction();
@@ -7543,7 +7543,7 @@ export namespace uq64_64 {
7543
7543
  >(inspectRes);
7544
7544
  }
7545
7545
  export async function fromQuotient(
7546
- client: SuiClient,
7546
+ client: SuiJsonRpcClient,
7547
7547
  args: [bigint, bigint],
7548
7548
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7549
7549
  const tx = new Transaction();
@@ -7558,7 +7558,7 @@ export namespace uq64_64 {
7558
7558
  >(inspectRes);
7559
7559
  }
7560
7560
  export async function fromRaw(
7561
- client: SuiClient,
7561
+ client: SuiJsonRpcClient,
7562
7562
  args: [bigint],
7563
7563
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7564
7564
  const tx = new Transaction();
@@ -7573,7 +7573,7 @@ export namespace uq64_64 {
7573
7573
  >(inspectRes);
7574
7574
  }
7575
7575
  export async function ge(
7576
- client: SuiClient,
7576
+ client: SuiJsonRpcClient,
7577
7577
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7578
7578
  ): Promise<TypedDevInspectResults<[boolean]>> {
7579
7579
  const tx = new Transaction();
@@ -7588,7 +7588,7 @@ export namespace uq64_64 {
7588
7588
  );
7589
7589
  }
7590
7590
  export async function gt(
7591
- client: SuiClient,
7591
+ client: SuiJsonRpcClient,
7592
7592
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7593
7593
  ): Promise<TypedDevInspectResults<[boolean]>> {
7594
7594
  const tx = new Transaction();
@@ -7603,7 +7603,7 @@ export namespace uq64_64 {
7603
7603
  );
7604
7604
  }
7605
7605
  export async function intDiv(
7606
- client: SuiClient,
7606
+ client: SuiJsonRpcClient,
7607
7607
  args: [bigint, uq64_64.UQ64_64],
7608
7608
  ): Promise<TypedDevInspectResults<[bigint]>> {
7609
7609
  const tx = new Transaction();
@@ -7618,7 +7618,7 @@ export namespace uq64_64 {
7618
7618
  );
7619
7619
  }
7620
7620
  export async function intMul(
7621
- client: SuiClient,
7621
+ client: SuiJsonRpcClient,
7622
7622
  args: [bigint, uq64_64.UQ64_64],
7623
7623
  ): Promise<TypedDevInspectResults<[bigint]>> {
7624
7624
  const tx = new Transaction();
@@ -7633,7 +7633,7 @@ export namespace uq64_64 {
7633
7633
  );
7634
7634
  }
7635
7635
  export async function le(
7636
- client: SuiClient,
7636
+ client: SuiJsonRpcClient,
7637
7637
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7638
7638
  ): Promise<TypedDevInspectResults<[boolean]>> {
7639
7639
  const tx = new Transaction();
@@ -7648,7 +7648,7 @@ export namespace uq64_64 {
7648
7648
  );
7649
7649
  }
7650
7650
  export async function lt(
7651
- client: SuiClient,
7651
+ client: SuiJsonRpcClient,
7652
7652
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7653
7653
  ): Promise<TypedDevInspectResults<[boolean]>> {
7654
7654
  const tx = new Transaction();
@@ -7663,7 +7663,7 @@ export namespace uq64_64 {
7663
7663
  );
7664
7664
  }
7665
7665
  export async function mul(
7666
- client: SuiClient,
7666
+ client: SuiJsonRpcClient,
7667
7667
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7668
7668
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7669
7669
  const tx = new Transaction();
@@ -7678,7 +7678,7 @@ export namespace uq64_64 {
7678
7678
  >(inspectRes);
7679
7679
  }
7680
7680
  export async function sub(
7681
- client: SuiClient,
7681
+ client: SuiJsonRpcClient,
7682
7682
  args: [uq64_64.UQ64_64, uq64_64.UQ64_64],
7683
7683
  ): Promise<TypedDevInspectResults<[uq64_64.UQ64_64]>> {
7684
7684
  const tx = new Transaction();
@@ -7693,7 +7693,7 @@ export namespace uq64_64 {
7693
7693
  >(inspectRes);
7694
7694
  }
7695
7695
  export async function toInt(
7696
- client: SuiClient,
7696
+ client: SuiJsonRpcClient,
7697
7697
  args: [uq64_64.UQ64_64],
7698
7698
  ): Promise<TypedDevInspectResults<[bigint]>> {
7699
7699
  const tx = new Transaction();
@@ -7708,7 +7708,7 @@ export namespace uq64_64 {
7708
7708
  );
7709
7709
  }
7710
7710
  export async function toRaw(
7711
- client: SuiClient,
7711
+ client: SuiJsonRpcClient,
7712
7712
  args: [uq64_64.UQ64_64],
7713
7713
  ): Promise<TypedDevInspectResults<[bigint]>> {
7714
7714
  const tx = new Transaction();
@@ -8148,7 +8148,7 @@ export namespace vector {
8148
8148
  }
8149
8149
  export namespace view {
8150
8150
  export async function append<T0 = any>(
8151
- client: SuiClient,
8151
+ client: SuiJsonRpcClient,
8152
8152
  args: [string, string[]],
8153
8153
  typeArguments: [TypeDescriptor<T0> | string],
8154
8154
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8164,7 +8164,7 @@ export namespace vector {
8164
8164
  );
8165
8165
  }
8166
8166
  export async function borrow<T0 = any>(
8167
- client: SuiClient,
8167
+ client: SuiJsonRpcClient,
8168
8168
  args: [string, bigint],
8169
8169
  typeArguments: [TypeDescriptor<T0> | string],
8170
8170
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -8180,7 +8180,7 @@ export namespace vector {
8180
8180
  );
8181
8181
  }
8182
8182
  export async function borrowMut<T0 = any>(
8183
- client: SuiClient,
8183
+ client: SuiJsonRpcClient,
8184
8184
  args: [string, bigint],
8185
8185
  typeArguments: [TypeDescriptor<T0> | string],
8186
8186
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -8196,7 +8196,7 @@ export namespace vector {
8196
8196
  );
8197
8197
  }
8198
8198
  export async function contains<T0 = any>(
8199
- client: SuiClient,
8199
+ client: SuiJsonRpcClient,
8200
8200
  args: [string, string],
8201
8201
  typeArguments: [TypeDescriptor<T0> | string],
8202
8202
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -8212,7 +8212,7 @@ export namespace vector {
8212
8212
  );
8213
8213
  }
8214
8214
  export async function destroyEmpty<T0 = any>(
8215
- client: SuiClient,
8215
+ client: SuiJsonRpcClient,
8216
8216
  args: [string[]],
8217
8217
  typeArguments: [TypeDescriptor<T0> | string],
8218
8218
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8228,7 +8228,7 @@ export namespace vector {
8228
8228
  );
8229
8229
  }
8230
8230
  export async function empty<T0 = any>(
8231
- client: SuiClient,
8231
+ client: SuiJsonRpcClient,
8232
8232
  args: [],
8233
8233
  typeArguments: [TypeDescriptor<T0> | string],
8234
8234
  ): Promise<TypedDevInspectResults<[T0[]]>> {
@@ -8244,7 +8244,7 @@ export namespace vector {
8244
8244
  );
8245
8245
  }
8246
8246
  export async function flatten<T0 = any>(
8247
- client: SuiClient,
8247
+ client: SuiJsonRpcClient,
8248
8248
  args: [string[]],
8249
8249
  typeArguments: [TypeDescriptor<T0> | string],
8250
8250
  ): Promise<TypedDevInspectResults<[T0[]]>> {
@@ -8260,7 +8260,7 @@ export namespace vector {
8260
8260
  );
8261
8261
  }
8262
8262
  export async function indexOf<T0 = any>(
8263
- client: SuiClient,
8263
+ client: SuiJsonRpcClient,
8264
8264
  args: [string, string],
8265
8265
  typeArguments: [TypeDescriptor<T0> | string],
8266
8266
  ): Promise<TypedDevInspectResults<[boolean, bigint]>> {
@@ -8276,7 +8276,7 @@ export namespace vector {
8276
8276
  >(inspectRes);
8277
8277
  }
8278
8278
  export async function insert<T0 = any>(
8279
- client: SuiClient,
8279
+ client: SuiJsonRpcClient,
8280
8280
  args: [string, T0, bigint],
8281
8281
  typeArguments: [TypeDescriptor<T0> | string],
8282
8282
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8292,7 +8292,7 @@ export namespace vector {
8292
8292
  );
8293
8293
  }
8294
8294
  export async function isEmpty<T0 = any>(
8295
- client: SuiClient,
8295
+ client: SuiJsonRpcClient,
8296
8296
  args: [string],
8297
8297
  typeArguments: [TypeDescriptor<T0> | string],
8298
8298
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -8308,7 +8308,7 @@ export namespace vector {
8308
8308
  );
8309
8309
  }
8310
8310
  export async function length<T0 = any>(
8311
- client: SuiClient,
8311
+ client: SuiJsonRpcClient,
8312
8312
  args: [string],
8313
8313
  typeArguments: [TypeDescriptor<T0> | string],
8314
8314
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -8324,7 +8324,7 @@ export namespace vector {
8324
8324
  );
8325
8325
  }
8326
8326
  export async function popBack<T0 = any>(
8327
- client: SuiClient,
8327
+ client: SuiJsonRpcClient,
8328
8328
  args: [string],
8329
8329
  typeArguments: [TypeDescriptor<T0> | string],
8330
8330
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -8340,7 +8340,7 @@ export namespace vector {
8340
8340
  );
8341
8341
  }
8342
8342
  export async function pushBack<T0 = any>(
8343
- client: SuiClient,
8343
+ client: SuiJsonRpcClient,
8344
8344
  args: [string, T0],
8345
8345
  typeArguments: [TypeDescriptor<T0> | string],
8346
8346
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8356,7 +8356,7 @@ export namespace vector {
8356
8356
  );
8357
8357
  }
8358
8358
  export async function remove<T0 = any>(
8359
- client: SuiClient,
8359
+ client: SuiJsonRpcClient,
8360
8360
  args: [string, bigint],
8361
8361
  typeArguments: [TypeDescriptor<T0> | string],
8362
8362
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -8372,7 +8372,7 @@ export namespace vector {
8372
8372
  );
8373
8373
  }
8374
8374
  export async function reverse<T0 = any>(
8375
- client: SuiClient,
8375
+ client: SuiJsonRpcClient,
8376
8376
  args: [string],
8377
8377
  typeArguments: [TypeDescriptor<T0> | string],
8378
8378
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8388,7 +8388,7 @@ export namespace vector {
8388
8388
  );
8389
8389
  }
8390
8390
  export async function singleton<T0 = any>(
8391
- client: SuiClient,
8391
+ client: SuiJsonRpcClient,
8392
8392
  args: [T0],
8393
8393
  typeArguments: [TypeDescriptor<T0> | string],
8394
8394
  ): Promise<TypedDevInspectResults<[T0[]]>> {
@@ -8404,7 +8404,7 @@ export namespace vector {
8404
8404
  );
8405
8405
  }
8406
8406
  export async function skip<T0 = any>(
8407
- client: SuiClient,
8407
+ client: SuiJsonRpcClient,
8408
8408
  args: [string[], bigint],
8409
8409
  typeArguments: [TypeDescriptor<T0> | string],
8410
8410
  ): Promise<TypedDevInspectResults<[T0[]]>> {
@@ -8420,7 +8420,7 @@ export namespace vector {
8420
8420
  );
8421
8421
  }
8422
8422
  export async function swap<T0 = any>(
8423
- client: SuiClient,
8423
+ client: SuiJsonRpcClient,
8424
8424
  args: [string, bigint, bigint],
8425
8425
  typeArguments: [TypeDescriptor<T0> | string],
8426
8426
  ): Promise<TypedDevInspectResults<[]>> {
@@ -8436,7 +8436,7 @@ export namespace vector {
8436
8436
  );
8437
8437
  }
8438
8438
  export async function swapRemove<T0 = any>(
8439
- client: SuiClient,
8439
+ client: SuiJsonRpcClient,
8440
8440
  args: [string, bigint],
8441
8441
  typeArguments: [TypeDescriptor<T0> | string],
8442
8442
  ): Promise<TypedDevInspectResults<[T0]>> {
@@ -8452,7 +8452,7 @@ export namespace vector {
8452
8452
  );
8453
8453
  }
8454
8454
  export async function take<T0 = any>(
8455
- client: SuiClient,
8455
+ client: SuiJsonRpcClient,
8456
8456
  args: [string[], bigint],
8457
8457
  typeArguments: [TypeDescriptor<T0> | string],
8458
8458
  ): Promise<TypedDevInspectResults<[T0[]]>> {