@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,
@@ -157,7 +157,7 @@ export namespace action {
157
157
  }
158
158
  export namespace view {
159
159
  export async function extendBalanceAction(
160
- client: SuiClient,
160
+ client: SuiJsonRpcClient,
161
161
  args: [],
162
162
  ): Promise<TypedDevInspectResults<[action.Action]>> {
163
163
  const tx = new Transaction();
@@ -172,7 +172,7 @@ export namespace action {
172
172
  >(inspectRes);
173
173
  }
174
174
  export async function extendTimeAction(
175
- client: SuiClient,
175
+ client: SuiJsonRpcClient,
176
176
  args: [],
177
177
  ): Promise<TypedDevInspectResults<[action.Action]>> {
178
178
  const tx = new Transaction();
@@ -187,7 +187,7 @@ export namespace action {
187
187
  >(inspectRes);
188
188
  }
189
189
  export async function lockAction(
190
- client: SuiClient,
190
+ client: SuiJsonRpcClient,
191
191
  args: [],
192
192
  ): Promise<TypedDevInspectResults<[action.Action]>> {
193
193
  const tx = new Transaction();
@@ -202,7 +202,7 @@ export namespace action {
202
202
  >(inspectRes);
203
203
  }
204
204
  export async function primary(
205
- client: SuiClient,
205
+ client: SuiJsonRpcClient,
206
206
  args: [],
207
207
  ): Promise<TypedDevInspectResults<[action.Action]>> {
208
208
  const tx = new Transaction();
@@ -217,7 +217,7 @@ export namespace action {
217
217
  >(inspectRes);
218
218
  }
219
219
  export async function toMerge(
220
- client: SuiClient,
220
+ client: SuiJsonRpcClient,
221
221
  args: [],
222
222
  ): Promise<TypedDevInspectResults<[action.Action]>> {
223
223
  const tx = new Transaction();
@@ -232,7 +232,7 @@ export namespace action {
232
232
  >(inspectRes);
233
233
  }
234
234
  export async function unlockAction(
235
- client: SuiClient,
235
+ client: SuiJsonRpcClient,
236
236
  args: [],
237
237
  ): Promise<TypedDevInspectResults<[action.Action]>> {
238
238
  const tx = new Transaction();
@@ -247,7 +247,7 @@ export namespace action {
247
247
  >(inspectRes);
248
248
  }
249
249
  export async function withdraw(
250
- client: SuiClient,
250
+ client: SuiJsonRpcClient,
251
251
  args: [],
252
252
  ): Promise<TypedDevInspectResults<[action.Action]>> {
253
253
  const tx = new Transaction();
@@ -2552,7 +2552,7 @@ export namespace de_center {
2552
2552
  }
2553
2553
  export namespace view {
2554
2554
  export async function addPenalty<T0 = any, T1 = any>(
2555
- client: SuiClient,
2555
+ client: SuiJsonRpcClient,
2556
2556
  args: [string, string, number, number],
2557
2557
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2558
2558
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2568,7 +2568,7 @@ export namespace de_center {
2568
2568
  );
2569
2569
  }
2570
2570
  export async function addPenaltyFeeAdmin<T0 = any, T1 = any, T2 = any>(
2571
- client: SuiClient,
2571
+ client: SuiJsonRpcClient,
2572
2572
  args: [string, string],
2573
2573
  typeArguments: [
2574
2574
  TypeDescriptor<T0> | string,
@@ -2588,7 +2588,7 @@ export namespace de_center {
2588
2588
  );
2589
2589
  }
2590
2590
  export async function addPenaltyFeeBalance<T0 = any, T1 = any>(
2591
- client: SuiClient,
2591
+ client: SuiJsonRpcClient,
2592
2592
  args: [string, _0x2.balance.Balance<T0>],
2593
2593
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2594
2594
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2604,7 +2604,7 @@ export namespace de_center {
2604
2604
  );
2605
2605
  }
2606
2606
  export async function addPenaltyReserve<T0 = any, T1 = any>(
2607
- client: SuiClient,
2607
+ client: SuiJsonRpcClient,
2608
2608
  args: [string, _0x2.balance.Balance<T0>],
2609
2609
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2610
2610
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2620,7 +2620,7 @@ export namespace de_center {
2620
2620
  );
2621
2621
  }
2622
2622
  export async function addResponseChecklists<T0 = any, T1 = any, T2 = any>(
2623
- client: SuiClient,
2623
+ client: SuiJsonRpcClient,
2624
2624
  args: [string, string],
2625
2625
  typeArguments: [
2626
2626
  TypeDescriptor<T0> | string,
@@ -2640,7 +2640,7 @@ export namespace de_center {
2640
2640
  );
2641
2641
  }
2642
2642
  export async function addVersion<T0 = any, T1 = any>(
2643
- client: SuiClient,
2643
+ client: SuiJsonRpcClient,
2644
2644
  args: [string, string, bigint],
2645
2645
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2646
2646
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2656,7 +2656,7 @@ export namespace de_center {
2656
2656
  );
2657
2657
  }
2658
2658
  export async function addWhitelist<T0 = any, T1 = any, T2 = any>(
2659
- client: SuiClient,
2659
+ client: SuiJsonRpcClient,
2660
2660
  args: [string, string],
2661
2661
  typeArguments: [
2662
2662
  TypeDescriptor<T0> | string,
@@ -2676,7 +2676,7 @@ export namespace de_center {
2676
2676
  );
2677
2677
  }
2678
2678
  export async function checkpoint<T0 = any, T1 = any>(
2679
- client: SuiClient,
2679
+ client: SuiJsonRpcClient,
2680
2680
  args: [string, string],
2681
2681
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2682
2682
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2692,7 +2692,7 @@ export namespace de_center {
2692
2692
  );
2693
2693
  }
2694
2694
  export async function currentPenalty<T0 = any, T1 = any>(
2695
- client: SuiClient,
2695
+ client: SuiJsonRpcClient,
2696
2696
  args: [string, bigint],
2697
2697
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2698
2698
  ): Promise<
@@ -2710,7 +2710,7 @@ export namespace de_center {
2710
2710
  >(inspectRes);
2711
2711
  }
2712
2712
  export async function default$<T0 = any, T1 = any>(
2713
- client: SuiClient,
2713
+ client: SuiJsonRpcClient,
2714
2714
  args: [string, bigint, bigint, string],
2715
2715
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2716
2716
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2726,7 +2726,7 @@ export namespace de_center {
2726
2726
  );
2727
2727
  }
2728
2728
  export async function escrowCurrentPenalty<T0 = any, T1 = any>(
2729
- client: SuiClient,
2729
+ client: SuiJsonRpcClient,
2730
2730
  args: [string, string, string],
2731
2731
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2732
2732
  ): Promise<
@@ -2744,7 +2744,7 @@ export namespace de_center {
2744
2744
  >(inspectRes);
2745
2745
  }
2746
2746
  export async function escrowPenalty<T0 = any, T1 = any>(
2747
- client: SuiClient,
2747
+ client: SuiJsonRpcClient,
2748
2748
  args: [string, string, bigint, string],
2749
2749
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2750
2750
  ): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>> {
@@ -2760,7 +2760,7 @@ export namespace de_center {
2760
2760
  >(inspectRes);
2761
2761
  }
2762
2762
  export async function forceUnlockWithPenalty<T0 = any, T1 = any>(
2763
- client: SuiClient,
2763
+ client: SuiJsonRpcClient,
2764
2764
  args: [string, de_token.DeToken<T0, T1>, string],
2765
2765
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2766
2766
  ): Promise<
@@ -2784,7 +2784,7 @@ export namespace de_center {
2784
2784
  T1 = any,
2785
2785
  T2 = any,
2786
2786
  >(
2787
- client: SuiClient,
2787
+ client: SuiJsonRpcClient,
2788
2788
  args: [string, de_token.DeToken<T0, T1>, T2, string],
2789
2789
  typeArguments: [
2790
2790
  TypeDescriptor<T0> | string,
@@ -2808,7 +2808,7 @@ export namespace de_center {
2808
2808
  >(inspectRes);
2809
2809
  }
2810
2810
  export async function forceWithdrawWithPenalty<T0 = any, T1 = any>(
2811
- client: SuiClient,
2811
+ client: SuiJsonRpcClient,
2812
2812
  args: [string, string, bigint, string],
2813
2813
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2814
2814
  ): Promise<
@@ -2832,7 +2832,7 @@ export namespace de_center {
2832
2832
  T1 = any,
2833
2833
  T2 = any,
2834
2834
  >(
2835
- client: SuiClient,
2835
+ client: SuiJsonRpcClient,
2836
2836
  args: [string, string, T2, bigint, string],
2837
2837
  typeArguments: [
2838
2838
  TypeDescriptor<T0> | string,
@@ -2856,7 +2856,7 @@ export namespace de_center {
2856
2856
  >(inspectRes);
2857
2857
  }
2858
2858
  export async function fulfillResponse<T0 = any, T1 = any>(
2859
- client: SuiClient,
2859
+ client: SuiJsonRpcClient,
2860
2860
  args: [de_center.DeTokenUpdateResponse<T0, T1>, string],
2861
2861
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2862
2862
  ): Promise<TypedDevInspectResults<[]>> {
@@ -2872,7 +2872,7 @@ export namespace de_center {
2872
2872
  );
2873
2873
  }
2874
2874
  export async function getLockedEnd<T0 = any, T1 = any>(
2875
- client: SuiClient,
2875
+ client: SuiJsonRpcClient,
2876
2876
  args: [string, bigint, string],
2877
2877
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2878
2878
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -2888,7 +2888,7 @@ export namespace de_center {
2888
2888
  );
2889
2889
  }
2890
2890
  export async function increaseUnlockAmount<T0 = any, T1 = any>(
2891
- client: SuiClient,
2891
+ client: SuiJsonRpcClient,
2892
2892
  args: [string, string, _0x2.coin.Coin<T0>, string],
2893
2893
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2894
2894
  ): Promise<
@@ -2906,7 +2906,7 @@ export namespace de_center {
2906
2906
  >(inspectRes);
2907
2907
  }
2908
2908
  export async function increaseUnlockTime<T0 = any, T1 = any>(
2909
- client: SuiClient,
2909
+ client: SuiJsonRpcClient,
2910
2910
  args: [string, string, bigint, string],
2911
2911
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2912
2912
  ): Promise<
@@ -2924,7 +2924,7 @@ export namespace de_center {
2924
2924
  >(inspectRes);
2925
2925
  }
2926
2926
  export async function lock<T0 = any, T1 = any>(
2927
- client: SuiClient,
2927
+ client: SuiJsonRpcClient,
2928
2928
  args: [string, _0x2.coin.Coin<T0>, bigint, boolean, string],
2929
2929
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2930
2930
  ): Promise<
@@ -2944,7 +2944,7 @@ export namespace de_center {
2944
2944
  >(inspectRes);
2945
2945
  }
2946
2946
  export async function lockedTotal<T0 = any, T1 = any>(
2947
- client: SuiClient,
2947
+ client: SuiJsonRpcClient,
2948
2948
  args: [string],
2949
2949
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2950
2950
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -2960,7 +2960,7 @@ export namespace de_center {
2960
2960
  );
2961
2961
  }
2962
2962
  export async function maxLockedEnd<T0 = any, T1 = any>(
2963
- client: SuiClient,
2963
+ client: SuiJsonRpcClient,
2964
2964
  args: [string, string],
2965
2965
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2966
2966
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -2976,7 +2976,7 @@ export namespace de_center {
2976
2976
  );
2977
2977
  }
2978
2978
  export async function maxTime<T0 = any, T1 = any>(
2979
- client: SuiClient,
2979
+ client: SuiJsonRpcClient,
2980
2980
  args: [string],
2981
2981
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2982
2982
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -2992,7 +2992,7 @@ export namespace de_center {
2992
2992
  );
2993
2993
  }
2994
2994
  export async function merge<T0 = any, T1 = any>(
2995
- client: SuiClient,
2995
+ client: SuiJsonRpcClient,
2996
2996
  args: [string, string, de_token.DeToken<T0, T1>, string],
2997
2997
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
2998
2998
  ): Promise<
@@ -3018,7 +3018,7 @@ export namespace de_center {
3018
3018
  >(inspectRes);
3019
3019
  }
3020
3020
  export async function mintedEscrow<T0 = any, T1 = any>(
3021
- client: SuiClient,
3021
+ client: SuiJsonRpcClient,
3022
3022
  args: [string],
3023
3023
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3024
3024
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3034,7 +3034,7 @@ export namespace de_center {
3034
3034
  );
3035
3035
  }
3036
3036
  export async function new$<T0 = any, T1 = any>(
3037
- client: SuiClient,
3037
+ client: SuiJsonRpcClient,
3038
3038
  args: [string, bigint, bigint, string],
3039
3039
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3040
3040
  ): Promise<TypedDevInspectResults<[de_center.DeCenter<T0, T1>]>> {
@@ -3050,7 +3050,7 @@ export namespace de_center {
3050
3050
  >(inspectRes);
3051
3051
  }
3052
3052
  export async function newAdmin<T0 = any>(
3053
- client: SuiClient,
3053
+ client: SuiJsonRpcClient,
3054
3054
  args: [T0],
3055
3055
  typeArguments: [TypeDescriptor<T0> | string],
3056
3056
  ): Promise<TypedDevInspectResults<[de_center.AdminCap<T0>]>> {
@@ -3066,7 +3066,7 @@ export namespace de_center {
3066
3066
  >(inspectRes);
3067
3067
  }
3068
3068
  export async function offset<T0 = any, T1 = any>(
3069
- client: SuiClient,
3069
+ client: SuiJsonRpcClient,
3070
3070
  args: [string],
3071
3071
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3072
3072
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3082,7 +3082,7 @@ export namespace de_center {
3082
3082
  );
3083
3083
  }
3084
3084
  export async function packageVersion(
3085
- client: SuiClient,
3085
+ client: SuiJsonRpcClient,
3086
3086
  args: [],
3087
3087
  ): Promise<TypedDevInspectResults<[bigint]>> {
3088
3088
  const tx = new Transaction();
@@ -3097,7 +3097,7 @@ export namespace de_center {
3097
3097
  );
3098
3098
  }
3099
3099
  export async function penaltyFeeAdmin<T0 = any, T1 = any>(
3100
- client: SuiClient,
3100
+ client: SuiJsonRpcClient,
3101
3101
  args: [string],
3102
3102
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3103
3103
  ): Promise<
@@ -3115,7 +3115,7 @@ export namespace de_center {
3115
3115
  >(inspectRes);
3116
3116
  }
3117
3117
  export async function penaltyFeeBalance<T0 = any, T1 = any>(
3118
- client: SuiClient,
3118
+ client: SuiJsonRpcClient,
3119
3119
  args: [string],
3120
3120
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3121
3121
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -3131,7 +3131,7 @@ export namespace de_center {
3131
3131
  );
3132
3132
  }
3133
3133
  export async function penaltyFeeBps<T0 = any, T1 = any>(
3134
- client: SuiClient,
3134
+ client: SuiJsonRpcClient,
3135
3135
  args: [string],
3136
3136
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3137
3137
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3147,7 +3147,7 @@ export namespace de_center {
3147
3147
  );
3148
3148
  }
3149
3149
  export async function penaltyInfo<T0 = any, T1 = any>(
3150
- client: SuiClient,
3150
+ client: SuiJsonRpcClient,
3151
3151
  args: [string],
3152
3152
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3153
3153
  ): Promise<TypedDevInspectResults<[number[], number[]]>> {
@@ -3163,7 +3163,7 @@ export namespace de_center {
3163
3163
  >(inspectRes);
3164
3164
  }
3165
3165
  export async function penaltyInfoElapsedPercentage(
3166
- client: SuiClient,
3166
+ client: SuiJsonRpcClient,
3167
3167
  args: [string],
3168
3168
  ): Promise<TypedDevInspectResults<[number]>> {
3169
3169
  const tx = new Transaction();
@@ -3178,7 +3178,7 @@ export namespace de_center {
3178
3178
  );
3179
3179
  }
3180
3180
  export async function penaltyInfoPenaltyPercentage(
3181
- client: SuiClient,
3181
+ client: SuiJsonRpcClient,
3182
3182
  args: [string],
3183
3183
  ): Promise<TypedDevInspectResults<[number]>> {
3184
3184
  const tx = new Transaction();
@@ -3193,7 +3193,7 @@ export namespace de_center {
3193
3193
  );
3194
3194
  }
3195
3195
  export async function penaltyReserve<T0 = any, T1 = any>(
3196
- client: SuiClient,
3196
+ client: SuiJsonRpcClient,
3197
3197
  args: [string],
3198
3198
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3199
3199
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -3209,7 +3209,7 @@ export namespace de_center {
3209
3209
  );
3210
3210
  }
3211
3211
  export async function point<T0 = any, T1 = any>(
3212
- client: SuiClient,
3212
+ client: SuiJsonRpcClient,
3213
3213
  args: [string],
3214
3214
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3215
3215
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -3225,7 +3225,7 @@ export namespace de_center {
3225
3225
  );
3226
3226
  }
3227
3227
  export async function removePenalty<T0 = any, T1 = any>(
3228
- client: SuiClient,
3228
+ client: SuiJsonRpcClient,
3229
3229
  args: [string, string, number],
3230
3230
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3231
3231
  ): Promise<TypedDevInspectResults<[]>> {
@@ -3241,7 +3241,7 @@ export namespace de_center {
3241
3241
  );
3242
3242
  }
3243
3243
  export async function removePenaltyFeeAdmin<T0 = any, T1 = any>(
3244
- client: SuiClient,
3244
+ client: SuiJsonRpcClient,
3245
3245
  args: [string, string],
3246
3246
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3247
3247
  ): Promise<TypedDevInspectResults<[]>> {
@@ -3261,7 +3261,7 @@ export namespace de_center {
3261
3261
  T1 = any,
3262
3262
  T2 = any,
3263
3263
  >(
3264
- client: SuiClient,
3264
+ client: SuiJsonRpcClient,
3265
3265
  args: [string, string],
3266
3266
  typeArguments: [
3267
3267
  TypeDescriptor<T0> | string,
@@ -3281,7 +3281,7 @@ export namespace de_center {
3281
3281
  );
3282
3282
  }
3283
3283
  export async function removeVersion<T0 = any, T1 = any>(
3284
- client: SuiClient,
3284
+ client: SuiJsonRpcClient,
3285
3285
  args: [string, string, bigint],
3286
3286
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3287
3287
  ): Promise<TypedDevInspectResults<[]>> {
@@ -3297,7 +3297,7 @@ export namespace de_center {
3297
3297
  );
3298
3298
  }
3299
3299
  export async function removeWhitelist<T0 = any, T1 = any, T2 = any>(
3300
- client: SuiClient,
3300
+ client: SuiJsonRpcClient,
3301
3301
  args: [string, string],
3302
3302
  typeArguments: [
3303
3303
  TypeDescriptor<T0> | string,
@@ -3317,7 +3317,7 @@ export namespace de_center {
3317
3317
  );
3318
3318
  }
3319
3319
  export async function responseCheckRule<T0 = any, T1 = any, T2 = any>(
3320
- client: SuiClient,
3320
+ client: SuiJsonRpcClient,
3321
3321
  args: [string, T2],
3322
3322
  typeArguments: [
3323
3323
  TypeDescriptor<T0> | string,
@@ -3337,7 +3337,7 @@ export namespace de_center {
3337
3337
  );
3338
3338
  }
3339
3339
  export async function responseChecklists<T0 = any, T1 = any>(
3340
- client: SuiClient,
3340
+ client: SuiJsonRpcClient,
3341
3341
  args: [string],
3342
3342
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3343
3343
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -3353,7 +3353,7 @@ export namespace de_center {
3353
3353
  );
3354
3354
  }
3355
3355
  export async function roundDownWeek(
3356
- client: SuiClient,
3356
+ client: SuiJsonRpcClient,
3357
3357
  args: [bigint],
3358
3358
  ): Promise<TypedDevInspectResults<[bigint]>> {
3359
3359
  const tx = new Transaction();
@@ -3368,7 +3368,7 @@ export namespace de_center {
3368
3368
  );
3369
3369
  }
3370
3370
  export async function scaling(
3371
- client: SuiClient,
3371
+ client: SuiJsonRpcClient,
3372
3372
  args: [],
3373
3373
  ): Promise<TypedDevInspectResults<[bigint]>> {
3374
3374
  const tx = new Transaction();
@@ -3383,7 +3383,7 @@ export namespace de_center {
3383
3383
  );
3384
3384
  }
3385
3385
  export async function toVestingTokenUpdateResponse<T0 = any, T1 = any>(
3386
- client: SuiClient,
3386
+ client: SuiJsonRpcClient,
3387
3387
  args: [string, action.Action, string],
3388
3388
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3389
3389
  ): Promise<
@@ -3401,7 +3401,7 @@ export namespace de_center {
3401
3401
  >(inspectRes);
3402
3402
  }
3403
3403
  export async function totalVotingWeight<T0 = any, T1 = any>(
3404
- client: SuiClient,
3404
+ client: SuiJsonRpcClient,
3405
3405
  args: [string, string],
3406
3406
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3407
3407
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3417,7 +3417,7 @@ export namespace de_center {
3417
3417
  );
3418
3418
  }
3419
3419
  export async function totalVotingWeightAt<T0 = any, T1 = any>(
3420
- client: SuiClient,
3420
+ client: SuiJsonRpcClient,
3421
3421
  args: [string, bigint],
3422
3422
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3423
3423
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3433,7 +3433,7 @@ export namespace de_center {
3433
3433
  );
3434
3434
  }
3435
3435
  export async function unlock<T0 = any, T1 = any>(
3436
- client: SuiClient,
3436
+ client: SuiJsonRpcClient,
3437
3437
  args: [string, de_token.DeToken<T0, T1>, string],
3438
3438
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3439
3439
  ): Promise<
@@ -3453,7 +3453,7 @@ export namespace de_center {
3453
3453
  >(inspectRes);
3454
3454
  }
3455
3455
  export async function vestingTokenUpdateResponseBalance<T0 = any, T1 = any>(
3456
- client: SuiClient,
3456
+ client: SuiJsonRpcClient,
3457
3457
  args: [string],
3458
3458
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3459
3459
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3472,7 +3472,7 @@ export namespace de_center {
3472
3472
  T0 = any,
3473
3473
  T1 = any,
3474
3474
  >(
3475
- client: SuiClient,
3475
+ client: SuiJsonRpcClient,
3476
3476
  args: [string],
3477
3477
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3478
3478
  ): Promise<
@@ -3493,7 +3493,7 @@ export namespace de_center {
3493
3493
  T0 = any,
3494
3494
  T1 = any,
3495
3495
  >(
3496
- client: SuiClient,
3496
+ client: SuiJsonRpcClient,
3497
3497
  args: [string],
3498
3498
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3499
3499
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -3509,7 +3509,7 @@ export namespace de_center {
3509
3509
  );
3510
3510
  }
3511
3511
  export async function vestingTokenUpdateResponseEnd<T0 = any, T1 = any>(
3512
- client: SuiClient,
3512
+ client: SuiJsonRpcClient,
3513
3513
  args: [string],
3514
3514
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3515
3515
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3525,7 +3525,7 @@ export namespace de_center {
3525
3525
  );
3526
3526
  }
3527
3527
  export async function vestingTokenUpdateResponseId<T0 = any, T1 = any>(
3528
- client: SuiClient,
3528
+ client: SuiJsonRpcClient,
3529
3529
  args: [string],
3530
3530
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3531
3531
  ): Promise<TypedDevInspectResults<[_0x2.object$.ID]>> {
@@ -3541,7 +3541,7 @@ export namespace de_center {
3541
3541
  >(inspectRes);
3542
3542
  }
3543
3543
  export async function vestingTokenUpdateResponseMaxTime<T0 = any, T1 = any>(
3544
- client: SuiClient,
3544
+ client: SuiJsonRpcClient,
3545
3545
  args: [string],
3546
3546
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3547
3547
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3557,7 +3557,7 @@ export namespace de_center {
3557
3557
  );
3558
3558
  }
3559
3559
  export async function vestingTokenUpdateResponsePoolId<T0 = any, T1 = any>(
3560
- client: SuiClient,
3560
+ client: SuiJsonRpcClient,
3561
3561
  args: [string],
3562
3562
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3563
3563
  ): Promise<TypedDevInspectResults<[_0x2.object$.ID]>> {
@@ -3576,7 +3576,7 @@ export namespace de_center {
3576
3576
  T0 = any,
3577
3577
  T1 = any,
3578
3578
  >(
3579
- client: SuiClient,
3579
+ client: SuiJsonRpcClient,
3580
3580
  args: [string],
3581
3581
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3582
3582
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3599,7 +3599,7 @@ export namespace de_center {
3599
3599
  T0 = any,
3600
3600
  T1 = any,
3601
3601
  >(
3602
- client: SuiClient,
3602
+ client: SuiJsonRpcClient,
3603
3603
  args: [string],
3604
3604
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3605
3605
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3615,7 +3615,7 @@ export namespace de_center {
3615
3615
  );
3616
3616
  }
3617
3617
  export async function vestingTokenupdateResponseBalance<T0 = any, T1 = any>(
3618
- client: SuiClient,
3618
+ client: SuiJsonRpcClient,
3619
3619
  args: [string],
3620
3620
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3621
3621
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3634,7 +3634,7 @@ export namespace de_center {
3634
3634
  T0 = any,
3635
3635
  T1 = any,
3636
3636
  >(
3637
- client: SuiClient,
3637
+ client: SuiJsonRpcClient,
3638
3638
  args: [string],
3639
3639
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3640
3640
  ): Promise<
@@ -3655,7 +3655,7 @@ export namespace de_center {
3655
3655
  T0 = any,
3656
3656
  T1 = any,
3657
3657
  >(
3658
- client: SuiClient,
3658
+ client: SuiJsonRpcClient,
3659
3659
  args: [string],
3660
3660
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3661
3661
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -3671,7 +3671,7 @@ export namespace de_center {
3671
3671
  );
3672
3672
  }
3673
3673
  export async function vestingTokenupdateResponseEnd<T0 = any, T1 = any>(
3674
- client: SuiClient,
3674
+ client: SuiJsonRpcClient,
3675
3675
  args: [string],
3676
3676
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3677
3677
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3687,7 +3687,7 @@ export namespace de_center {
3687
3687
  );
3688
3688
  }
3689
3689
  export async function vestingTokenupdateResponseId<T0 = any, T1 = any>(
3690
- client: SuiClient,
3690
+ client: SuiJsonRpcClient,
3691
3691
  args: [string],
3692
3692
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3693
3693
  ): Promise<TypedDevInspectResults<[_0x2.object$.ID]>> {
@@ -3703,7 +3703,7 @@ export namespace de_center {
3703
3703
  >(inspectRes);
3704
3704
  }
3705
3705
  export async function vestingTokenupdateResponseMaxTime<T0 = any, T1 = any>(
3706
- client: SuiClient,
3706
+ client: SuiJsonRpcClient,
3707
3707
  args: [string],
3708
3708
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3709
3709
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3719,7 +3719,7 @@ export namespace de_center {
3719
3719
  );
3720
3720
  }
3721
3721
  export async function vestingTokenupdateResponsePoolId<T0 = any, T1 = any>(
3722
- client: SuiClient,
3722
+ client: SuiJsonRpcClient,
3723
3723
  args: [string],
3724
3724
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3725
3725
  ): Promise<TypedDevInspectResults<[_0x2.object$.ID]>> {
@@ -3738,7 +3738,7 @@ export namespace de_center {
3738
3738
  T0 = any,
3739
3739
  T1 = any,
3740
3740
  >(
3741
- client: SuiClient,
3741
+ client: SuiJsonRpcClient,
3742
3742
  args: [string],
3743
3743
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3744
3744
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3761,7 +3761,7 @@ export namespace de_center {
3761
3761
  T0 = any,
3762
3762
  T1 = any,
3763
3763
  >(
3764
- client: SuiClient,
3764
+ client: SuiJsonRpcClient,
3765
3765
  args: [string],
3766
3766
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3767
3767
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -3777,7 +3777,7 @@ export namespace de_center {
3777
3777
  );
3778
3778
  }
3779
3779
  export async function week(
3780
- client: SuiClient,
3780
+ client: SuiJsonRpcClient,
3781
3781
  args: [],
3782
3782
  ): Promise<TypedDevInspectResults<[bigint]>> {
3783
3783
  const tx = new Transaction();
@@ -3792,7 +3792,7 @@ export namespace de_center {
3792
3792
  );
3793
3793
  }
3794
3794
  export async function whitelist<T0 = any, T1 = any>(
3795
- client: SuiClient,
3795
+ client: SuiJsonRpcClient,
3796
3796
  args: [string],
3797
3797
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3798
3798
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -3808,7 +3808,7 @@ export namespace de_center {
3808
3808
  );
3809
3809
  }
3810
3810
  export async function withdrawPenaltyFee<T0 = any, T1 = any>(
3811
- client: SuiClient,
3811
+ client: SuiJsonRpcClient,
3812
3812
  args: [string, string, bigint],
3813
3813
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
3814
3814
  ): Promise<TypedDevInspectResults<[_0x2.balance.Balance<T0>]>> {
@@ -3824,7 +3824,7 @@ export namespace de_center {
3824
3824
  >(inspectRes);
3825
3825
  }
3826
3826
  export async function withdrawPenaltyReserve<T0 = any, T1 = any, T2 = any>(
3827
- client: SuiClient,
3827
+ client: SuiJsonRpcClient,
3828
3828
  args: [string, T2, bigint],
3829
3829
  typeArguments: [
3830
3830
  TypeDescriptor<T0> | string,
@@ -4466,7 +4466,7 @@ export namespace de_token {
4466
4466
  }
4467
4467
  export namespace view {
4468
4468
  export async function balance<T0 = any, T1 = any>(
4469
- client: SuiClient,
4469
+ client: SuiJsonRpcClient,
4470
4470
  args: [string],
4471
4471
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4472
4472
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4482,7 +4482,7 @@ export namespace de_token {
4482
4482
  );
4483
4483
  }
4484
4484
  export async function calculateBias(
4485
- client: SuiClient,
4485
+ client: SuiJsonRpcClient,
4486
4486
  args: [bigint, bigint, bigint, bigint],
4487
4487
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
4488
4488
  const tx = new Transaction();
@@ -4497,7 +4497,7 @@ export namespace de_token {
4497
4497
  );
4498
4498
  }
4499
4499
  export async function calculateBiasBySlope(
4500
- client: SuiClient,
4500
+ client: SuiJsonRpcClient,
4501
4501
  args: [i128.I128, bigint, bigint],
4502
4502
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
4503
4503
  const tx = new Transaction();
@@ -4512,7 +4512,7 @@ export namespace de_token {
4512
4512
  );
4513
4513
  }
4514
4514
  export async function calculateSlope(
4515
- client: SuiClient,
4515
+ client: SuiJsonRpcClient,
4516
4516
  args: [bigint, bigint],
4517
4517
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
4518
4518
  const tx = new Transaction();
@@ -4527,7 +4527,7 @@ export namespace de_token {
4527
4527
  );
4528
4528
  }
4529
4529
  export async function destroy<T0 = any, T1 = any>(
4530
- client: SuiClient,
4530
+ client: SuiJsonRpcClient,
4531
4531
  args: [de_token.DeToken<T0, T1>],
4532
4532
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4533
4533
  ): Promise<TypedDevInspectResults<[]>> {
@@ -4543,7 +4543,7 @@ export namespace de_token {
4543
4543
  );
4544
4544
  }
4545
4545
  export async function earlyUnlock<T0 = any, T1 = any>(
4546
- client: SuiClient,
4546
+ client: SuiJsonRpcClient,
4547
4547
  args: [string],
4548
4548
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4549
4549
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -4559,7 +4559,7 @@ export namespace de_token {
4559
4559
  );
4560
4560
  }
4561
4561
  export async function end<T0 = any, T1 = any>(
4562
- client: SuiClient,
4562
+ client: SuiJsonRpcClient,
4563
4563
  args: [string],
4564
4564
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4565
4565
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4575,7 +4575,7 @@ export namespace de_token {
4575
4575
  );
4576
4576
  }
4577
4577
  export async function escrowEpoch<T0 = any, T1 = any>(
4578
- client: SuiClient,
4578
+ client: SuiJsonRpcClient,
4579
4579
  args: [string],
4580
4580
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4581
4581
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4591,7 +4591,7 @@ export namespace de_token {
4591
4591
  );
4592
4592
  }
4593
4593
  export async function extend<T0 = any, T1 = any>(
4594
- client: SuiClient,
4594
+ client: SuiJsonRpcClient,
4595
4595
  args: [
4596
4596
  string,
4597
4597
  action.Action,
@@ -4613,7 +4613,7 @@ export namespace de_token {
4613
4613
  );
4614
4614
  }
4615
4615
  export async function isExpired<T0 = any, T1 = any>(
4616
- client: SuiClient,
4616
+ client: SuiJsonRpcClient,
4617
4617
  args: [string, string],
4618
4618
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4619
4619
  ): Promise<TypedDevInspectResults<[boolean]>> {
@@ -4629,7 +4629,7 @@ export namespace de_token {
4629
4629
  );
4630
4630
  }
4631
4631
  export async function maxTime<T0 = any, T1 = any>(
4632
- client: SuiClient,
4632
+ client: SuiJsonRpcClient,
4633
4633
  args: [string],
4634
4634
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4635
4635
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4645,7 +4645,7 @@ export namespace de_token {
4645
4645
  );
4646
4646
  }
4647
4647
  export async function multiplierI128(
4648
- client: SuiClient,
4648
+ client: SuiJsonRpcClient,
4649
4649
  args: [],
4650
4650
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
4651
4651
  const tx = new Transaction();
@@ -4660,7 +4660,7 @@ export namespace de_token {
4660
4660
  );
4661
4661
  }
4662
4662
  export async function new$<T0 = any, T1 = any>(
4663
- client: SuiClient,
4663
+ client: SuiJsonRpcClient,
4664
4664
  args: [
4665
4665
  action.Action,
4666
4666
  _0x2.coin.Coin<T0>,
@@ -4684,7 +4684,7 @@ export namespace de_token {
4684
4684
  >(inspectRes);
4685
4685
  }
4686
4686
  export async function point<T0 = any, T1 = any>(
4687
- client: SuiClient,
4687
+ client: SuiJsonRpcClient,
4688
4688
  args: [string],
4689
4689
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4690
4690
  ): Promise<TypedDevInspectResults<[string]>> {
@@ -4700,7 +4700,7 @@ export namespace de_token {
4700
4700
  );
4701
4701
  }
4702
4702
  export async function poolId<T0 = any, T1 = any>(
4703
- client: SuiClient,
4703
+ client: SuiJsonRpcClient,
4704
4704
  args: [string],
4705
4705
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4706
4706
  ): Promise<TypedDevInspectResults<[_0x2.object$.ID]>> {
@@ -4716,7 +4716,7 @@ export namespace de_token {
4716
4716
  >(inspectRes);
4717
4717
  }
4718
4718
  export async function rawVotingWeight<T0 = any, T1 = any>(
4719
- client: SuiClient,
4719
+ client: SuiJsonRpcClient,
4720
4720
  args: [string],
4721
4721
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4722
4722
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4732,7 +4732,7 @@ export namespace de_token {
4732
4732
  );
4733
4733
  }
4734
4734
  export async function updateEarlyUnlock<T0 = any, T1 = any>(
4735
- client: SuiClient,
4735
+ client: SuiJsonRpcClient,
4736
4736
  args: [string, boolean],
4737
4737
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4738
4738
  ): Promise<TypedDevInspectResults<[]>> {
@@ -4748,7 +4748,7 @@ export namespace de_token {
4748
4748
  );
4749
4749
  }
4750
4750
  export async function votingWeight<T0 = any, T1 = any>(
4751
- client: SuiClient,
4751
+ client: SuiJsonRpcClient,
4752
4752
  args: [string, string],
4753
4753
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4754
4754
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4764,7 +4764,7 @@ export namespace de_token {
4764
4764
  );
4765
4765
  }
4766
4766
  export async function votingWeightAt<T0 = any, T1 = any>(
4767
- client: SuiClient,
4767
+ client: SuiJsonRpcClient,
4768
4768
  args: [string, bigint],
4769
4769
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4770
4770
  ): Promise<TypedDevInspectResults<[bigint]>> {
@@ -4780,7 +4780,7 @@ export namespace de_token {
4780
4780
  );
4781
4781
  }
4782
4782
  export async function withdraw<T0 = any, T1 = any>(
4783
- client: SuiClient,
4783
+ client: SuiJsonRpcClient,
4784
4784
  args: [string, action.Action, bigint, string],
4785
4785
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4786
4786
  ): Promise<TypedDevInspectResults<[_0x2.coin.Coin<T0>]>> {
@@ -4796,7 +4796,7 @@ export namespace de_token {
4796
4796
  >(inspectRes);
4797
4797
  }
4798
4798
  export async function withdrawAll<T0 = any, T1 = any>(
4799
- client: SuiClient,
4799
+ client: SuiJsonRpcClient,
4800
4800
  args: [string, action.Action, string],
4801
4801
  typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
4802
4802
  ): Promise<TypedDevInspectResults<[_0x2.coin.Coin<T0>]>> {
@@ -5037,7 +5037,7 @@ export namespace i128 {
5037
5037
  }
5038
5038
  export namespace view {
5039
5039
  export async function abs(
5040
- client: SuiClient,
5040
+ client: SuiJsonRpcClient,
5041
5041
  args: [string],
5042
5042
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5043
5043
  const tx = new Transaction();
@@ -5052,7 +5052,7 @@ export namespace i128 {
5052
5052
  );
5053
5053
  }
5054
5054
  export async function add(
5055
- client: SuiClient,
5055
+ client: SuiJsonRpcClient,
5056
5056
  args: [string, string],
5057
5057
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5058
5058
  const tx = new Transaction();
@@ -5067,7 +5067,7 @@ export namespace i128 {
5067
5067
  );
5068
5068
  }
5069
5069
  export async function asU128(
5070
- client: SuiClient,
5070
+ client: SuiJsonRpcClient,
5071
5071
  args: [string],
5072
5072
  ): Promise<TypedDevInspectResults<[bigint]>> {
5073
5073
  const tx = new Transaction();
@@ -5082,7 +5082,7 @@ export namespace i128 {
5082
5082
  );
5083
5083
  }
5084
5084
  export async function compare(
5085
- client: SuiClient,
5085
+ client: SuiJsonRpcClient,
5086
5086
  args: [string, string],
5087
5087
  ): Promise<TypedDevInspectResults<[number]>> {
5088
5088
  const tx = new Transaction();
@@ -5097,7 +5097,7 @@ export namespace i128 {
5097
5097
  );
5098
5098
  }
5099
5099
  export async function div(
5100
- client: SuiClient,
5100
+ client: SuiJsonRpcClient,
5101
5101
  args: [string, string],
5102
5102
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5103
5103
  const tx = new Transaction();
@@ -5112,7 +5112,7 @@ export namespace i128 {
5112
5112
  );
5113
5113
  }
5114
5114
  export async function from$(
5115
- client: SuiClient,
5115
+ client: SuiJsonRpcClient,
5116
5116
  args: [bigint],
5117
5117
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5118
5118
  const tx = new Transaction();
@@ -5127,7 +5127,7 @@ export namespace i128 {
5127
5127
  );
5128
5128
  }
5129
5129
  export async function isNeg(
5130
- client: SuiClient,
5130
+ client: SuiJsonRpcClient,
5131
5131
  args: [string],
5132
5132
  ): Promise<TypedDevInspectResults<[boolean]>> {
5133
5133
  const tx = new Transaction();
@@ -5142,7 +5142,7 @@ export namespace i128 {
5142
5142
  );
5143
5143
  }
5144
5144
  export async function isZero(
5145
- client: SuiClient,
5145
+ client: SuiJsonRpcClient,
5146
5146
  args: [string],
5147
5147
  ): Promise<TypedDevInspectResults<[boolean]>> {
5148
5148
  const tx = new Transaction();
@@ -5157,7 +5157,7 @@ export namespace i128 {
5157
5157
  );
5158
5158
  }
5159
5159
  export async function mul(
5160
- client: SuiClient,
5160
+ client: SuiJsonRpcClient,
5161
5161
  args: [string, string],
5162
5162
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5163
5163
  const tx = new Transaction();
@@ -5172,7 +5172,7 @@ export namespace i128 {
5172
5172
  );
5173
5173
  }
5174
5174
  export async function neg(
5175
- client: SuiClient,
5175
+ client: SuiJsonRpcClient,
5176
5176
  args: [string],
5177
5177
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5178
5178
  const tx = new Transaction();
@@ -5187,7 +5187,7 @@ export namespace i128 {
5187
5187
  );
5188
5188
  }
5189
5189
  export async function negFrom(
5190
- client: SuiClient,
5190
+ client: SuiJsonRpcClient,
5191
5191
  args: [bigint],
5192
5192
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5193
5193
  const tx = new Transaction();
@@ -5202,7 +5202,7 @@ export namespace i128 {
5202
5202
  );
5203
5203
  }
5204
5204
  export async function sub(
5205
- client: SuiClient,
5205
+ client: SuiJsonRpcClient,
5206
5206
  args: [string, string],
5207
5207
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5208
5208
  const tx = new Transaction();
@@ -5217,7 +5217,7 @@ export namespace i128 {
5217
5217
  );
5218
5218
  }
5219
5219
  export async function zero(
5220
- client: SuiClient,
5220
+ client: SuiJsonRpcClient,
5221
5221
  args: [],
5222
5222
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5223
5223
  const tx = new Transaction();
@@ -5324,7 +5324,7 @@ export namespace point {
5324
5324
  }
5325
5325
  export namespace view {
5326
5326
  export async function bias(
5327
- client: SuiClient,
5327
+ client: SuiJsonRpcClient,
5328
5328
  args: [string],
5329
5329
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5330
5330
  const tx = new Transaction();
@@ -5339,7 +5339,7 @@ export namespace point {
5339
5339
  );
5340
5340
  }
5341
5341
  export async function new$(
5342
- client: SuiClient,
5342
+ client: SuiJsonRpcClient,
5343
5343
  args: [i128.I128, i128.I128, bigint],
5344
5344
  ): Promise<TypedDevInspectResults<[point.Point]>> {
5345
5345
  const tx = new Transaction();
@@ -5354,7 +5354,7 @@ export namespace point {
5354
5354
  );
5355
5355
  }
5356
5356
  export async function slope(
5357
- client: SuiClient,
5357
+ client: SuiJsonRpcClient,
5358
5358
  args: [string],
5359
5359
  ): Promise<TypedDevInspectResults<[i128.I128]>> {
5360
5360
  const tx = new Transaction();
@@ -5369,7 +5369,7 @@ export namespace point {
5369
5369
  );
5370
5370
  }
5371
5371
  export async function timestamp(
5372
- client: SuiClient,
5372
+ client: SuiJsonRpcClient,
5373
5373
  args: [string],
5374
5374
  ): Promise<TypedDevInspectResults<[bigint]>> {
5375
5375
  const tx = new Transaction();