@typemove/sui 1.5.4 → 1.5.5-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/builtin/0x1.d.ts +129 -130
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x2.d.ts +956 -957
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +291 -292
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/codegen/codegen.d.ts.map +1 -1
- package/dist/cjs/codegen/codegen.js +3 -4
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +129 -130
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +956 -957
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +291 -292
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/codegen/codegen.d.ts.map +1 -1
- package/dist/esm/codegen/codegen.js +3 -4
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/package.json +4 -4
- package/src/builtin/0x1.ts +129 -129
- package/src/builtin/0x2.ts +956 -956
- package/src/builtin/0x3.ts +291 -291
- package/src/codegen/codegen.ts +3 -4
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +9 -9
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +127 -127
- package/src/tests/types/testnet/0xdee9.ts +161 -161
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +537 -537
|
@@ -17,9 +17,9 @@ import {
|
|
|
17
17
|
import {
|
|
18
18
|
TransactionBlock,
|
|
19
19
|
TransactionArgument,
|
|
20
|
+
TransactionObjectArgument,
|
|
20
21
|
} from "@mysten/sui.js/transactions";
|
|
21
22
|
import { SuiClient } from "@mysten/sui.js/client";
|
|
22
|
-
import { type ObjectCallArg } from "@mysten/sui.js/dist/esm/builder/Inputs.js";
|
|
23
23
|
import {
|
|
24
24
|
transactionArgumentOrObject,
|
|
25
25
|
transactionArgumentOrPure,
|
|
@@ -52,8 +52,8 @@ export namespace authority {
|
|
|
52
52
|
export function addAuthorizedUser<T0 = any>(
|
|
53
53
|
tx: TransactionBlock,
|
|
54
54
|
args: [
|
|
55
|
-
string |
|
|
56
|
-
string |
|
|
55
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
56
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
57
57
|
string | TransactionArgument,
|
|
58
58
|
],
|
|
59
59
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -98,7 +98,7 @@ export namespace authority {
|
|
|
98
98
|
}
|
|
99
99
|
export function new_<T0 = any>(
|
|
100
100
|
tx: TransactionBlock,
|
|
101
|
-
args: [(string |
|
|
101
|
+
args: [(string | TransactionObjectArgument)[] | TransactionArgument],
|
|
102
102
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
103
103
|
): TransactionArgument & [TransactionArgument] {
|
|
104
104
|
const _args: any[] = [];
|
|
@@ -118,7 +118,7 @@ export namespace authority {
|
|
|
118
118
|
}
|
|
119
119
|
export function removeAll<T0 = any>(
|
|
120
120
|
tx: TransactionBlock,
|
|
121
|
-
args: [string |
|
|
121
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
122
122
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
123
123
|
): TransactionArgument & [TransactionArgument] {
|
|
124
124
|
const _args: any[] = [];
|
|
@@ -139,8 +139,8 @@ export namespace authority {
|
|
|
139
139
|
export function removeAuthorizedUser<T0 = any>(
|
|
140
140
|
tx: TransactionBlock,
|
|
141
141
|
args: [
|
|
142
|
-
string |
|
|
143
|
-
string |
|
|
142
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
143
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
144
144
|
string | TransactionArgument,
|
|
145
145
|
],
|
|
146
146
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -165,7 +165,7 @@ export namespace authority {
|
|
|
165
165
|
}
|
|
166
166
|
export function verify<T0 = any>(
|
|
167
167
|
tx: TransactionBlock,
|
|
168
|
-
args: [string |
|
|
168
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
169
169
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
170
170
|
): TransactionArgument & [TransactionArgument] {
|
|
171
171
|
const _args: any[] = [];
|
|
@@ -185,7 +185,7 @@ export namespace authority {
|
|
|
185
185
|
}
|
|
186
186
|
export function whitelist<T0 = any>(
|
|
187
187
|
tx: TransactionBlock,
|
|
188
|
-
args: [string |
|
|
188
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
189
189
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
190
190
|
): TransactionArgument & [TransactionArgument] {
|
|
191
191
|
const _args: any[] = [];
|
|
@@ -208,8 +208,8 @@ export namespace authority {
|
|
|
208
208
|
export async function addAuthorizedUser<T0 = any>(
|
|
209
209
|
client: SuiClient,
|
|
210
210
|
args: [
|
|
211
|
-
string |
|
|
212
|
-
string |
|
|
211
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
212
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
213
213
|
string | TransactionArgument,
|
|
214
214
|
],
|
|
215
215
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -243,7 +243,7 @@ export namespace authority {
|
|
|
243
243
|
}
|
|
244
244
|
export async function new_<T0 = any>(
|
|
245
245
|
client: SuiClient,
|
|
246
|
-
args: [(string |
|
|
246
|
+
args: [(string | TransactionObjectArgument)[] | TransactionArgument],
|
|
247
247
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
248
248
|
): Promise<TypedDevInspectResults<[authority.Authority<T0>]>> {
|
|
249
249
|
const tx = new TransactionBlock();
|
|
@@ -259,7 +259,7 @@ export namespace authority {
|
|
|
259
259
|
}
|
|
260
260
|
export async function removeAll<T0 = any>(
|
|
261
261
|
client: SuiClient,
|
|
262
|
-
args: [string |
|
|
262
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
263
263
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
264
264
|
): Promise<TypedDevInspectResults<[string[]]>> {
|
|
265
265
|
const tx = new TransactionBlock();
|
|
@@ -276,8 +276,8 @@ export namespace authority {
|
|
|
276
276
|
export async function removeAuthorizedUser<T0 = any>(
|
|
277
277
|
client: SuiClient,
|
|
278
278
|
args: [
|
|
279
|
-
string |
|
|
280
|
-
string |
|
|
279
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
280
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
281
281
|
string | TransactionArgument,
|
|
282
282
|
],
|
|
283
283
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -295,7 +295,7 @@ export namespace authority {
|
|
|
295
295
|
}
|
|
296
296
|
export async function verify<T0 = any>(
|
|
297
297
|
client: SuiClient,
|
|
298
|
-
args: [string |
|
|
298
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
299
299
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
300
300
|
): Promise<TypedDevInspectResults<[]>> {
|
|
301
301
|
const tx = new TransactionBlock();
|
|
@@ -311,7 +311,7 @@ export namespace authority {
|
|
|
311
311
|
}
|
|
312
312
|
export async function whitelist<T0 = any>(
|
|
313
313
|
client: SuiClient,
|
|
314
|
-
args: [string |
|
|
314
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
315
315
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
316
316
|
): Promise<TypedDevInspectResults<[string[]]>> {
|
|
317
317
|
const tx = new TransactionBlock();
|
|
@@ -524,9 +524,9 @@ export namespace dutch {
|
|
|
524
524
|
export function close<T0 = any, T1 = any>(
|
|
525
525
|
tx: TransactionBlock,
|
|
526
526
|
args: [
|
|
527
|
-
string |
|
|
527
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
528
528
|
dutch.Auction<T0, T1> | TransactionArgument,
|
|
529
|
-
string |
|
|
529
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
530
530
|
],
|
|
531
531
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
532
532
|
): TransactionArgument &
|
|
@@ -554,13 +554,13 @@ export namespace dutch {
|
|
|
554
554
|
export function delivery<T0 = any, T1 = any>(
|
|
555
555
|
tx: TransactionBlock,
|
|
556
556
|
args: [
|
|
557
|
-
string |
|
|
557
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
558
558
|
dutch.Auction<T0, T1> | TransactionArgument,
|
|
559
559
|
bigint | TransactionArgument,
|
|
560
560
|
bigint | TransactionArgument,
|
|
561
561
|
bigint | TransactionArgument,
|
|
562
562
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
563
|
-
string |
|
|
563
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
564
564
|
],
|
|
565
565
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
566
566
|
): TransactionArgument &
|
|
@@ -599,7 +599,7 @@ export namespace dutch {
|
|
|
599
599
|
}
|
|
600
600
|
export function getAuctionBids<T0 = any, T1 = any>(
|
|
601
601
|
tx: TransactionBlock,
|
|
602
|
-
args: [string |
|
|
602
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
603
603
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
604
604
|
): TransactionArgument & [TransactionArgument] {
|
|
605
605
|
const _args: any[] = [];
|
|
@@ -622,7 +622,7 @@ export namespace dutch {
|
|
|
622
622
|
}
|
|
623
623
|
export function getAuctionPeriod<T0 = any, T1 = any>(
|
|
624
624
|
tx: TransactionBlock,
|
|
625
|
-
args: [string |
|
|
625
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
626
626
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
627
627
|
): TransactionArgument & [TransactionArgument] {
|
|
628
628
|
const _args: any[] = [];
|
|
@@ -645,7 +645,7 @@ export namespace dutch {
|
|
|
645
645
|
}
|
|
646
646
|
export function getBidIndex<T0 = any, T1 = any>(
|
|
647
647
|
tx: TransactionBlock,
|
|
648
|
-
args: [string |
|
|
648
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
649
649
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
650
650
|
): TransactionArgument & [TransactionArgument] {
|
|
651
651
|
const _args: any[] = [];
|
|
@@ -669,8 +669,8 @@ export namespace dutch {
|
|
|
669
669
|
export function getDecayedPrice<T0 = any, T1 = any>(
|
|
670
670
|
tx: TransactionBlock,
|
|
671
671
|
args: [
|
|
672
|
-
string |
|
|
673
|
-
string |
|
|
672
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
673
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
674
674
|
],
|
|
675
675
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
676
676
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -695,7 +695,7 @@ export namespace dutch {
|
|
|
695
695
|
}
|
|
696
696
|
export function getOwnerships<T0 = any, T1 = any>(
|
|
697
697
|
tx: TransactionBlock,
|
|
698
|
-
args: [string |
|
|
698
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
699
699
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
700
700
|
): TransactionArgument & [TransactionArgument] {
|
|
701
701
|
const _args: any[] = [];
|
|
@@ -719,7 +719,7 @@ export namespace dutch {
|
|
|
719
719
|
export function getUserBidInfo<T0 = any, T1 = any>(
|
|
720
720
|
tx: TransactionBlock,
|
|
721
721
|
args: [
|
|
722
|
-
string |
|
|
722
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
723
723
|
bigint | TransactionArgument,
|
|
724
724
|
],
|
|
725
725
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -789,14 +789,14 @@ export namespace dutch {
|
|
|
789
789
|
export function newBid<T0 = any, T1 = any, T2 = any>(
|
|
790
790
|
tx: TransactionBlock,
|
|
791
791
|
args: [
|
|
792
|
-
string |
|
|
792
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
793
793
|
bigint | TransactionArgument,
|
|
794
794
|
bigint | TransactionArgument,
|
|
795
795
|
bigint | TransactionArgument,
|
|
796
796
|
bigint | TransactionArgument,
|
|
797
|
-
(string |
|
|
798
|
-
string |
|
|
799
|
-
string |
|
|
797
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
798
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
799
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
800
800
|
],
|
|
801
801
|
typeArguments: [
|
|
802
802
|
TypeDescriptor<T0> | string,
|
|
@@ -845,9 +845,9 @@ export namespace dutch {
|
|
|
845
845
|
export function removeBid<T0 = any, T1 = any>(
|
|
846
846
|
tx: TransactionBlock,
|
|
847
847
|
args: [
|
|
848
|
-
string |
|
|
848
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
849
849
|
bigint | TransactionArgument,
|
|
850
|
-
string |
|
|
850
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
851
851
|
],
|
|
852
852
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
853
853
|
): TransactionArgument &
|
|
@@ -874,7 +874,7 @@ export namespace dutch {
|
|
|
874
874
|
}
|
|
875
875
|
export function totalBidSize<T0 = any, T1 = any>(
|
|
876
876
|
tx: TransactionBlock,
|
|
877
|
-
args: [string |
|
|
877
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
878
878
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
879
879
|
): TransactionArgument & [TransactionArgument] {
|
|
880
880
|
const _args: any[] = [];
|
|
@@ -898,8 +898,8 @@ export namespace dutch {
|
|
|
898
898
|
export function updateRemoveBidAbility<T0 = any, T1 = any>(
|
|
899
899
|
tx: TransactionBlock,
|
|
900
900
|
args: [
|
|
901
|
-
string |
|
|
902
|
-
string |
|
|
901
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
902
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
903
903
|
Boolean | TransactionArgument,
|
|
904
904
|
],
|
|
905
905
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -930,9 +930,9 @@ export namespace dutch {
|
|
|
930
930
|
export async function close<T0 = any, T1 = any>(
|
|
931
931
|
client: SuiClient,
|
|
932
932
|
args: [
|
|
933
|
-
string |
|
|
933
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
934
934
|
dutch.Auction<T0, T1> | TransactionArgument,
|
|
935
|
-
string |
|
|
935
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
936
936
|
],
|
|
937
937
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
938
938
|
): Promise<TypedDevInspectResults<[]>> {
|
|
@@ -950,13 +950,13 @@ export namespace dutch {
|
|
|
950
950
|
export async function delivery<T0 = any, T1 = any>(
|
|
951
951
|
client: SuiClient,
|
|
952
952
|
args: [
|
|
953
|
-
string |
|
|
953
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
954
954
|
dutch.Auction<T0, T1> | TransactionArgument,
|
|
955
955
|
bigint | TransactionArgument,
|
|
956
956
|
bigint | TransactionArgument,
|
|
957
957
|
bigint | TransactionArgument,
|
|
958
958
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
959
|
-
string |
|
|
959
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
960
960
|
],
|
|
961
961
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
962
962
|
): Promise<
|
|
@@ -993,7 +993,7 @@ export namespace dutch {
|
|
|
993
993
|
}
|
|
994
994
|
export async function getAuctionBids<T0 = any, T1 = any>(
|
|
995
995
|
client: SuiClient,
|
|
996
|
-
args: [string |
|
|
996
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
997
997
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
998
998
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
999
999
|
const tx = new TransactionBlock();
|
|
@@ -1009,7 +1009,7 @@ export namespace dutch {
|
|
|
1009
1009
|
}
|
|
1010
1010
|
export async function getAuctionPeriod<T0 = any, T1 = any>(
|
|
1011
1011
|
client: SuiClient,
|
|
1012
|
-
args: [string |
|
|
1012
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1013
1013
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1014
1014
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
1015
1015
|
const tx = new TransactionBlock();
|
|
@@ -1025,7 +1025,7 @@ export namespace dutch {
|
|
|
1025
1025
|
}
|
|
1026
1026
|
export async function getBidIndex<T0 = any, T1 = any>(
|
|
1027
1027
|
client: SuiClient,
|
|
1028
|
-
args: [string |
|
|
1028
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1029
1029
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1030
1030
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1031
1031
|
const tx = new TransactionBlock();
|
|
@@ -1042,8 +1042,8 @@ export namespace dutch {
|
|
|
1042
1042
|
export async function getDecayedPrice<T0 = any, T1 = any>(
|
|
1043
1043
|
client: SuiClient,
|
|
1044
1044
|
args: [
|
|
1045
|
-
string |
|
|
1046
|
-
string |
|
|
1045
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1046
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1047
1047
|
],
|
|
1048
1048
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1049
1049
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
@@ -1060,7 +1060,7 @@ export namespace dutch {
|
|
|
1060
1060
|
}
|
|
1061
1061
|
export async function getOwnerships<T0 = any, T1 = any>(
|
|
1062
1062
|
client: SuiClient,
|
|
1063
|
-
args: [string |
|
|
1063
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1064
1064
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1065
1065
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
1066
1066
|
const tx = new TransactionBlock();
|
|
@@ -1077,7 +1077,7 @@ export namespace dutch {
|
|
|
1077
1077
|
export async function getUserBidInfo<T0 = any, T1 = any>(
|
|
1078
1078
|
client: SuiClient,
|
|
1079
1079
|
args: [
|
|
1080
|
-
string |
|
|
1080
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1081
1081
|
bigint | TransactionArgument,
|
|
1082
1082
|
],
|
|
1083
1083
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1121,14 +1121,14 @@ export namespace dutch {
|
|
|
1121
1121
|
export async function newBid<T0 = any, T1 = any, T2 = any>(
|
|
1122
1122
|
client: SuiClient,
|
|
1123
1123
|
args: [
|
|
1124
|
-
string |
|
|
1124
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1125
1125
|
bigint | TransactionArgument,
|
|
1126
1126
|
bigint | TransactionArgument,
|
|
1127
1127
|
bigint | TransactionArgument,
|
|
1128
1128
|
bigint | TransactionArgument,
|
|
1129
|
-
(string |
|
|
1130
|
-
string |
|
|
1131
|
-
string |
|
|
1129
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1130
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1131
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1132
1132
|
],
|
|
1133
1133
|
typeArguments: [
|
|
1134
1134
|
TypeDescriptor<T0> | string,
|
|
@@ -1152,9 +1152,9 @@ export namespace dutch {
|
|
|
1152
1152
|
export async function removeBid<T0 = any, T1 = any>(
|
|
1153
1153
|
client: SuiClient,
|
|
1154
1154
|
args: [
|
|
1155
|
-
string |
|
|
1155
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1156
1156
|
bigint | TransactionArgument,
|
|
1157
|
-
string |
|
|
1157
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1158
1158
|
],
|
|
1159
1159
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1160
1160
|
): Promise<TypedDevInspectResults<[]>> {
|
|
@@ -1171,7 +1171,7 @@ export namespace dutch {
|
|
|
1171
1171
|
}
|
|
1172
1172
|
export async function totalBidSize<T0 = any, T1 = any>(
|
|
1173
1173
|
client: SuiClient,
|
|
1174
|
-
args: [string |
|
|
1174
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1175
1175
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1176
1176
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1177
1177
|
const tx = new TransactionBlock();
|
|
@@ -1188,8 +1188,8 @@ export namespace dutch {
|
|
|
1188
1188
|
export async function updateRemoveBidAbility<T0 = any, T1 = any>(
|
|
1189
1189
|
client: SuiClient,
|
|
1190
1190
|
args: [
|
|
1191
|
-
string |
|
|
1192
|
-
string |
|
|
1191
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1192
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1193
1193
|
Boolean | TransactionArgument,
|
|
1194
1194
|
],
|
|
1195
1195
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1232,7 +1232,7 @@ export namespace i64 {
|
|
|
1232
1232
|
export namespace builder {
|
|
1233
1233
|
export function abs(
|
|
1234
1234
|
tx: TransactionBlock,
|
|
1235
|
-
args: [string |
|
|
1235
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1236
1236
|
): TransactionArgument & [TransactionArgument] {
|
|
1237
1237
|
const _args: any[] = [];
|
|
1238
1238
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1247,8 +1247,8 @@ export namespace i64 {
|
|
|
1247
1247
|
export function add(
|
|
1248
1248
|
tx: TransactionBlock,
|
|
1249
1249
|
args: [
|
|
1250
|
-
string |
|
|
1251
|
-
string |
|
|
1250
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1251
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1252
1252
|
],
|
|
1253
1253
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1254
1254
|
const _args: any[] = [];
|
|
@@ -1264,7 +1264,7 @@ export namespace i64 {
|
|
|
1264
1264
|
}
|
|
1265
1265
|
export function asU64(
|
|
1266
1266
|
tx: TransactionBlock,
|
|
1267
|
-
args: [string |
|
|
1267
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1268
1268
|
): TransactionArgument & [TransactionArgument] {
|
|
1269
1269
|
const _args: any[] = [];
|
|
1270
1270
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1279,8 +1279,8 @@ export namespace i64 {
|
|
|
1279
1279
|
export function compare(
|
|
1280
1280
|
tx: TransactionBlock,
|
|
1281
1281
|
args: [
|
|
1282
|
-
string |
|
|
1283
|
-
string |
|
|
1282
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1283
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1284
1284
|
],
|
|
1285
1285
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1286
1286
|
const _args: any[] = [];
|
|
@@ -1297,8 +1297,8 @@ export namespace i64 {
|
|
|
1297
1297
|
export function div(
|
|
1298
1298
|
tx: TransactionBlock,
|
|
1299
1299
|
args: [
|
|
1300
|
-
string |
|
|
1301
|
-
string |
|
|
1300
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1301
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1302
1302
|
],
|
|
1303
1303
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1304
1304
|
const _args: any[] = [];
|
|
@@ -1328,7 +1328,7 @@ export namespace i64 {
|
|
|
1328
1328
|
}
|
|
1329
1329
|
export function isNeg(
|
|
1330
1330
|
tx: TransactionBlock,
|
|
1331
|
-
args: [string |
|
|
1331
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1332
1332
|
): TransactionArgument & [TransactionArgument] {
|
|
1333
1333
|
const _args: any[] = [];
|
|
1334
1334
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1342,7 +1342,7 @@ export namespace i64 {
|
|
|
1342
1342
|
}
|
|
1343
1343
|
export function isZero(
|
|
1344
1344
|
tx: TransactionBlock,
|
|
1345
|
-
args: [string |
|
|
1345
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1346
1346
|
): TransactionArgument & [TransactionArgument] {
|
|
1347
1347
|
const _args: any[] = [];
|
|
1348
1348
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1357,8 +1357,8 @@ export namespace i64 {
|
|
|
1357
1357
|
export function mul(
|
|
1358
1358
|
tx: TransactionBlock,
|
|
1359
1359
|
args: [
|
|
1360
|
-
string |
|
|
1361
|
-
string |
|
|
1360
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1361
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1362
1362
|
],
|
|
1363
1363
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1364
1364
|
const _args: any[] = [];
|
|
@@ -1374,7 +1374,7 @@ export namespace i64 {
|
|
|
1374
1374
|
}
|
|
1375
1375
|
export function neg(
|
|
1376
1376
|
tx: TransactionBlock,
|
|
1377
|
-
args: [string |
|
|
1377
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1378
1378
|
): TransactionArgument & [TransactionArgument] {
|
|
1379
1379
|
const _args: any[] = [];
|
|
1380
1380
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1403,8 +1403,8 @@ export namespace i64 {
|
|
|
1403
1403
|
export function sub(
|
|
1404
1404
|
tx: TransactionBlock,
|
|
1405
1405
|
args: [
|
|
1406
|
-
string |
|
|
1407
|
-
string |
|
|
1406
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1407
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1408
1408
|
],
|
|
1409
1409
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1410
1410
|
const _args: any[] = [];
|
|
@@ -1435,7 +1435,7 @@ export namespace i64 {
|
|
|
1435
1435
|
export namespace view {
|
|
1436
1436
|
export async function abs(
|
|
1437
1437
|
client: SuiClient,
|
|
1438
|
-
args: [string |
|
|
1438
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1439
1439
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1440
1440
|
const tx = new TransactionBlock();
|
|
1441
1441
|
builder.abs(tx, args);
|
|
@@ -1451,8 +1451,8 @@ export namespace i64 {
|
|
|
1451
1451
|
export async function add(
|
|
1452
1452
|
client: SuiClient,
|
|
1453
1453
|
args: [
|
|
1454
|
-
string |
|
|
1455
|
-
string |
|
|
1454
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1455
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1456
1456
|
],
|
|
1457
1457
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1458
1458
|
const tx = new TransactionBlock();
|
|
@@ -1468,7 +1468,7 @@ export namespace i64 {
|
|
|
1468
1468
|
}
|
|
1469
1469
|
export async function asU64(
|
|
1470
1470
|
client: SuiClient,
|
|
1471
|
-
args: [string |
|
|
1471
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1472
1472
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
1473
1473
|
const tx = new TransactionBlock();
|
|
1474
1474
|
builder.asU64(tx, args);
|
|
@@ -1484,8 +1484,8 @@ export namespace i64 {
|
|
|
1484
1484
|
export async function compare(
|
|
1485
1485
|
client: SuiClient,
|
|
1486
1486
|
args: [
|
|
1487
|
-
string |
|
|
1488
|
-
string |
|
|
1487
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1488
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1489
1489
|
],
|
|
1490
1490
|
): Promise<TypedDevInspectResults<[number]>> {
|
|
1491
1491
|
const tx = new TransactionBlock();
|
|
@@ -1502,8 +1502,8 @@ export namespace i64 {
|
|
|
1502
1502
|
export async function div(
|
|
1503
1503
|
client: SuiClient,
|
|
1504
1504
|
args: [
|
|
1505
|
-
string |
|
|
1506
|
-
string |
|
|
1505
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1506
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1507
1507
|
],
|
|
1508
1508
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1509
1509
|
const tx = new TransactionBlock();
|
|
@@ -1534,7 +1534,7 @@ export namespace i64 {
|
|
|
1534
1534
|
}
|
|
1535
1535
|
export async function isNeg(
|
|
1536
1536
|
client: SuiClient,
|
|
1537
|
-
args: [string |
|
|
1537
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1538
1538
|
): Promise<TypedDevInspectResults<[Boolean]>> {
|
|
1539
1539
|
const tx = new TransactionBlock();
|
|
1540
1540
|
builder.isNeg(tx, args);
|
|
@@ -1549,7 +1549,7 @@ export namespace i64 {
|
|
|
1549
1549
|
}
|
|
1550
1550
|
export async function isZero(
|
|
1551
1551
|
client: SuiClient,
|
|
1552
|
-
args: [string |
|
|
1552
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1553
1553
|
): Promise<TypedDevInspectResults<[Boolean]>> {
|
|
1554
1554
|
const tx = new TransactionBlock();
|
|
1555
1555
|
builder.isZero(tx, args);
|
|
@@ -1565,8 +1565,8 @@ export namespace i64 {
|
|
|
1565
1565
|
export async function mul(
|
|
1566
1566
|
client: SuiClient,
|
|
1567
1567
|
args: [
|
|
1568
|
-
string |
|
|
1569
|
-
string |
|
|
1568
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1569
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1570
1570
|
],
|
|
1571
1571
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1572
1572
|
const tx = new TransactionBlock();
|
|
@@ -1582,7 +1582,7 @@ export namespace i64 {
|
|
|
1582
1582
|
}
|
|
1583
1583
|
export async function neg(
|
|
1584
1584
|
client: SuiClient,
|
|
1585
|
-
args: [string |
|
|
1585
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1586
1586
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1587
1587
|
const tx = new TransactionBlock();
|
|
1588
1588
|
builder.neg(tx, args);
|
|
@@ -1613,8 +1613,8 @@ export namespace i64 {
|
|
|
1613
1613
|
export async function sub(
|
|
1614
1614
|
client: SuiClient,
|
|
1615
1615
|
args: [
|
|
1616
|
-
string |
|
|
1617
|
-
string |
|
|
1616
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1617
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1618
1618
|
],
|
|
1619
1619
|
): Promise<TypedDevInspectResults<[i64.I64]>> {
|
|
1620
1620
|
const tx = new TransactionBlock();
|
|
@@ -1700,8 +1700,8 @@ export namespace linked_list {
|
|
|
1700
1700
|
export function borrow<T0 = any, T1 = any>(
|
|
1701
1701
|
tx: TransactionBlock,
|
|
1702
1702
|
args: [
|
|
1703
|
-
string |
|
|
1704
|
-
string |
|
|
1703
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1704
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1705
1705
|
T0 | TransactionArgument,
|
|
1706
1706
|
],
|
|
1707
1707
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1730,8 +1730,8 @@ export namespace linked_list {
|
|
|
1730
1730
|
export function borrowMut<T0 = any, T1 = any>(
|
|
1731
1731
|
tx: TransactionBlock,
|
|
1732
1732
|
args: [
|
|
1733
|
-
string |
|
|
1734
|
-
string |
|
|
1733
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1734
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1735
1735
|
T0 | TransactionArgument,
|
|
1736
1736
|
],
|
|
1737
1737
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1760,8 +1760,8 @@ export namespace linked_list {
|
|
|
1760
1760
|
export function chain<T0 = any, T1 = any>(
|
|
1761
1761
|
tx: TransactionBlock,
|
|
1762
1762
|
args: [
|
|
1763
|
-
string |
|
|
1764
|
-
string |
|
|
1763
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1764
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1765
1765
|
],
|
|
1766
1766
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1767
1767
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -1787,8 +1787,8 @@ export namespace linked_list {
|
|
|
1787
1787
|
export function contains<T0 = any, T1 = any>(
|
|
1788
1788
|
tx: TransactionBlock,
|
|
1789
1789
|
args: [
|
|
1790
|
-
string |
|
|
1791
|
-
string |
|
|
1790
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1791
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1792
1792
|
T0 | TransactionArgument,
|
|
1793
1793
|
],
|
|
1794
1794
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1817,8 +1817,8 @@ export namespace linked_list {
|
|
|
1817
1817
|
export function delete_<T0 = any, T1 = any>(
|
|
1818
1818
|
tx: TransactionBlock,
|
|
1819
1819
|
args: [
|
|
1820
|
-
string |
|
|
1821
|
-
string |
|
|
1820
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1821
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1822
1822
|
T0 | TransactionArgument,
|
|
1823
1823
|
],
|
|
1824
1824
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1846,7 +1846,7 @@ export namespace linked_list {
|
|
|
1846
1846
|
}
|
|
1847
1847
|
export function first<T0 = any, T1 = any>(
|
|
1848
1848
|
tx: TransactionBlock,
|
|
1849
|
-
args: [string |
|
|
1849
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1850
1850
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1851
1851
|
): TransactionArgument & [TransactionArgument] {
|
|
1852
1852
|
const _args: any[] = [];
|
|
@@ -1869,7 +1869,7 @@ export namespace linked_list {
|
|
|
1869
1869
|
}
|
|
1870
1870
|
export function isEmpty<T0 = any, T1 = any>(
|
|
1871
1871
|
tx: TransactionBlock,
|
|
1872
|
-
args: [string |
|
|
1872
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1873
1873
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1874
1874
|
): TransactionArgument & [TransactionArgument] {
|
|
1875
1875
|
const _args: any[] = [];
|
|
@@ -1892,7 +1892,7 @@ export namespace linked_list {
|
|
|
1892
1892
|
}
|
|
1893
1893
|
export function last<T0 = any, T1 = any>(
|
|
1894
1894
|
tx: TransactionBlock,
|
|
1895
|
-
args: [string |
|
|
1895
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1896
1896
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1897
1897
|
): TransactionArgument & [TransactionArgument] {
|
|
1898
1898
|
const _args: any[] = [];
|
|
@@ -1915,7 +1915,7 @@ export namespace linked_list {
|
|
|
1915
1915
|
}
|
|
1916
1916
|
export function length<T0 = any, T1 = any>(
|
|
1917
1917
|
tx: TransactionBlock,
|
|
1918
|
-
args: [string |
|
|
1918
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
1919
1919
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1920
1920
|
): TransactionArgument & [TransactionArgument] {
|
|
1921
1921
|
const _args: any[] = [];
|
|
@@ -1992,8 +1992,8 @@ export namespace linked_list {
|
|
|
1992
1992
|
export function next<T0 = any, T1 = any>(
|
|
1993
1993
|
tx: TransactionBlock,
|
|
1994
1994
|
args: [
|
|
1995
|
-
string |
|
|
1996
|
-
string |
|
|
1995
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1996
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
1997
1997
|
T0 | TransactionArgument,
|
|
1998
1998
|
],
|
|
1999
1999
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2022,8 +2022,8 @@ export namespace linked_list {
|
|
|
2022
2022
|
export function popBack<T0 = any, T1 = any>(
|
|
2023
2023
|
tx: TransactionBlock,
|
|
2024
2024
|
args: [
|
|
2025
|
-
string |
|
|
2026
|
-
string |
|
|
2025
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2026
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2027
2027
|
],
|
|
2028
2028
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2029
2029
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -2049,8 +2049,8 @@ export namespace linked_list {
|
|
|
2049
2049
|
export function popFront<T0 = any, T1 = any>(
|
|
2050
2050
|
tx: TransactionBlock,
|
|
2051
2051
|
args: [
|
|
2052
|
-
string |
|
|
2053
|
-
string |
|
|
2052
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2053
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2054
2054
|
],
|
|
2055
2055
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2056
2056
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -2076,7 +2076,7 @@ export namespace linked_list {
|
|
|
2076
2076
|
export function popNode<T0 = any, T1 = any>(
|
|
2077
2077
|
tx: TransactionBlock,
|
|
2078
2078
|
args: [
|
|
2079
|
-
string |
|
|
2079
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2080
2080
|
T0 | TransactionArgument,
|
|
2081
2081
|
],
|
|
2082
2082
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2103,7 +2103,7 @@ export namespace linked_list {
|
|
|
2103
2103
|
export function prepareNode<T0 = any, T1 = any>(
|
|
2104
2104
|
tx: TransactionBlock,
|
|
2105
2105
|
args: [
|
|
2106
|
-
string |
|
|
2106
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2107
2107
|
T0 | TransactionArgument,
|
|
2108
2108
|
T1 | TransactionArgument,
|
|
2109
2109
|
],
|
|
@@ -2133,8 +2133,8 @@ export namespace linked_list {
|
|
|
2133
2133
|
export function prev<T0 = any, T1 = any>(
|
|
2134
2134
|
tx: TransactionBlock,
|
|
2135
2135
|
args: [
|
|
2136
|
-
string |
|
|
2137
|
-
string |
|
|
2136
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2137
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2138
2138
|
T0 | TransactionArgument,
|
|
2139
2139
|
],
|
|
2140
2140
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2163,8 +2163,8 @@ export namespace linked_list {
|
|
|
2163
2163
|
export function pushBack<T0 = any, T1 = any>(
|
|
2164
2164
|
tx: TransactionBlock,
|
|
2165
2165
|
args: [
|
|
2166
|
-
string |
|
|
2167
|
-
string |
|
|
2166
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2167
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2168
2168
|
T0 | TransactionArgument,
|
|
2169
2169
|
T1 | TransactionArgument,
|
|
2170
2170
|
],
|
|
@@ -2200,8 +2200,8 @@ export namespace linked_list {
|
|
|
2200
2200
|
export function pushFront<T0 = any, T1 = any>(
|
|
2201
2201
|
tx: TransactionBlock,
|
|
2202
2202
|
args: [
|
|
2203
|
-
string |
|
|
2204
|
-
string |
|
|
2203
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2204
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2205
2205
|
T0 | TransactionArgument,
|
|
2206
2206
|
T1 | TransactionArgument,
|
|
2207
2207
|
],
|
|
@@ -2237,7 +2237,7 @@ export namespace linked_list {
|
|
|
2237
2237
|
export function pushNode<T0 = any, T1 = any>(
|
|
2238
2238
|
tx: TransactionBlock,
|
|
2239
2239
|
args: [
|
|
2240
|
-
string |
|
|
2240
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2241
2241
|
T0 | TransactionArgument,
|
|
2242
2242
|
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2243
2243
|
],
|
|
@@ -2267,8 +2267,8 @@ export namespace linked_list {
|
|
|
2267
2267
|
export function putBack<T0 = any, T1 = any>(
|
|
2268
2268
|
tx: TransactionBlock,
|
|
2269
2269
|
args: [
|
|
2270
|
-
string |
|
|
2271
|
-
string |
|
|
2270
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2271
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2272
2272
|
T0 | TransactionArgument,
|
|
2273
2273
|
T1 | TransactionArgument,
|
|
2274
2274
|
],
|
|
@@ -2304,8 +2304,8 @@ export namespace linked_list {
|
|
|
2304
2304
|
export function putFront<T0 = any, T1 = any>(
|
|
2305
2305
|
tx: TransactionBlock,
|
|
2306
2306
|
args: [
|
|
2307
|
-
string |
|
|
2308
|
-
string |
|
|
2307
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2308
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2309
2309
|
T0 | TransactionArgument,
|
|
2310
2310
|
T1 | TransactionArgument,
|
|
2311
2311
|
],
|
|
@@ -2341,7 +2341,7 @@ export namespace linked_list {
|
|
|
2341
2341
|
export function putNode<T0 = any, T1 = any>(
|
|
2342
2342
|
tx: TransactionBlock,
|
|
2343
2343
|
args: [
|
|
2344
|
-
string |
|
|
2344
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2345
2345
|
T0 | TransactionArgument,
|
|
2346
2346
|
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2347
2347
|
],
|
|
@@ -2371,8 +2371,8 @@ export namespace linked_list {
|
|
|
2371
2371
|
export function remove<T0 = any, T1 = any>(
|
|
2372
2372
|
tx: TransactionBlock,
|
|
2373
2373
|
args: [
|
|
2374
|
-
string |
|
|
2375
|
-
string |
|
|
2374
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2375
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2376
2376
|
T0 | TransactionArgument,
|
|
2377
2377
|
],
|
|
2378
2378
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2401,8 +2401,8 @@ export namespace linked_list {
|
|
|
2401
2401
|
export function takeBack<T0 = any, T1 = any>(
|
|
2402
2402
|
tx: TransactionBlock,
|
|
2403
2403
|
args: [
|
|
2404
|
-
string |
|
|
2405
|
-
string |
|
|
2404
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2405
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2406
2406
|
],
|
|
2407
2407
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2408
2408
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -2428,8 +2428,8 @@ export namespace linked_list {
|
|
|
2428
2428
|
export function takeFront<T0 = any, T1 = any>(
|
|
2429
2429
|
tx: TransactionBlock,
|
|
2430
2430
|
args: [
|
|
2431
|
-
string |
|
|
2432
|
-
string |
|
|
2431
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2432
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2433
2433
|
],
|
|
2434
2434
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2435
2435
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -2455,7 +2455,7 @@ export namespace linked_list {
|
|
|
2455
2455
|
export function takeNode<T0 = any, T1 = any>(
|
|
2456
2456
|
tx: TransactionBlock,
|
|
2457
2457
|
args: [
|
|
2458
|
-
string |
|
|
2458
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2459
2459
|
T0 | TransactionArgument,
|
|
2460
2460
|
],
|
|
2461
2461
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2484,8 +2484,8 @@ export namespace linked_list {
|
|
|
2484
2484
|
export async function borrow<T0 = any, T1 = any>(
|
|
2485
2485
|
client: SuiClient,
|
|
2486
2486
|
args: [
|
|
2487
|
-
string |
|
|
2488
|
-
string |
|
|
2487
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2488
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2489
2489
|
T0 | TransactionArgument,
|
|
2490
2490
|
],
|
|
2491
2491
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2504,8 +2504,8 @@ export namespace linked_list {
|
|
|
2504
2504
|
export async function borrowMut<T0 = any, T1 = any>(
|
|
2505
2505
|
client: SuiClient,
|
|
2506
2506
|
args: [
|
|
2507
|
-
string |
|
|
2508
|
-
string |
|
|
2507
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2508
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2509
2509
|
T0 | TransactionArgument,
|
|
2510
2510
|
],
|
|
2511
2511
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2524,8 +2524,8 @@ export namespace linked_list {
|
|
|
2524
2524
|
export async function chain<T0 = any, T1 = any>(
|
|
2525
2525
|
client: SuiClient,
|
|
2526
2526
|
args: [
|
|
2527
|
-
string |
|
|
2528
|
-
string |
|
|
2527
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2528
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2529
2529
|
],
|
|
2530
2530
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2531
2531
|
): Promise<TypedDevInspectResults<[]>> {
|
|
@@ -2543,8 +2543,8 @@ export namespace linked_list {
|
|
|
2543
2543
|
export async function contains<T0 = any, T1 = any>(
|
|
2544
2544
|
client: SuiClient,
|
|
2545
2545
|
args: [
|
|
2546
|
-
string |
|
|
2547
|
-
string |
|
|
2546
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2547
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2548
2548
|
T0 | TransactionArgument,
|
|
2549
2549
|
],
|
|
2550
2550
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2563,8 +2563,8 @@ export namespace linked_list {
|
|
|
2563
2563
|
export async function delete_<T0 = any, T1 = any>(
|
|
2564
2564
|
client: SuiClient,
|
|
2565
2565
|
args: [
|
|
2566
|
-
string |
|
|
2567
|
-
string |
|
|
2566
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2567
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2568
2568
|
T0 | TransactionArgument,
|
|
2569
2569
|
],
|
|
2570
2570
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2582,7 +2582,7 @@ export namespace linked_list {
|
|
|
2582
2582
|
}
|
|
2583
2583
|
export async function first<T0 = any, T1 = any>(
|
|
2584
2584
|
client: SuiClient,
|
|
2585
|
-
args: [string |
|
|
2585
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
2586
2586
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2587
2587
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2588
2588
|
const tx = new TransactionBlock();
|
|
@@ -2598,7 +2598,7 @@ export namespace linked_list {
|
|
|
2598
2598
|
}
|
|
2599
2599
|
export async function isEmpty<T0 = any, T1 = any>(
|
|
2600
2600
|
client: SuiClient,
|
|
2601
|
-
args: [string |
|
|
2601
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
2602
2602
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2603
2603
|
): Promise<TypedDevInspectResults<[Boolean]>> {
|
|
2604
2604
|
const tx = new TransactionBlock();
|
|
@@ -2614,7 +2614,7 @@ export namespace linked_list {
|
|
|
2614
2614
|
}
|
|
2615
2615
|
export async function last<T0 = any, T1 = any>(
|
|
2616
2616
|
client: SuiClient,
|
|
2617
|
-
args: [string |
|
|
2617
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
2618
2618
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2619
2619
|
): Promise<TypedDevInspectResults<[_0x1.option.Option<T0>]>> {
|
|
2620
2620
|
const tx = new TransactionBlock();
|
|
@@ -2630,7 +2630,7 @@ export namespace linked_list {
|
|
|
2630
2630
|
}
|
|
2631
2631
|
export async function length<T0 = any, T1 = any>(
|
|
2632
2632
|
client: SuiClient,
|
|
2633
|
-
args: [string |
|
|
2633
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
2634
2634
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2635
2635
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
2636
2636
|
const tx = new TransactionBlock();
|
|
@@ -2683,8 +2683,8 @@ export namespace linked_list {
|
|
|
2683
2683
|
export async function next<T0 = any, T1 = any>(
|
|
2684
2684
|
client: SuiClient,
|
|
2685
2685
|
args: [
|
|
2686
|
-
string |
|
|
2687
|
-
string |
|
|
2686
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2687
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2688
2688
|
T0 | TransactionArgument,
|
|
2689
2689
|
],
|
|
2690
2690
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2703,8 +2703,8 @@ export namespace linked_list {
|
|
|
2703
2703
|
export async function popBack<T0 = any, T1 = any>(
|
|
2704
2704
|
client: SuiClient,
|
|
2705
2705
|
args: [
|
|
2706
|
-
string |
|
|
2707
|
-
string |
|
|
2706
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2707
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2708
2708
|
],
|
|
2709
2709
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2710
2710
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
@@ -2722,8 +2722,8 @@ export namespace linked_list {
|
|
|
2722
2722
|
export async function popFront<T0 = any, T1 = any>(
|
|
2723
2723
|
client: SuiClient,
|
|
2724
2724
|
args: [
|
|
2725
|
-
string |
|
|
2726
|
-
string |
|
|
2725
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2726
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2727
2727
|
],
|
|
2728
2728
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2729
2729
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
@@ -2741,7 +2741,7 @@ export namespace linked_list {
|
|
|
2741
2741
|
export async function popNode<T0 = any, T1 = any>(
|
|
2742
2742
|
client: SuiClient,
|
|
2743
2743
|
args: [
|
|
2744
|
-
string |
|
|
2744
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2745
2745
|
T0 | TransactionArgument,
|
|
2746
2746
|
],
|
|
2747
2747
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2760,7 +2760,7 @@ export namespace linked_list {
|
|
|
2760
2760
|
export async function prepareNode<T0 = any, T1 = any>(
|
|
2761
2761
|
client: SuiClient,
|
|
2762
2762
|
args: [
|
|
2763
|
-
string |
|
|
2763
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2764
2764
|
T0 | TransactionArgument,
|
|
2765
2765
|
T1 | TransactionArgument,
|
|
2766
2766
|
],
|
|
@@ -2780,8 +2780,8 @@ export namespace linked_list {
|
|
|
2780
2780
|
export async function prev<T0 = any, T1 = any>(
|
|
2781
2781
|
client: SuiClient,
|
|
2782
2782
|
args: [
|
|
2783
|
-
string |
|
|
2784
|
-
string |
|
|
2783
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2784
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2785
2785
|
T0 | TransactionArgument,
|
|
2786
2786
|
],
|
|
2787
2787
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2800,8 +2800,8 @@ export namespace linked_list {
|
|
|
2800
2800
|
export async function pushBack<T0 = any, T1 = any>(
|
|
2801
2801
|
client: SuiClient,
|
|
2802
2802
|
args: [
|
|
2803
|
-
string |
|
|
2804
|
-
string |
|
|
2803
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2804
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2805
2805
|
T0 | TransactionArgument,
|
|
2806
2806
|
T1 | TransactionArgument,
|
|
2807
2807
|
],
|
|
@@ -2821,8 +2821,8 @@ export namespace linked_list {
|
|
|
2821
2821
|
export async function pushFront<T0 = any, T1 = any>(
|
|
2822
2822
|
client: SuiClient,
|
|
2823
2823
|
args: [
|
|
2824
|
-
string |
|
|
2825
|
-
string |
|
|
2824
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2825
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2826
2826
|
T0 | TransactionArgument,
|
|
2827
2827
|
T1 | TransactionArgument,
|
|
2828
2828
|
],
|
|
@@ -2842,7 +2842,7 @@ export namespace linked_list {
|
|
|
2842
2842
|
export async function pushNode<T0 = any, T1 = any>(
|
|
2843
2843
|
client: SuiClient,
|
|
2844
2844
|
args: [
|
|
2845
|
-
string |
|
|
2845
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2846
2846
|
T0 | TransactionArgument,
|
|
2847
2847
|
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2848
2848
|
],
|
|
@@ -2862,8 +2862,8 @@ export namespace linked_list {
|
|
|
2862
2862
|
export async function putBack<T0 = any, T1 = any>(
|
|
2863
2863
|
client: SuiClient,
|
|
2864
2864
|
args: [
|
|
2865
|
-
string |
|
|
2866
|
-
string |
|
|
2865
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2866
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2867
2867
|
T0 | TransactionArgument,
|
|
2868
2868
|
T1 | TransactionArgument,
|
|
2869
2869
|
],
|
|
@@ -2883,8 +2883,8 @@ export namespace linked_list {
|
|
|
2883
2883
|
export async function putFront<T0 = any, T1 = any>(
|
|
2884
2884
|
client: SuiClient,
|
|
2885
2885
|
args: [
|
|
2886
|
-
string |
|
|
2887
|
-
string |
|
|
2886
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2887
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2888
2888
|
T0 | TransactionArgument,
|
|
2889
2889
|
T1 | TransactionArgument,
|
|
2890
2890
|
],
|
|
@@ -2904,7 +2904,7 @@ export namespace linked_list {
|
|
|
2904
2904
|
export async function putNode<T0 = any, T1 = any>(
|
|
2905
2905
|
client: SuiClient,
|
|
2906
2906
|
args: [
|
|
2907
|
-
string |
|
|
2907
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2908
2908
|
T0 | TransactionArgument,
|
|
2909
2909
|
linked_list.Node<T0, T1> | TransactionArgument,
|
|
2910
2910
|
],
|
|
@@ -2924,8 +2924,8 @@ export namespace linked_list {
|
|
|
2924
2924
|
export async function remove<T0 = any, T1 = any>(
|
|
2925
2925
|
client: SuiClient,
|
|
2926
2926
|
args: [
|
|
2927
|
-
string |
|
|
2928
|
-
string |
|
|
2927
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2928
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2929
2929
|
T0 | TransactionArgument,
|
|
2930
2930
|
],
|
|
2931
2931
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2944,8 +2944,8 @@ export namespace linked_list {
|
|
|
2944
2944
|
export async function takeBack<T0 = any, T1 = any>(
|
|
2945
2945
|
client: SuiClient,
|
|
2946
2946
|
args: [
|
|
2947
|
-
string |
|
|
2948
|
-
string |
|
|
2947
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2948
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2949
2949
|
],
|
|
2950
2950
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2951
2951
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
@@ -2963,8 +2963,8 @@ export namespace linked_list {
|
|
|
2963
2963
|
export async function takeFront<T0 = any, T1 = any>(
|
|
2964
2964
|
client: SuiClient,
|
|
2965
2965
|
args: [
|
|
2966
|
-
string |
|
|
2967
|
-
string |
|
|
2966
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2967
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2968
2968
|
],
|
|
2969
2969
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2970
2970
|
): Promise<TypedDevInspectResults<[T0, T1]>> {
|
|
@@ -2982,7 +2982,7 @@ export namespace linked_list {
|
|
|
2982
2982
|
export async function takeNode<T0 = any, T1 = any>(
|
|
2983
2983
|
client: SuiClient,
|
|
2984
2984
|
args: [
|
|
2985
|
-
string |
|
|
2985
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
2986
2986
|
T0 | TransactionArgument,
|
|
2987
2987
|
],
|
|
2988
2988
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -4020,9 +4020,9 @@ export namespace single_collateral {
|
|
|
4020
4020
|
export function addAuthorizedUser(
|
|
4021
4021
|
tx: TransactionBlock,
|
|
4022
4022
|
args: [
|
|
4023
|
-
string |
|
|
4024
|
-
string |
|
|
4025
|
-
(string |
|
|
4023
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4024
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4025
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4026
4026
|
],
|
|
4027
4027
|
): TransactionArgument &
|
|
4028
4028
|
[TransactionArgument, TransactionArgument, TransactionArgument] {
|
|
@@ -4045,10 +4045,10 @@ export namespace single_collateral {
|
|
|
4045
4045
|
>(
|
|
4046
4046
|
tx: TransactionBlock,
|
|
4047
4047
|
args: [
|
|
4048
|
-
string |
|
|
4049
|
-
string |
|
|
4048
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4049
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4050
4050
|
bigint | TransactionArgument,
|
|
4051
|
-
(string |
|
|
4051
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4052
4052
|
],
|
|
4053
4053
|
typeArguments: [
|
|
4054
4054
|
TypeDescriptor<T0> | string,
|
|
@@ -4093,9 +4093,9 @@ export namespace single_collateral {
|
|
|
4093
4093
|
>(
|
|
4094
4094
|
tx: TransactionBlock,
|
|
4095
4095
|
args: [
|
|
4096
|
-
string |
|
|
4096
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4097
4097
|
bigint | TransactionArgument,
|
|
4098
|
-
(string |
|
|
4098
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4099
4099
|
],
|
|
4100
4100
|
typeArguments: [
|
|
4101
4101
|
TypeDescriptor<T0> | string,
|
|
@@ -4130,10 +4130,10 @@ export namespace single_collateral {
|
|
|
4130
4130
|
export function authorizedDelivery<T0 = any, T1 = any, T2 = any>(
|
|
4131
4131
|
tx: TransactionBlock,
|
|
4132
4132
|
args: [
|
|
4133
|
-
string |
|
|
4133
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4134
4134
|
bigint | TransactionArgument,
|
|
4135
|
-
string |
|
|
4136
|
-
string |
|
|
4135
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4136
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4137
4137
|
],
|
|
4138
4138
|
typeArguments: [
|
|
4139
4139
|
TypeDescriptor<T0> | string,
|
|
@@ -4174,8 +4174,8 @@ export namespace single_collateral {
|
|
|
4174
4174
|
export function authorizedNewPortfolioVault<T0 = any, T1 = any, T2 = any>(
|
|
4175
4175
|
tx: TransactionBlock,
|
|
4176
4176
|
args: [
|
|
4177
|
-
string |
|
|
4178
|
-
string |
|
|
4177
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4178
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4179
4179
|
bigint | TransactionArgument,
|
|
4180
4180
|
number | TransactionArgument,
|
|
4181
4181
|
bigint | TransactionArgument,
|
|
@@ -4184,9 +4184,9 @@ export namespace single_collateral {
|
|
|
4184
4184
|
bigint | TransactionArgument,
|
|
4185
4185
|
bigint | TransactionArgument,
|
|
4186
4186
|
bigint | TransactionArgument,
|
|
4187
|
-
(string |
|
|
4188
|
-
(string |
|
|
4189
|
-
(string |
|
|
4187
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4188
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4189
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4190
4190
|
bigint | TransactionArgument,
|
|
4191
4191
|
bigint | TransactionArgument,
|
|
4192
4192
|
bigint | TransactionArgument,
|
|
@@ -4195,7 +4195,7 @@ export namespace single_collateral {
|
|
|
4195
4195
|
bigint | TransactionArgument,
|
|
4196
4196
|
bigint | TransactionArgument,
|
|
4197
4197
|
Boolean | TransactionArgument,
|
|
4198
|
-
(string |
|
|
4198
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4199
4199
|
],
|
|
4200
4200
|
typeArguments: [
|
|
4201
4201
|
TypeDescriptor<T0> | string,
|
|
@@ -4276,9 +4276,9 @@ export namespace single_collateral {
|
|
|
4276
4276
|
>(
|
|
4277
4277
|
tx: TransactionBlock,
|
|
4278
4278
|
args: [
|
|
4279
|
-
string |
|
|
4279
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4280
4280
|
bigint | TransactionArgument,
|
|
4281
|
-
(string |
|
|
4281
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4282
4282
|
],
|
|
4283
4283
|
typeArguments: [
|
|
4284
4284
|
TypeDescriptor<T0> | string,
|
|
@@ -4313,7 +4313,7 @@ export namespace single_collateral {
|
|
|
4313
4313
|
export function authorizedUpdateCapacity<T0 = any, T1 = any, T2 = any>(
|
|
4314
4314
|
tx: TransactionBlock,
|
|
4315
4315
|
args: [
|
|
4316
|
-
string |
|
|
4316
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4317
4317
|
bigint | TransactionArgument,
|
|
4318
4318
|
bigint | TransactionArgument,
|
|
4319
4319
|
],
|
|
@@ -4354,11 +4354,11 @@ export namespace single_collateral {
|
|
|
4354
4354
|
>(
|
|
4355
4355
|
tx: TransactionBlock,
|
|
4356
4356
|
args: [
|
|
4357
|
-
string |
|
|
4357
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4358
4358
|
bigint | TransactionArgument,
|
|
4359
|
-
(string |
|
|
4360
|
-
(string |
|
|
4361
|
-
(string |
|
|
4359
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4360
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4361
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4362
4362
|
bigint | TransactionArgument,
|
|
4363
4363
|
bigint | TransactionArgument,
|
|
4364
4364
|
bigint | TransactionArgument,
|
|
@@ -4420,7 +4420,7 @@ export namespace single_collateral {
|
|
|
4420
4420
|
>(
|
|
4421
4421
|
tx: TransactionBlock,
|
|
4422
4422
|
args: [
|
|
4423
|
-
string |
|
|
4423
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4424
4424
|
bigint | TransactionArgument,
|
|
4425
4425
|
bigint | TransactionArgument,
|
|
4426
4426
|
bigint | TransactionArgument,
|
|
@@ -4473,7 +4473,7 @@ export namespace single_collateral {
|
|
|
4473
4473
|
export function claim<T0 = any, T1 = any, T2 = any>(
|
|
4474
4474
|
tx: TransactionBlock,
|
|
4475
4475
|
args: [
|
|
4476
|
-
string |
|
|
4476
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4477
4477
|
bigint | TransactionArgument,
|
|
4478
4478
|
],
|
|
4479
4479
|
typeArguments: [
|
|
@@ -4507,7 +4507,7 @@ export namespace single_collateral {
|
|
|
4507
4507
|
export function claimAndHarvest<T0 = any, T1 = any, T2 = any>(
|
|
4508
4508
|
tx: TransactionBlock,
|
|
4509
4509
|
args: [
|
|
4510
|
-
string |
|
|
4510
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4511
4511
|
bigint | TransactionArgument,
|
|
4512
4512
|
],
|
|
4513
4513
|
typeArguments: [
|
|
@@ -4541,8 +4541,8 @@ export namespace single_collateral {
|
|
|
4541
4541
|
export function close<T0 = any, T1 = any, T2 = any>(
|
|
4542
4542
|
tx: TransactionBlock,
|
|
4543
4543
|
args: [
|
|
4544
|
-
string |
|
|
4545
|
-
string |
|
|
4544
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4545
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4546
4546
|
bigint | TransactionArgument,
|
|
4547
4547
|
],
|
|
4548
4548
|
typeArguments: [
|
|
@@ -4578,7 +4578,7 @@ export namespace single_collateral {
|
|
|
4578
4578
|
export function compound<T0 = any, T1 = any>(
|
|
4579
4579
|
tx: TransactionBlock,
|
|
4580
4580
|
args: [
|
|
4581
|
-
string |
|
|
4581
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4582
4582
|
bigint | TransactionArgument,
|
|
4583
4583
|
],
|
|
4584
4584
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -4605,11 +4605,11 @@ export namespace single_collateral {
|
|
|
4605
4605
|
export function delivery<T0 = any, T1 = any, T2 = any>(
|
|
4606
4606
|
tx: TransactionBlock,
|
|
4607
4607
|
args: [
|
|
4608
|
-
string |
|
|
4609
|
-
string |
|
|
4608
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4609
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4610
4610
|
bigint | TransactionArgument,
|
|
4611
|
-
string |
|
|
4612
|
-
string |
|
|
4611
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4612
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4613
4613
|
],
|
|
4614
4614
|
typeArguments: [
|
|
4615
4615
|
TypeDescriptor<T0> | string,
|
|
@@ -4652,9 +4652,9 @@ export namespace single_collateral {
|
|
|
4652
4652
|
export function deposit<T0 = any, T1 = any, T2 = any>(
|
|
4653
4653
|
tx: TransactionBlock,
|
|
4654
4654
|
args: [
|
|
4655
|
-
string |
|
|
4655
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4656
4656
|
bigint | TransactionArgument,
|
|
4657
|
-
(string |
|
|
4657
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4658
4658
|
bigint | TransactionArgument,
|
|
4659
4659
|
],
|
|
4660
4660
|
typeArguments: [
|
|
@@ -4696,11 +4696,11 @@ export namespace single_collateral {
|
|
|
4696
4696
|
export function evolution<T0 = any, T1 = any, T2 = any>(
|
|
4697
4697
|
tx: TransactionBlock,
|
|
4698
4698
|
args: [
|
|
4699
|
-
string |
|
|
4700
|
-
string |
|
|
4699
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4700
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4701
4701
|
bigint | TransactionArgument,
|
|
4702
|
-
string |
|
|
4703
|
-
string |
|
|
4702
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4703
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4704
4704
|
],
|
|
4705
4705
|
typeArguments: [
|
|
4706
4706
|
TypeDescriptor<T0> | string,
|
|
@@ -4743,9 +4743,9 @@ export namespace single_collateral {
|
|
|
4743
4743
|
export function getAuctionMaxSize<T0 = any, T1 = any, T2 = any>(
|
|
4744
4744
|
tx: TransactionBlock,
|
|
4745
4745
|
args: [
|
|
4746
|
-
string |
|
|
4746
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4747
4747
|
bigint | TransactionArgument,
|
|
4748
|
-
string |
|
|
4748
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4749
4749
|
],
|
|
4750
4750
|
typeArguments: [
|
|
4751
4751
|
TypeDescriptor<T0> | string,
|
|
@@ -4780,9 +4780,9 @@ export namespace single_collateral {
|
|
|
4780
4780
|
export function getMaxLossPerUnit<T0 = any, T1 = any, T2 = any>(
|
|
4781
4781
|
tx: TransactionBlock,
|
|
4782
4782
|
args: [
|
|
4783
|
-
string |
|
|
4783
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4784
4784
|
bigint | TransactionArgument,
|
|
4785
|
-
string |
|
|
4785
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4786
4786
|
],
|
|
4787
4787
|
typeArguments: [
|
|
4788
4788
|
TypeDescriptor<T0> | string,
|
|
@@ -4817,7 +4817,7 @@ export namespace single_collateral {
|
|
|
4817
4817
|
export function getUserStatus<T0 = any, T1 = any, T2 = any>(
|
|
4818
4818
|
tx: TransactionBlock,
|
|
4819
4819
|
args: [
|
|
4820
|
-
string |
|
|
4820
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4821
4821
|
bigint | TransactionArgument,
|
|
4822
4822
|
string | TransactionArgument,
|
|
4823
4823
|
],
|
|
@@ -4854,7 +4854,7 @@ export namespace single_collateral {
|
|
|
4854
4854
|
export function harvest<T0 = any, T1 = any, T2 = any>(
|
|
4855
4855
|
tx: TransactionBlock,
|
|
4856
4856
|
args: [
|
|
4857
|
-
string |
|
|
4857
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4858
4858
|
bigint | TransactionArgument,
|
|
4859
4859
|
],
|
|
4860
4860
|
typeArguments: [
|
|
@@ -4888,12 +4888,12 @@ export namespace single_collateral {
|
|
|
4888
4888
|
export function newAuction<T0 = any, T1 = any, T2 = any>(
|
|
4889
4889
|
tx: TransactionBlock,
|
|
4890
4890
|
args: [
|
|
4891
|
-
string |
|
|
4892
|
-
string |
|
|
4891
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4892
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4893
4893
|
bigint | TransactionArgument,
|
|
4894
4894
|
bigint | TransactionArgument,
|
|
4895
|
-
string |
|
|
4896
|
-
string |
|
|
4895
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4896
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4897
4897
|
],
|
|
4898
4898
|
typeArguments: [
|
|
4899
4899
|
TypeDescriptor<T0> | string,
|
|
@@ -4938,11 +4938,11 @@ export namespace single_collateral {
|
|
|
4938
4938
|
export function newBid<T0 = any, T1 = any, T2 = any>(
|
|
4939
4939
|
tx: TransactionBlock,
|
|
4940
4940
|
args: [
|
|
4941
|
-
string |
|
|
4941
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4942
4942
|
bigint | TransactionArgument,
|
|
4943
|
-
string |
|
|
4944
|
-
string |
|
|
4945
|
-
(string |
|
|
4943
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4944
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4945
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4946
4946
|
bigint | TransactionArgument,
|
|
4947
4947
|
],
|
|
4948
4948
|
typeArguments: [
|
|
@@ -4988,8 +4988,8 @@ export namespace single_collateral {
|
|
|
4988
4988
|
export function newManager(
|
|
4989
4989
|
tx: TransactionBlock,
|
|
4990
4990
|
args: [
|
|
4991
|
-
string |
|
|
4992
|
-
(string |
|
|
4991
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
4992
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
4993
4993
|
],
|
|
4994
4994
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4995
4995
|
const _args: any[] = [];
|
|
@@ -5006,9 +5006,9 @@ export namespace single_collateral {
|
|
|
5006
5006
|
export function newPortfolioVault<T0 = any, T1 = any, T2 = any>(
|
|
5007
5007
|
tx: TransactionBlock,
|
|
5008
5008
|
args: [
|
|
5009
|
-
string |
|
|
5010
|
-
string |
|
|
5011
|
-
string |
|
|
5009
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5010
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5011
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5012
5012
|
bigint | TransactionArgument,
|
|
5013
5013
|
number | TransactionArgument,
|
|
5014
5014
|
bigint | TransactionArgument,
|
|
@@ -5017,9 +5017,9 @@ export namespace single_collateral {
|
|
|
5017
5017
|
bigint | TransactionArgument,
|
|
5018
5018
|
bigint | TransactionArgument,
|
|
5019
5019
|
bigint | TransactionArgument,
|
|
5020
|
-
(string |
|
|
5021
|
-
(string |
|
|
5022
|
-
(string |
|
|
5020
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5021
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5022
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5023
5023
|
bigint | TransactionArgument,
|
|
5024
5024
|
bigint | TransactionArgument,
|
|
5025
5025
|
bigint | TransactionArgument,
|
|
@@ -5028,7 +5028,7 @@ export namespace single_collateral {
|
|
|
5028
5028
|
bigint | TransactionArgument,
|
|
5029
5029
|
bigint | TransactionArgument,
|
|
5030
5030
|
Boolean | TransactionArgument,
|
|
5031
|
-
(string |
|
|
5031
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5032
5032
|
],
|
|
5033
5033
|
typeArguments: [
|
|
5034
5034
|
TypeDescriptor<T0> | string,
|
|
@@ -5107,9 +5107,9 @@ export namespace single_collateral {
|
|
|
5107
5107
|
export function removeAuthorizedUser(
|
|
5108
5108
|
tx: TransactionBlock,
|
|
5109
5109
|
args: [
|
|
5110
|
-
string |
|
|
5111
|
-
string |
|
|
5112
|
-
(string |
|
|
5110
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5111
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5112
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5113
5113
|
],
|
|
5114
5114
|
): TransactionArgument &
|
|
5115
5115
|
[TransactionArgument, TransactionArgument, TransactionArgument] {
|
|
@@ -5146,10 +5146,10 @@ export namespace single_collateral {
|
|
|
5146
5146
|
>(
|
|
5147
5147
|
tx: TransactionBlock,
|
|
5148
5148
|
args: [
|
|
5149
|
-
string |
|
|
5150
|
-
string |
|
|
5149
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5150
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5151
5151
|
bigint | TransactionArgument,
|
|
5152
|
-
(string |
|
|
5152
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5153
5153
|
],
|
|
5154
5154
|
typeArguments: [
|
|
5155
5155
|
TypeDescriptor<T0> | string,
|
|
@@ -5190,10 +5190,10 @@ export namespace single_collateral {
|
|
|
5190
5190
|
export function terminateAuction<T0 = any, T1 = any, T2 = any>(
|
|
5191
5191
|
tx: TransactionBlock,
|
|
5192
5192
|
args: [
|
|
5193
|
-
string |
|
|
5194
|
-
string |
|
|
5193
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5194
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5195
5195
|
bigint | TransactionArgument,
|
|
5196
|
-
string |
|
|
5196
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5197
5197
|
],
|
|
5198
5198
|
typeArguments: [
|
|
5199
5199
|
TypeDescriptor<T0> | string,
|
|
@@ -5234,10 +5234,10 @@ export namespace single_collateral {
|
|
|
5234
5234
|
export function terminateVault<T0 = any, T1 = any, T2 = any>(
|
|
5235
5235
|
tx: TransactionBlock,
|
|
5236
5236
|
args: [
|
|
5237
|
-
string |
|
|
5238
|
-
string |
|
|
5237
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5238
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5239
5239
|
bigint | TransactionArgument,
|
|
5240
|
-
string |
|
|
5240
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5241
5241
|
],
|
|
5242
5242
|
typeArguments: [
|
|
5243
5243
|
TypeDescriptor<T0> | string,
|
|
@@ -5278,7 +5278,7 @@ export namespace single_collateral {
|
|
|
5278
5278
|
export function unsubscribe<T0 = any, T1 = any, T2 = any>(
|
|
5279
5279
|
tx: TransactionBlock,
|
|
5280
5280
|
args: [
|
|
5281
|
-
string |
|
|
5281
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5282
5282
|
bigint | TransactionArgument,
|
|
5283
5283
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
5284
5284
|
],
|
|
@@ -5315,8 +5315,8 @@ export namespace single_collateral {
|
|
|
5315
5315
|
export function updateActiveVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
5316
5316
|
tx: TransactionBlock,
|
|
5317
5317
|
args: [
|
|
5318
|
-
string |
|
|
5319
|
-
string |
|
|
5318
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5319
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5320
5320
|
bigint | TransactionArgument,
|
|
5321
5321
|
bigint | TransactionArgument,
|
|
5322
5322
|
bigint | TransactionArgument,
|
|
@@ -5371,8 +5371,8 @@ export namespace single_collateral {
|
|
|
5371
5371
|
export function updateCapacity<T0 = any, T1 = any, T2 = any>(
|
|
5372
5372
|
tx: TransactionBlock,
|
|
5373
5373
|
args: [
|
|
5374
|
-
string |
|
|
5375
|
-
string |
|
|
5374
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5375
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5376
5376
|
bigint | TransactionArgument,
|
|
5377
5377
|
bigint | TransactionArgument,
|
|
5378
5378
|
],
|
|
@@ -5415,8 +5415,8 @@ export namespace single_collateral {
|
|
|
5415
5415
|
export function updateRestrictActivationTimePeriod(
|
|
5416
5416
|
tx: TransactionBlock,
|
|
5417
5417
|
args: [
|
|
5418
|
-
string |
|
|
5419
|
-
string |
|
|
5418
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5419
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5420
5420
|
bigint | TransactionArgument,
|
|
5421
5421
|
bigint | TransactionArgument,
|
|
5422
5422
|
],
|
|
@@ -5443,12 +5443,12 @@ export namespace single_collateral {
|
|
|
5443
5443
|
export function updateUpcomingVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
5444
5444
|
tx: TransactionBlock,
|
|
5445
5445
|
args: [
|
|
5446
|
-
string |
|
|
5447
|
-
string |
|
|
5446
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5447
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5448
5448
|
bigint | TransactionArgument,
|
|
5449
|
-
(string |
|
|
5450
|
-
(string |
|
|
5451
|
-
(string |
|
|
5449
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5450
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5451
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5452
5452
|
bigint | TransactionArgument,
|
|
5453
5453
|
bigint | TransactionArgument,
|
|
5454
5454
|
bigint | TransactionArgument,
|
|
@@ -5508,8 +5508,8 @@ export namespace single_collateral {
|
|
|
5508
5508
|
export function updateWarmupVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
5509
5509
|
tx: TransactionBlock,
|
|
5510
5510
|
args: [
|
|
5511
|
-
string |
|
|
5512
|
-
string |
|
|
5511
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5512
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5513
5513
|
bigint | TransactionArgument,
|
|
5514
5514
|
bigint | TransactionArgument,
|
|
5515
5515
|
bigint | TransactionArgument,
|
|
@@ -5564,7 +5564,7 @@ export namespace single_collateral {
|
|
|
5564
5564
|
export function withdraw<T0 = any, T1 = any, T2 = any>(
|
|
5565
5565
|
tx: TransactionBlock,
|
|
5566
5566
|
args: [
|
|
5567
|
-
string |
|
|
5567
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5568
5568
|
bigint | TransactionArgument,
|
|
5569
5569
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
5570
5570
|
],
|
|
@@ -5603,9 +5603,9 @@ export namespace single_collateral {
|
|
|
5603
5603
|
export async function addAuthorizedUser(
|
|
5604
5604
|
client: SuiClient,
|
|
5605
5605
|
args: [
|
|
5606
|
-
string |
|
|
5607
|
-
string |
|
|
5608
|
-
(string |
|
|
5606
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5607
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5608
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5609
5609
|
],
|
|
5610
5610
|
): Promise<TypedDevInspectResults<[]>> {
|
|
5611
5611
|
const tx = new TransactionBlock();
|
|
@@ -5626,10 +5626,10 @@ export namespace single_collateral {
|
|
|
5626
5626
|
>(
|
|
5627
5627
|
client: SuiClient,
|
|
5628
5628
|
args: [
|
|
5629
|
-
string |
|
|
5630
|
-
string |
|
|
5629
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5630
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5631
5631
|
bigint | TransactionArgument,
|
|
5632
|
-
(string |
|
|
5632
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5633
5633
|
],
|
|
5634
5634
|
typeArguments: [
|
|
5635
5635
|
TypeDescriptor<T0> | string,
|
|
@@ -5655,9 +5655,9 @@ export namespace single_collateral {
|
|
|
5655
5655
|
>(
|
|
5656
5656
|
client: SuiClient,
|
|
5657
5657
|
args: [
|
|
5658
|
-
string |
|
|
5658
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5659
5659
|
bigint | TransactionArgument,
|
|
5660
|
-
(string |
|
|
5660
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5661
5661
|
],
|
|
5662
5662
|
typeArguments: [
|
|
5663
5663
|
TypeDescriptor<T0> | string,
|
|
@@ -5683,10 +5683,10 @@ export namespace single_collateral {
|
|
|
5683
5683
|
export async function authorizedDelivery<T0 = any, T1 = any, T2 = any>(
|
|
5684
5684
|
client: SuiClient,
|
|
5685
5685
|
args: [
|
|
5686
|
-
string |
|
|
5686
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5687
5687
|
bigint | TransactionArgument,
|
|
5688
|
-
string |
|
|
5689
|
-
string |
|
|
5688
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5689
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5690
5690
|
],
|
|
5691
5691
|
typeArguments: [
|
|
5692
5692
|
TypeDescriptor<T0> | string,
|
|
@@ -5712,8 +5712,8 @@ export namespace single_collateral {
|
|
|
5712
5712
|
>(
|
|
5713
5713
|
client: SuiClient,
|
|
5714
5714
|
args: [
|
|
5715
|
-
string |
|
|
5716
|
-
string |
|
|
5715
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5716
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5717
5717
|
bigint | TransactionArgument,
|
|
5718
5718
|
number | TransactionArgument,
|
|
5719
5719
|
bigint | TransactionArgument,
|
|
@@ -5722,9 +5722,9 @@ export namespace single_collateral {
|
|
|
5722
5722
|
bigint | TransactionArgument,
|
|
5723
5723
|
bigint | TransactionArgument,
|
|
5724
5724
|
bigint | TransactionArgument,
|
|
5725
|
-
(string |
|
|
5726
|
-
(string |
|
|
5727
|
-
(string |
|
|
5725
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5726
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5727
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5728
5728
|
bigint | TransactionArgument,
|
|
5729
5729
|
bigint | TransactionArgument,
|
|
5730
5730
|
bigint | TransactionArgument,
|
|
@@ -5733,7 +5733,7 @@ export namespace single_collateral {
|
|
|
5733
5733
|
bigint | TransactionArgument,
|
|
5734
5734
|
bigint | TransactionArgument,
|
|
5735
5735
|
Boolean | TransactionArgument,
|
|
5736
|
-
(string |
|
|
5736
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5737
5737
|
],
|
|
5738
5738
|
typeArguments: [
|
|
5739
5739
|
TypeDescriptor<T0> | string,
|
|
@@ -5759,9 +5759,9 @@ export namespace single_collateral {
|
|
|
5759
5759
|
>(
|
|
5760
5760
|
client: SuiClient,
|
|
5761
5761
|
args: [
|
|
5762
|
-
string |
|
|
5762
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5763
5763
|
bigint | TransactionArgument,
|
|
5764
|
-
(string |
|
|
5764
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5765
5765
|
],
|
|
5766
5766
|
typeArguments: [
|
|
5767
5767
|
TypeDescriptor<T0> | string,
|
|
@@ -5791,7 +5791,7 @@ export namespace single_collateral {
|
|
|
5791
5791
|
>(
|
|
5792
5792
|
client: SuiClient,
|
|
5793
5793
|
args: [
|
|
5794
|
-
string |
|
|
5794
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5795
5795
|
bigint | TransactionArgument,
|
|
5796
5796
|
bigint | TransactionArgument,
|
|
5797
5797
|
],
|
|
@@ -5819,11 +5819,11 @@ export namespace single_collateral {
|
|
|
5819
5819
|
>(
|
|
5820
5820
|
client: SuiClient,
|
|
5821
5821
|
args: [
|
|
5822
|
-
string |
|
|
5822
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5823
5823
|
bigint | TransactionArgument,
|
|
5824
|
-
(string |
|
|
5825
|
-
(string |
|
|
5826
|
-
(string |
|
|
5824
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5825
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5826
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
5827
5827
|
bigint | TransactionArgument,
|
|
5828
5828
|
bigint | TransactionArgument,
|
|
5829
5829
|
bigint | TransactionArgument,
|
|
@@ -5854,7 +5854,7 @@ export namespace single_collateral {
|
|
|
5854
5854
|
>(
|
|
5855
5855
|
client: SuiClient,
|
|
5856
5856
|
args: [
|
|
5857
|
-
string |
|
|
5857
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5858
5858
|
bigint | TransactionArgument,
|
|
5859
5859
|
bigint | TransactionArgument,
|
|
5860
5860
|
bigint | TransactionArgument,
|
|
@@ -5882,7 +5882,7 @@ export namespace single_collateral {
|
|
|
5882
5882
|
export async function claim<T0 = any, T1 = any, T2 = any>(
|
|
5883
5883
|
client: SuiClient,
|
|
5884
5884
|
args: [
|
|
5885
|
-
string |
|
|
5885
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5886
5886
|
bigint | TransactionArgument,
|
|
5887
5887
|
],
|
|
5888
5888
|
typeArguments: [
|
|
@@ -5905,7 +5905,7 @@ export namespace single_collateral {
|
|
|
5905
5905
|
export async function claimAndHarvest<T0 = any, T1 = any, T2 = any>(
|
|
5906
5906
|
client: SuiClient,
|
|
5907
5907
|
args: [
|
|
5908
|
-
string |
|
|
5908
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5909
5909
|
bigint | TransactionArgument,
|
|
5910
5910
|
],
|
|
5911
5911
|
typeArguments: [
|
|
@@ -5928,8 +5928,8 @@ export namespace single_collateral {
|
|
|
5928
5928
|
export async function close<T0 = any, T1 = any, T2 = any>(
|
|
5929
5929
|
client: SuiClient,
|
|
5930
5930
|
args: [
|
|
5931
|
-
string |
|
|
5932
|
-
string |
|
|
5931
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5932
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5933
5933
|
bigint | TransactionArgument,
|
|
5934
5934
|
],
|
|
5935
5935
|
typeArguments: [
|
|
@@ -5952,7 +5952,7 @@ export namespace single_collateral {
|
|
|
5952
5952
|
export async function compound<T0 = any, T1 = any>(
|
|
5953
5953
|
client: SuiClient,
|
|
5954
5954
|
args: [
|
|
5955
|
-
string |
|
|
5955
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5956
5956
|
bigint | TransactionArgument,
|
|
5957
5957
|
],
|
|
5958
5958
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -5971,11 +5971,11 @@ export namespace single_collateral {
|
|
|
5971
5971
|
export async function delivery<T0 = any, T1 = any, T2 = any>(
|
|
5972
5972
|
client: SuiClient,
|
|
5973
5973
|
args: [
|
|
5974
|
-
string |
|
|
5975
|
-
string |
|
|
5974
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5975
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5976
5976
|
bigint | TransactionArgument,
|
|
5977
|
-
string |
|
|
5978
|
-
string |
|
|
5977
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5978
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
5979
5979
|
],
|
|
5980
5980
|
typeArguments: [
|
|
5981
5981
|
TypeDescriptor<T0> | string,
|
|
@@ -5997,9 +5997,9 @@ export namespace single_collateral {
|
|
|
5997
5997
|
export async function deposit<T0 = any, T1 = any, T2 = any>(
|
|
5998
5998
|
client: SuiClient,
|
|
5999
5999
|
args: [
|
|
6000
|
-
string |
|
|
6000
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6001
6001
|
bigint | TransactionArgument,
|
|
6002
|
-
(string |
|
|
6002
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6003
6003
|
bigint | TransactionArgument,
|
|
6004
6004
|
],
|
|
6005
6005
|
typeArguments: [
|
|
@@ -6022,11 +6022,11 @@ export namespace single_collateral {
|
|
|
6022
6022
|
export async function evolution<T0 = any, T1 = any, T2 = any>(
|
|
6023
6023
|
client: SuiClient,
|
|
6024
6024
|
args: [
|
|
6025
|
-
string |
|
|
6026
|
-
string |
|
|
6025
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6026
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6027
6027
|
bigint | TransactionArgument,
|
|
6028
|
-
string |
|
|
6029
|
-
string |
|
|
6028
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6029
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6030
6030
|
],
|
|
6031
6031
|
typeArguments: [
|
|
6032
6032
|
TypeDescriptor<T0> | string,
|
|
@@ -6048,9 +6048,9 @@ export namespace single_collateral {
|
|
|
6048
6048
|
export async function getAuctionMaxSize<T0 = any, T1 = any, T2 = any>(
|
|
6049
6049
|
client: SuiClient,
|
|
6050
6050
|
args: [
|
|
6051
|
-
string |
|
|
6051
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6052
6052
|
bigint | TransactionArgument,
|
|
6053
|
-
string |
|
|
6053
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6054
6054
|
],
|
|
6055
6055
|
typeArguments: [
|
|
6056
6056
|
TypeDescriptor<T0> | string,
|
|
@@ -6072,9 +6072,9 @@ export namespace single_collateral {
|
|
|
6072
6072
|
export async function getMaxLossPerUnit<T0 = any, T1 = any, T2 = any>(
|
|
6073
6073
|
client: SuiClient,
|
|
6074
6074
|
args: [
|
|
6075
|
-
string |
|
|
6075
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6076
6076
|
bigint | TransactionArgument,
|
|
6077
|
-
string |
|
|
6077
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6078
6078
|
],
|
|
6079
6079
|
typeArguments: [
|
|
6080
6080
|
TypeDescriptor<T0> | string,
|
|
@@ -6096,7 +6096,7 @@ export namespace single_collateral {
|
|
|
6096
6096
|
export async function getUserStatus<T0 = any, T1 = any, T2 = any>(
|
|
6097
6097
|
client: SuiClient,
|
|
6098
6098
|
args: [
|
|
6099
|
-
string |
|
|
6099
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6100
6100
|
bigint | TransactionArgument,
|
|
6101
6101
|
string | TransactionArgument,
|
|
6102
6102
|
],
|
|
@@ -6122,7 +6122,7 @@ export namespace single_collateral {
|
|
|
6122
6122
|
export async function harvest<T0 = any, T1 = any, T2 = any>(
|
|
6123
6123
|
client: SuiClient,
|
|
6124
6124
|
args: [
|
|
6125
|
-
string |
|
|
6125
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6126
6126
|
bigint | TransactionArgument,
|
|
6127
6127
|
],
|
|
6128
6128
|
typeArguments: [
|
|
@@ -6145,12 +6145,12 @@ export namespace single_collateral {
|
|
|
6145
6145
|
export async function newAuction<T0 = any, T1 = any, T2 = any>(
|
|
6146
6146
|
client: SuiClient,
|
|
6147
6147
|
args: [
|
|
6148
|
-
string |
|
|
6149
|
-
string |
|
|
6148
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6149
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6150
6150
|
bigint | TransactionArgument,
|
|
6151
6151
|
bigint | TransactionArgument,
|
|
6152
|
-
string |
|
|
6153
|
-
string |
|
|
6152
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6153
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6154
6154
|
],
|
|
6155
6155
|
typeArguments: [
|
|
6156
6156
|
TypeDescriptor<T0> | string,
|
|
@@ -6172,11 +6172,11 @@ export namespace single_collateral {
|
|
|
6172
6172
|
export async function newBid<T0 = any, T1 = any, T2 = any>(
|
|
6173
6173
|
client: SuiClient,
|
|
6174
6174
|
args: [
|
|
6175
|
-
string |
|
|
6175
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6176
6176
|
bigint | TransactionArgument,
|
|
6177
|
-
string |
|
|
6178
|
-
string |
|
|
6179
|
-
(string |
|
|
6177
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6178
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6179
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6180
6180
|
bigint | TransactionArgument,
|
|
6181
6181
|
],
|
|
6182
6182
|
typeArguments: [
|
|
@@ -6199,8 +6199,8 @@ export namespace single_collateral {
|
|
|
6199
6199
|
export async function newManager(
|
|
6200
6200
|
client: SuiClient,
|
|
6201
6201
|
args: [
|
|
6202
|
-
string |
|
|
6203
|
-
(string |
|
|
6202
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6203
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6204
6204
|
],
|
|
6205
6205
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6206
6206
|
const tx = new TransactionBlock();
|
|
@@ -6217,9 +6217,9 @@ export namespace single_collateral {
|
|
|
6217
6217
|
export async function newPortfolioVault<T0 = any, T1 = any, T2 = any>(
|
|
6218
6218
|
client: SuiClient,
|
|
6219
6219
|
args: [
|
|
6220
|
-
string |
|
|
6221
|
-
string |
|
|
6222
|
-
string |
|
|
6220
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6221
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6222
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6223
6223
|
bigint | TransactionArgument,
|
|
6224
6224
|
number | TransactionArgument,
|
|
6225
6225
|
bigint | TransactionArgument,
|
|
@@ -6228,9 +6228,9 @@ export namespace single_collateral {
|
|
|
6228
6228
|
bigint | TransactionArgument,
|
|
6229
6229
|
bigint | TransactionArgument,
|
|
6230
6230
|
bigint | TransactionArgument,
|
|
6231
|
-
(string |
|
|
6232
|
-
(string |
|
|
6233
|
-
(string |
|
|
6231
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6232
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6233
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6234
6234
|
bigint | TransactionArgument,
|
|
6235
6235
|
bigint | TransactionArgument,
|
|
6236
6236
|
bigint | TransactionArgument,
|
|
@@ -6239,7 +6239,7 @@ export namespace single_collateral {
|
|
|
6239
6239
|
bigint | TransactionArgument,
|
|
6240
6240
|
bigint | TransactionArgument,
|
|
6241
6241
|
Boolean | TransactionArgument,
|
|
6242
|
-
(string |
|
|
6242
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6243
6243
|
],
|
|
6244
6244
|
typeArguments: [
|
|
6245
6245
|
TypeDescriptor<T0> | string,
|
|
@@ -6261,9 +6261,9 @@ export namespace single_collateral {
|
|
|
6261
6261
|
export async function removeAuthorizedUser(
|
|
6262
6262
|
client: SuiClient,
|
|
6263
6263
|
args: [
|
|
6264
|
-
string |
|
|
6265
|
-
string |
|
|
6266
|
-
(string |
|
|
6264
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6265
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6266
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6267
6267
|
],
|
|
6268
6268
|
): Promise<TypedDevInspectResults<[]>> {
|
|
6269
6269
|
const tx = new TransactionBlock();
|
|
@@ -6299,10 +6299,10 @@ export namespace single_collateral {
|
|
|
6299
6299
|
>(
|
|
6300
6300
|
client: SuiClient,
|
|
6301
6301
|
args: [
|
|
6302
|
-
string |
|
|
6303
|
-
string |
|
|
6302
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6303
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6304
6304
|
bigint | TransactionArgument,
|
|
6305
|
-
(string |
|
|
6305
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6306
6306
|
],
|
|
6307
6307
|
typeArguments: [
|
|
6308
6308
|
TypeDescriptor<T0> | string,
|
|
@@ -6324,10 +6324,10 @@ export namespace single_collateral {
|
|
|
6324
6324
|
export async function terminateAuction<T0 = any, T1 = any, T2 = any>(
|
|
6325
6325
|
client: SuiClient,
|
|
6326
6326
|
args: [
|
|
6327
|
-
string |
|
|
6328
|
-
string |
|
|
6327
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6328
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6329
6329
|
bigint | TransactionArgument,
|
|
6330
|
-
string |
|
|
6330
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6331
6331
|
],
|
|
6332
6332
|
typeArguments: [
|
|
6333
6333
|
TypeDescriptor<T0> | string,
|
|
@@ -6349,10 +6349,10 @@ export namespace single_collateral {
|
|
|
6349
6349
|
export async function terminateVault<T0 = any, T1 = any, T2 = any>(
|
|
6350
6350
|
client: SuiClient,
|
|
6351
6351
|
args: [
|
|
6352
|
-
string |
|
|
6353
|
-
string |
|
|
6352
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6353
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6354
6354
|
bigint | TransactionArgument,
|
|
6355
|
-
string |
|
|
6355
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6356
6356
|
],
|
|
6357
6357
|
typeArguments: [
|
|
6358
6358
|
TypeDescriptor<T0> | string,
|
|
@@ -6374,7 +6374,7 @@ export namespace single_collateral {
|
|
|
6374
6374
|
export async function unsubscribe<T0 = any, T1 = any, T2 = any>(
|
|
6375
6375
|
client: SuiClient,
|
|
6376
6376
|
args: [
|
|
6377
|
-
string |
|
|
6377
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6378
6378
|
bigint | TransactionArgument,
|
|
6379
6379
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
6380
6380
|
],
|
|
@@ -6398,8 +6398,8 @@ export namespace single_collateral {
|
|
|
6398
6398
|
export async function updateActiveVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
6399
6399
|
client: SuiClient,
|
|
6400
6400
|
args: [
|
|
6401
|
-
string |
|
|
6402
|
-
string |
|
|
6401
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6402
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6403
6403
|
bigint | TransactionArgument,
|
|
6404
6404
|
bigint | TransactionArgument,
|
|
6405
6405
|
bigint | TransactionArgument,
|
|
@@ -6427,8 +6427,8 @@ export namespace single_collateral {
|
|
|
6427
6427
|
export async function updateCapacity<T0 = any, T1 = any, T2 = any>(
|
|
6428
6428
|
client: SuiClient,
|
|
6429
6429
|
args: [
|
|
6430
|
-
string |
|
|
6431
|
-
string |
|
|
6430
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6431
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6432
6432
|
bigint | TransactionArgument,
|
|
6433
6433
|
bigint | TransactionArgument,
|
|
6434
6434
|
],
|
|
@@ -6452,8 +6452,8 @@ export namespace single_collateral {
|
|
|
6452
6452
|
export async function updateRestrictActivationTimePeriod(
|
|
6453
6453
|
client: SuiClient,
|
|
6454
6454
|
args: [
|
|
6455
|
-
string |
|
|
6456
|
-
string |
|
|
6455
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6456
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6457
6457
|
bigint | TransactionArgument,
|
|
6458
6458
|
bigint | TransactionArgument,
|
|
6459
6459
|
],
|
|
@@ -6476,12 +6476,12 @@ export namespace single_collateral {
|
|
|
6476
6476
|
>(
|
|
6477
6477
|
client: SuiClient,
|
|
6478
6478
|
args: [
|
|
6479
|
-
string |
|
|
6480
|
-
string |
|
|
6479
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6480
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6481
6481
|
bigint | TransactionArgument,
|
|
6482
|
-
(string |
|
|
6483
|
-
(string |
|
|
6484
|
-
(string |
|
|
6482
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6483
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6484
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6485
6485
|
bigint | TransactionArgument,
|
|
6486
6486
|
bigint | TransactionArgument,
|
|
6487
6487
|
bigint | TransactionArgument,
|
|
@@ -6508,8 +6508,8 @@ export namespace single_collateral {
|
|
|
6508
6508
|
export async function updateWarmupVaultConfig<T0 = any, T1 = any, T2 = any>(
|
|
6509
6509
|
client: SuiClient,
|
|
6510
6510
|
args: [
|
|
6511
|
-
string |
|
|
6512
|
-
string |
|
|
6511
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6512
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6513
6513
|
bigint | TransactionArgument,
|
|
6514
6514
|
bigint | TransactionArgument,
|
|
6515
6515
|
bigint | TransactionArgument,
|
|
@@ -6537,7 +6537,7 @@ export namespace single_collateral {
|
|
|
6537
6537
|
export async function withdraw<T0 = any, T1 = any, T2 = any>(
|
|
6538
6538
|
client: SuiClient,
|
|
6539
6539
|
args: [
|
|
6540
|
-
string |
|
|
6540
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
6541
6541
|
bigint | TransactionArgument,
|
|
6542
6542
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
6543
6543
|
],
|
|
@@ -6566,7 +6566,7 @@ export namespace utils {
|
|
|
6566
6566
|
export function extractBalance<T0 = any>(
|
|
6567
6567
|
tx: TransactionBlock,
|
|
6568
6568
|
args: [
|
|
6569
|
-
(string |
|
|
6569
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6570
6570
|
bigint | TransactionArgument,
|
|
6571
6571
|
],
|
|
6572
6572
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -6642,7 +6642,7 @@ export namespace utils {
|
|
|
6642
6642
|
export async function extractBalance<T0 = any>(
|
|
6643
6643
|
client: SuiClient,
|
|
6644
6644
|
args: [
|
|
6645
|
-
(string |
|
|
6645
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
6646
6646
|
bigint | TransactionArgument,
|
|
6647
6647
|
],
|
|
6648
6648
|
typeArguments: [TypeDescriptor<T0> | string],
|
|
@@ -7249,9 +7249,9 @@ export namespace vault {
|
|
|
7249
7249
|
export function activate<T0 = any, T1 = any>(
|
|
7250
7250
|
tx: TransactionBlock,
|
|
7251
7251
|
args: [
|
|
7252
|
-
string |
|
|
7253
|
-
string |
|
|
7254
|
-
string |
|
|
7252
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7253
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7254
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7255
7255
|
Boolean | TransactionArgument,
|
|
7256
7256
|
],
|
|
7257
7257
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7285,7 +7285,7 @@ export namespace vault {
|
|
|
7285
7285
|
}
|
|
7286
7286
|
export function activeBalance<T0 = any, T1 = any>(
|
|
7287
7287
|
tx: TransactionBlock,
|
|
7288
|
-
args: [string |
|
|
7288
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7289
7289
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7290
7290
|
): TransactionArgument & [TransactionArgument] {
|
|
7291
7291
|
const _args: any[] = [];
|
|
@@ -7308,7 +7308,7 @@ export namespace vault {
|
|
|
7308
7308
|
}
|
|
7309
7309
|
export function activeShareSupply<T0 = any, T1 = any>(
|
|
7310
7310
|
tx: TransactionBlock,
|
|
7311
|
-
args: [string |
|
|
7311
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7312
7312
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7313
7313
|
): TransactionArgument & [TransactionArgument] {
|
|
7314
7314
|
const _args: any[] = [];
|
|
@@ -7331,7 +7331,7 @@ export namespace vault {
|
|
|
7331
7331
|
}
|
|
7332
7332
|
export function activeUserShares<T0 = any, T1 = any>(
|
|
7333
7333
|
tx: TransactionBlock,
|
|
7334
|
-
args: [string |
|
|
7334
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7335
7335
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7336
7336
|
): TransactionArgument & [TransactionArgument] {
|
|
7337
7337
|
const _args: any[] = [];
|
|
@@ -7354,7 +7354,7 @@ export namespace vault {
|
|
|
7354
7354
|
}
|
|
7355
7355
|
export function bidderBalance<T0 = any, T1 = any>(
|
|
7356
7356
|
tx: TransactionBlock,
|
|
7357
|
-
args: [string |
|
|
7357
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7358
7358
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7359
7359
|
): TransactionArgument & [TransactionArgument] {
|
|
7360
7360
|
const _args: any[] = [];
|
|
@@ -7377,7 +7377,7 @@ export namespace vault {
|
|
|
7377
7377
|
}
|
|
7378
7378
|
export function bidderShareSupply<T0 = any, T1 = any>(
|
|
7379
7379
|
tx: TransactionBlock,
|
|
7380
|
-
args: [string |
|
|
7380
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7381
7381
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7382
7382
|
): TransactionArgument & [TransactionArgument] {
|
|
7383
7383
|
const _args: any[] = [];
|
|
@@ -7400,7 +7400,7 @@ export namespace vault {
|
|
|
7400
7400
|
}
|
|
7401
7401
|
export function bidderShares<T0 = any, T1 = any>(
|
|
7402
7402
|
tx: TransactionBlock,
|
|
7403
|
-
args: [string |
|
|
7403
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7404
7404
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7405
7405
|
): TransactionArgument & [TransactionArgument] {
|
|
7406
7406
|
const _args: any[] = [];
|
|
@@ -7424,8 +7424,8 @@ export namespace vault {
|
|
|
7424
7424
|
export function claim<T0 = any, T1 = any>(
|
|
7425
7425
|
tx: TransactionBlock,
|
|
7426
7426
|
args: [
|
|
7427
|
-
string |
|
|
7428
|
-
string |
|
|
7427
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7428
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7429
7429
|
],
|
|
7430
7430
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7431
7431
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -7451,8 +7451,8 @@ export namespace vault {
|
|
|
7451
7451
|
export function closeBidVault<T0 = any, T1 = any>(
|
|
7452
7452
|
tx: TransactionBlock,
|
|
7453
7453
|
args: [
|
|
7454
|
-
string |
|
|
7455
|
-
string |
|
|
7454
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7455
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7456
7456
|
vault.BidVault<T0, T1> | TransactionArgument,
|
|
7457
7457
|
],
|
|
7458
7458
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7481,8 +7481,8 @@ export namespace vault {
|
|
|
7481
7481
|
export function closeDepositVault<T0 = any, T1 = any>(
|
|
7482
7482
|
tx: TransactionBlock,
|
|
7483
7483
|
args: [
|
|
7484
|
-
string |
|
|
7485
|
-
string |
|
|
7484
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7485
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7486
7486
|
vault.DepositVault<T0, T1> | TransactionArgument,
|
|
7487
7487
|
],
|
|
7488
7488
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7511,9 +7511,9 @@ export namespace vault {
|
|
|
7511
7511
|
export function compound<T0 = any, T1 = any>(
|
|
7512
7512
|
tx: TransactionBlock,
|
|
7513
7513
|
args: [
|
|
7514
|
-
string |
|
|
7515
|
-
string |
|
|
7516
|
-
string |
|
|
7514
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7515
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7516
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7517
7517
|
],
|
|
7518
7518
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7519
7519
|
): TransactionArgument &
|
|
@@ -7540,7 +7540,7 @@ export namespace vault {
|
|
|
7540
7540
|
}
|
|
7541
7541
|
export function deactivatingBalance<T0 = any, T1 = any>(
|
|
7542
7542
|
tx: TransactionBlock,
|
|
7543
|
-
args: [string |
|
|
7543
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7544
7544
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7545
7545
|
): TransactionArgument & [TransactionArgument] {
|
|
7546
7546
|
const _args: any[] = [];
|
|
@@ -7563,7 +7563,7 @@ export namespace vault {
|
|
|
7563
7563
|
}
|
|
7564
7564
|
export function deactivatingShareSupply<T0 = any, T1 = any>(
|
|
7565
7565
|
tx: TransactionBlock,
|
|
7566
|
-
args: [string |
|
|
7566
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7567
7567
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7568
7568
|
): TransactionArgument & [TransactionArgument] {
|
|
7569
7569
|
const _args: any[] = [];
|
|
@@ -7586,7 +7586,7 @@ export namespace vault {
|
|
|
7586
7586
|
}
|
|
7587
7587
|
export function deactivatingUserShares<T0 = any, T1 = any>(
|
|
7588
7588
|
tx: TransactionBlock,
|
|
7589
|
-
args: [string |
|
|
7589
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7590
7590
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7591
7591
|
): TransactionArgument & [TransactionArgument] {
|
|
7592
7592
|
const _args: any[] = [];
|
|
@@ -7610,10 +7610,10 @@ export namespace vault {
|
|
|
7610
7610
|
export function delivery<T0 = any, T1 = any, T2 = any>(
|
|
7611
7611
|
tx: TransactionBlock,
|
|
7612
7612
|
args: [
|
|
7613
|
-
string |
|
|
7614
|
-
string |
|
|
7615
|
-
string |
|
|
7616
|
-
string |
|
|
7613
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7614
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7615
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7616
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7617
7617
|
bigint | TransactionArgument,
|
|
7618
7618
|
_0x2.balance.Balance<T2> | TransactionArgument,
|
|
7619
7619
|
_0x2.vec_map.VecMap<string, bigint> | TransactionArgument,
|
|
@@ -7663,11 +7663,11 @@ export namespace vault {
|
|
|
7663
7663
|
export function deliveryMultiple<T0 = any, T1 = any, T2 = any, T3 = any>(
|
|
7664
7664
|
tx: TransactionBlock,
|
|
7665
7665
|
args: [
|
|
7666
|
-
string |
|
|
7667
|
-
string |
|
|
7668
|
-
string |
|
|
7669
|
-
string |
|
|
7670
|
-
string |
|
|
7666
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7667
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7668
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7669
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7670
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7671
7671
|
bigint | TransactionArgument,
|
|
7672
7672
|
_0x2.balance.Balance<T2> | TransactionArgument,
|
|
7673
7673
|
_0x2.vec_map.VecMap<string, bigint> | TransactionArgument,
|
|
@@ -7723,9 +7723,9 @@ export namespace vault {
|
|
|
7723
7723
|
export function deposit<T0 = any, T1 = any>(
|
|
7724
7724
|
tx: TransactionBlock,
|
|
7725
7725
|
args: [
|
|
7726
|
-
string |
|
|
7727
|
-
string |
|
|
7728
|
-
(string |
|
|
7726
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7727
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7728
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
7729
7729
|
bigint | TransactionArgument,
|
|
7730
7730
|
bigint | TransactionArgument,
|
|
7731
7731
|
],
|
|
@@ -7763,8 +7763,8 @@ export namespace vault {
|
|
|
7763
7763
|
export function getActiveUserShare<T0 = any, T1 = any>(
|
|
7764
7764
|
tx: TransactionBlock,
|
|
7765
7765
|
args: [
|
|
7766
|
-
string |
|
|
7767
|
-
string |
|
|
7766
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7767
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7768
7768
|
string | TransactionArgument,
|
|
7769
7769
|
],
|
|
7770
7770
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7792,7 +7792,7 @@ export namespace vault {
|
|
|
7792
7792
|
}
|
|
7793
7793
|
export function getBidVaultBalance<T0 = any, T1 = any>(
|
|
7794
7794
|
tx: TransactionBlock,
|
|
7795
|
-
args: [string |
|
|
7795
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7796
7796
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7797
7797
|
): TransactionArgument & [TransactionArgument] {
|
|
7798
7798
|
const _args: any[] = [];
|
|
@@ -7815,7 +7815,7 @@ export namespace vault {
|
|
|
7815
7815
|
}
|
|
7816
7816
|
export function getBidVaultShareSupply<T0 = any, T1 = any>(
|
|
7817
7817
|
tx: TransactionBlock,
|
|
7818
|
-
args: [string |
|
|
7818
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7819
7819
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7820
7820
|
): TransactionArgument & [TransactionArgument] {
|
|
7821
7821
|
const _args: any[] = [];
|
|
@@ -7839,8 +7839,8 @@ export namespace vault {
|
|
|
7839
7839
|
export function getBidderUserShare<T0 = any, T1 = any>(
|
|
7840
7840
|
tx: TransactionBlock,
|
|
7841
7841
|
args: [
|
|
7842
|
-
string |
|
|
7843
|
-
string |
|
|
7842
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7843
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7844
7844
|
string | TransactionArgument,
|
|
7845
7845
|
],
|
|
7846
7846
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7869,8 +7869,8 @@ export namespace vault {
|
|
|
7869
7869
|
export function getDeactivatingUserShare<T0 = any, T1 = any>(
|
|
7870
7870
|
tx: TransactionBlock,
|
|
7871
7871
|
args: [
|
|
7872
|
-
string |
|
|
7873
|
-
string |
|
|
7872
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7873
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7874
7874
|
string | TransactionArgument,
|
|
7875
7875
|
],
|
|
7876
7876
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7898,7 +7898,7 @@ export namespace vault {
|
|
|
7898
7898
|
}
|
|
7899
7899
|
export function getDepositVaultBalance<T0 = any, T1 = any>(
|
|
7900
7900
|
tx: TransactionBlock,
|
|
7901
|
-
args: [string |
|
|
7901
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7902
7902
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7903
7903
|
): TransactionArgument & [TransactionArgument] {
|
|
7904
7904
|
const _args: any[] = [];
|
|
@@ -7921,7 +7921,7 @@ export namespace vault {
|
|
|
7921
7921
|
}
|
|
7922
7922
|
export function getDepositVaultShareSupply<T0 = any, T1 = any>(
|
|
7923
7923
|
tx: TransactionBlock,
|
|
7924
|
-
args: [string |
|
|
7924
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
7925
7925
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
7926
7926
|
): TransactionArgument & [TransactionArgument] {
|
|
7927
7927
|
const _args: any[] = [];
|
|
@@ -7945,8 +7945,8 @@ export namespace vault {
|
|
|
7945
7945
|
export function getInactiveUserShare<T0 = any, T1 = any>(
|
|
7946
7946
|
tx: TransactionBlock,
|
|
7947
7947
|
args: [
|
|
7948
|
-
string |
|
|
7949
|
-
string |
|
|
7948
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7949
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7950
7950
|
string | TransactionArgument,
|
|
7951
7951
|
],
|
|
7952
7952
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -7975,8 +7975,8 @@ export namespace vault {
|
|
|
7975
7975
|
export function getPerformanceFeeUserShare<T0 = any, T1 = any>(
|
|
7976
7976
|
tx: TransactionBlock,
|
|
7977
7977
|
args: [
|
|
7978
|
-
string |
|
|
7979
|
-
string |
|
|
7978
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7979
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
7980
7980
|
string | TransactionArgument,
|
|
7981
7981
|
],
|
|
7982
7982
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8005,8 +8005,8 @@ export namespace vault {
|
|
|
8005
8005
|
export function getPremiumUserShare<T0 = any, T1 = any>(
|
|
8006
8006
|
tx: TransactionBlock,
|
|
8007
8007
|
args: [
|
|
8008
|
-
string |
|
|
8009
|
-
string |
|
|
8008
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8009
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8010
8010
|
string | TransactionArgument,
|
|
8011
8011
|
],
|
|
8012
8012
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8035,8 +8035,8 @@ export namespace vault {
|
|
|
8035
8035
|
export function getWarmupUserShare<T0 = any, T1 = any>(
|
|
8036
8036
|
tx: TransactionBlock,
|
|
8037
8037
|
args: [
|
|
8038
|
-
string |
|
|
8039
|
-
string |
|
|
8038
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8039
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8040
8040
|
string | TransactionArgument,
|
|
8041
8041
|
],
|
|
8042
8042
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8065,8 +8065,8 @@ export namespace vault {
|
|
|
8065
8065
|
export function harvest<T0 = any, T1 = any>(
|
|
8066
8066
|
tx: TransactionBlock,
|
|
8067
8067
|
args: [
|
|
8068
|
-
string |
|
|
8069
|
-
string |
|
|
8068
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8069
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8070
8070
|
],
|
|
8071
8071
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8072
8072
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -8091,7 +8091,7 @@ export namespace vault {
|
|
|
8091
8091
|
}
|
|
8092
8092
|
export function hasNext<T0 = any, T1 = any>(
|
|
8093
8093
|
tx: TransactionBlock,
|
|
8094
|
-
args: [string |
|
|
8094
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8095
8095
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8096
8096
|
): TransactionArgument & [TransactionArgument] {
|
|
8097
8097
|
const _args: any[] = [];
|
|
@@ -8114,7 +8114,7 @@ export namespace vault {
|
|
|
8114
8114
|
}
|
|
8115
8115
|
export function inactiveBalance<T0 = any, T1 = any>(
|
|
8116
8116
|
tx: TransactionBlock,
|
|
8117
|
-
args: [string |
|
|
8117
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8118
8118
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8119
8119
|
): TransactionArgument & [TransactionArgument] {
|
|
8120
8120
|
const _args: any[] = [];
|
|
@@ -8137,7 +8137,7 @@ export namespace vault {
|
|
|
8137
8137
|
}
|
|
8138
8138
|
export function inactiveShareSupply<T0 = any, T1 = any>(
|
|
8139
8139
|
tx: TransactionBlock,
|
|
8140
|
-
args: [string |
|
|
8140
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8141
8141
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8142
8142
|
): TransactionArgument & [TransactionArgument] {
|
|
8143
8143
|
const _args: any[] = [];
|
|
@@ -8160,7 +8160,7 @@ export namespace vault {
|
|
|
8160
8160
|
}
|
|
8161
8161
|
export function inactiveUserShares<T0 = any, T1 = any>(
|
|
8162
8162
|
tx: TransactionBlock,
|
|
8163
|
-
args: [string |
|
|
8163
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8164
8164
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8165
8165
|
): TransactionArgument & [TransactionArgument] {
|
|
8166
8166
|
const _args: any[] = [];
|
|
@@ -8184,8 +8184,8 @@ export namespace vault {
|
|
|
8184
8184
|
export function isActiveUser<T0 = any, T1 = any>(
|
|
8185
8185
|
tx: TransactionBlock,
|
|
8186
8186
|
args: [
|
|
8187
|
-
string |
|
|
8188
|
-
string |
|
|
8187
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8188
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8189
8189
|
string | TransactionArgument,
|
|
8190
8190
|
],
|
|
8191
8191
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8214,8 +8214,8 @@ export namespace vault {
|
|
|
8214
8214
|
export function isDeactivatingUser<T0 = any, T1 = any>(
|
|
8215
8215
|
tx: TransactionBlock,
|
|
8216
8216
|
args: [
|
|
8217
|
-
string |
|
|
8218
|
-
string |
|
|
8217
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8218
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8219
8219
|
string | TransactionArgument,
|
|
8220
8220
|
],
|
|
8221
8221
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8244,8 +8244,8 @@ export namespace vault {
|
|
|
8244
8244
|
export function isInactiveUser<T0 = any, T1 = any>(
|
|
8245
8245
|
tx: TransactionBlock,
|
|
8246
8246
|
args: [
|
|
8247
|
-
string |
|
|
8248
|
-
string |
|
|
8247
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8248
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8249
8249
|
string | TransactionArgument,
|
|
8250
8250
|
],
|
|
8251
8251
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8274,8 +8274,8 @@ export namespace vault {
|
|
|
8274
8274
|
export function isWarmupUser<T0 = any, T1 = any>(
|
|
8275
8275
|
tx: TransactionBlock,
|
|
8276
8276
|
args: [
|
|
8277
|
-
string |
|
|
8278
|
-
string |
|
|
8277
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8278
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8279
8279
|
string | TransactionArgument,
|
|
8280
8280
|
],
|
|
8281
8281
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8305,7 +8305,7 @@ export namespace vault {
|
|
|
8305
8305
|
tx: TransactionBlock,
|
|
8306
8306
|
args: [
|
|
8307
8307
|
bigint | TransactionArgument,
|
|
8308
|
-
string |
|
|
8308
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8309
8309
|
],
|
|
8310
8310
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8311
8311
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -8332,7 +8332,7 @@ export namespace vault {
|
|
|
8332
8332
|
tx: TransactionBlock,
|
|
8333
8333
|
args: [
|
|
8334
8334
|
bigint | TransactionArgument,
|
|
8335
|
-
string |
|
|
8335
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8336
8336
|
],
|
|
8337
8337
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8338
8338
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -8370,7 +8370,7 @@ export namespace vault {
|
|
|
8370
8370
|
}
|
|
8371
8371
|
export function performanceFeeBalance<T0 = any, T1 = any>(
|
|
8372
8372
|
tx: TransactionBlock,
|
|
8373
|
-
args: [string |
|
|
8373
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8374
8374
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8375
8375
|
): TransactionArgument & [TransactionArgument] {
|
|
8376
8376
|
const _args: any[] = [];
|
|
@@ -8393,7 +8393,7 @@ export namespace vault {
|
|
|
8393
8393
|
}
|
|
8394
8394
|
export function performanceFeeShareSupply<T0 = any, T1 = any>(
|
|
8395
8395
|
tx: TransactionBlock,
|
|
8396
|
-
args: [string |
|
|
8396
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8397
8397
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8398
8398
|
): TransactionArgument & [TransactionArgument] {
|
|
8399
8399
|
const _args: any[] = [];
|
|
@@ -8416,7 +8416,7 @@ export namespace vault {
|
|
|
8416
8416
|
}
|
|
8417
8417
|
export function performanceFeeShares<T0 = any, T1 = any>(
|
|
8418
8418
|
tx: TransactionBlock,
|
|
8419
|
-
args: [string |
|
|
8419
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8420
8420
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8421
8421
|
): TransactionArgument & [TransactionArgument] {
|
|
8422
8422
|
const _args: any[] = [];
|
|
@@ -8439,7 +8439,7 @@ export namespace vault {
|
|
|
8439
8439
|
}
|
|
8440
8440
|
export function premiumBalance<T0 = any, T1 = any>(
|
|
8441
8441
|
tx: TransactionBlock,
|
|
8442
|
-
args: [string |
|
|
8442
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8443
8443
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8444
8444
|
): TransactionArgument & [TransactionArgument] {
|
|
8445
8445
|
const _args: any[] = [];
|
|
@@ -8462,7 +8462,7 @@ export namespace vault {
|
|
|
8462
8462
|
}
|
|
8463
8463
|
export function premiumShareSupply<T0 = any, T1 = any>(
|
|
8464
8464
|
tx: TransactionBlock,
|
|
8465
|
-
args: [string |
|
|
8465
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8466
8466
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8467
8467
|
): TransactionArgument & [TransactionArgument] {
|
|
8468
8468
|
const _args: any[] = [];
|
|
@@ -8485,7 +8485,7 @@ export namespace vault {
|
|
|
8485
8485
|
}
|
|
8486
8486
|
export function premiumShares<T0 = any, T1 = any>(
|
|
8487
8487
|
tx: TransactionBlock,
|
|
8488
|
-
args: [string |
|
|
8488
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8489
8489
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8490
8490
|
): TransactionArgument & [TransactionArgument] {
|
|
8491
8491
|
const _args: any[] = [];
|
|
@@ -8509,9 +8509,9 @@ export namespace vault {
|
|
|
8509
8509
|
export function refund<T0 = any, T1 = any>(
|
|
8510
8510
|
tx: TransactionBlock,
|
|
8511
8511
|
args: [
|
|
8512
|
-
string |
|
|
8513
|
-
string |
|
|
8514
|
-
string |
|
|
8512
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8513
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8514
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8515
8515
|
bigint | TransactionArgument,
|
|
8516
8516
|
],
|
|
8517
8517
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8546,10 +8546,10 @@ export namespace vault {
|
|
|
8546
8546
|
export function settleFund<T0 = any, T1 = any, T2 = any, T3 = any>(
|
|
8547
8547
|
tx: TransactionBlock,
|
|
8548
8548
|
args: [
|
|
8549
|
-
string |
|
|
8550
|
-
string |
|
|
8551
|
-
string |
|
|
8552
|
-
string |
|
|
8549
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8550
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8551
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8552
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8553
8553
|
bigint | TransactionArgument,
|
|
8554
8554
|
bigint | TransactionArgument,
|
|
8555
8555
|
bigint | TransactionArgument,
|
|
@@ -8606,11 +8606,11 @@ export namespace vault {
|
|
|
8606
8606
|
export function settleFundMultiple<T0 = any, T1 = any, T2 = any, T3 = any>(
|
|
8607
8607
|
tx: TransactionBlock,
|
|
8608
8608
|
args: [
|
|
8609
|
-
string |
|
|
8610
|
-
string |
|
|
8611
|
-
string |
|
|
8612
|
-
string |
|
|
8613
|
-
string |
|
|
8609
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8610
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8611
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8612
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8613
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8614
8614
|
bigint | TransactionArgument,
|
|
8615
8615
|
bigint | TransactionArgument,
|
|
8616
8616
|
bigint | TransactionArgument,
|
|
@@ -8681,8 +8681,8 @@ export namespace vault {
|
|
|
8681
8681
|
export function unsubscribe<T0 = any, T1 = any>(
|
|
8682
8682
|
tx: TransactionBlock,
|
|
8683
8683
|
args: [
|
|
8684
|
-
string |
|
|
8685
|
-
string |
|
|
8684
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8685
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8686
8686
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
8687
8687
|
],
|
|
8688
8688
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8710,7 +8710,7 @@ export namespace vault {
|
|
|
8710
8710
|
}
|
|
8711
8711
|
export function userShareRegistryUid(
|
|
8712
8712
|
tx: TransactionBlock,
|
|
8713
|
-
args: [string |
|
|
8713
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8714
8714
|
): TransactionArgument & [TransactionArgument] {
|
|
8715
8715
|
const _args: any[] = [];
|
|
8716
8716
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -8724,7 +8724,7 @@ export namespace vault {
|
|
|
8724
8724
|
}
|
|
8725
8725
|
export function warmupBalance<T0 = any, T1 = any>(
|
|
8726
8726
|
tx: TransactionBlock,
|
|
8727
|
-
args: [string |
|
|
8727
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8728
8728
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8729
8729
|
): TransactionArgument & [TransactionArgument] {
|
|
8730
8730
|
const _args: any[] = [];
|
|
@@ -8747,7 +8747,7 @@ export namespace vault {
|
|
|
8747
8747
|
}
|
|
8748
8748
|
export function warmupShareSupply<T0 = any, T1 = any>(
|
|
8749
8749
|
tx: TransactionBlock,
|
|
8750
|
-
args: [string |
|
|
8750
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8751
8751
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8752
8752
|
): TransactionArgument & [TransactionArgument] {
|
|
8753
8753
|
const _args: any[] = [];
|
|
@@ -8770,7 +8770,7 @@ export namespace vault {
|
|
|
8770
8770
|
}
|
|
8771
8771
|
export function warmupUserShares<T0 = any, T1 = any>(
|
|
8772
8772
|
tx: TransactionBlock,
|
|
8773
|
-
args: [string |
|
|
8773
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8774
8774
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8775
8775
|
): TransactionArgument & [TransactionArgument] {
|
|
8776
8776
|
const _args: any[] = [];
|
|
@@ -8794,8 +8794,8 @@ export namespace vault {
|
|
|
8794
8794
|
export function withdraw<T0 = any, T1 = any>(
|
|
8795
8795
|
tx: TransactionBlock,
|
|
8796
8796
|
args: [
|
|
8797
|
-
string |
|
|
8798
|
-
string |
|
|
8797
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8798
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8799
8799
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
8800
8800
|
],
|
|
8801
8801
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8826,9 +8826,9 @@ export namespace vault {
|
|
|
8826
8826
|
export async function activate<T0 = any, T1 = any>(
|
|
8827
8827
|
client: SuiClient,
|
|
8828
8828
|
args: [
|
|
8829
|
-
string |
|
|
8830
|
-
string |
|
|
8831
|
-
string |
|
|
8829
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8830
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8831
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8832
8832
|
Boolean | TransactionArgument,
|
|
8833
8833
|
],
|
|
8834
8834
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8846,7 +8846,7 @@ export namespace vault {
|
|
|
8846
8846
|
}
|
|
8847
8847
|
export async function activeBalance<T0 = any, T1 = any>(
|
|
8848
8848
|
client: SuiClient,
|
|
8849
|
-
args: [string |
|
|
8849
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8850
8850
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8851
8851
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8852
8852
|
const tx = new TransactionBlock();
|
|
@@ -8862,7 +8862,7 @@ export namespace vault {
|
|
|
8862
8862
|
}
|
|
8863
8863
|
export async function activeShareSupply<T0 = any, T1 = any>(
|
|
8864
8864
|
client: SuiClient,
|
|
8865
|
-
args: [string |
|
|
8865
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8866
8866
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8867
8867
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8868
8868
|
const tx = new TransactionBlock();
|
|
@@ -8878,7 +8878,7 @@ export namespace vault {
|
|
|
8878
8878
|
}
|
|
8879
8879
|
export async function activeUserShares<T0 = any, T1 = any>(
|
|
8880
8880
|
client: SuiClient,
|
|
8881
|
-
args: [string |
|
|
8881
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8882
8882
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8883
8883
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
8884
8884
|
const tx = new TransactionBlock();
|
|
@@ -8894,7 +8894,7 @@ export namespace vault {
|
|
|
8894
8894
|
}
|
|
8895
8895
|
export async function bidderBalance<T0 = any, T1 = any>(
|
|
8896
8896
|
client: SuiClient,
|
|
8897
|
-
args: [string |
|
|
8897
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8898
8898
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8899
8899
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8900
8900
|
const tx = new TransactionBlock();
|
|
@@ -8910,7 +8910,7 @@ export namespace vault {
|
|
|
8910
8910
|
}
|
|
8911
8911
|
export async function bidderShareSupply<T0 = any, T1 = any>(
|
|
8912
8912
|
client: SuiClient,
|
|
8913
|
-
args: [string |
|
|
8913
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8914
8914
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8915
8915
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
8916
8916
|
const tx = new TransactionBlock();
|
|
@@ -8926,7 +8926,7 @@ export namespace vault {
|
|
|
8926
8926
|
}
|
|
8927
8927
|
export async function bidderShares<T0 = any, T1 = any>(
|
|
8928
8928
|
client: SuiClient,
|
|
8929
|
-
args: [string |
|
|
8929
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
8930
8930
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8931
8931
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
8932
8932
|
const tx = new TransactionBlock();
|
|
@@ -8943,8 +8943,8 @@ export namespace vault {
|
|
|
8943
8943
|
export async function claim<T0 = any, T1 = any>(
|
|
8944
8944
|
client: SuiClient,
|
|
8945
8945
|
args: [
|
|
8946
|
-
string |
|
|
8947
|
-
string |
|
|
8946
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8947
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8948
8948
|
],
|
|
8949
8949
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
8950
8950
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
@@ -8962,8 +8962,8 @@ export namespace vault {
|
|
|
8962
8962
|
export async function closeBidVault<T0 = any, T1 = any>(
|
|
8963
8963
|
client: SuiClient,
|
|
8964
8964
|
args: [
|
|
8965
|
-
string |
|
|
8966
|
-
string |
|
|
8965
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8966
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8967
8967
|
vault.BidVault<T0, T1> | TransactionArgument,
|
|
8968
8968
|
],
|
|
8969
8969
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -8994,8 +8994,8 @@ export namespace vault {
|
|
|
8994
8994
|
export async function closeDepositVault<T0 = any, T1 = any>(
|
|
8995
8995
|
client: SuiClient,
|
|
8996
8996
|
args: [
|
|
8997
|
-
string |
|
|
8998
|
-
string |
|
|
8997
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8998
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
8999
8999
|
vault.DepositVault<T0, T1> | TransactionArgument,
|
|
9000
9000
|
],
|
|
9001
9001
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9028,9 +9028,9 @@ export namespace vault {
|
|
|
9028
9028
|
export async function compound<T0 = any, T1 = any>(
|
|
9029
9029
|
client: SuiClient,
|
|
9030
9030
|
args: [
|
|
9031
|
-
string |
|
|
9032
|
-
string |
|
|
9033
|
-
string |
|
|
9031
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9032
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9033
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9034
9034
|
],
|
|
9035
9035
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9036
9036
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
@@ -9047,7 +9047,7 @@ export namespace vault {
|
|
|
9047
9047
|
}
|
|
9048
9048
|
export async function deactivatingBalance<T0 = any, T1 = any>(
|
|
9049
9049
|
client: SuiClient,
|
|
9050
|
-
args: [string |
|
|
9050
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9051
9051
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9052
9052
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9053
9053
|
const tx = new TransactionBlock();
|
|
@@ -9063,7 +9063,7 @@ export namespace vault {
|
|
|
9063
9063
|
}
|
|
9064
9064
|
export async function deactivatingShareSupply<T0 = any, T1 = any>(
|
|
9065
9065
|
client: SuiClient,
|
|
9066
|
-
args: [string |
|
|
9066
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9067
9067
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9068
9068
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9069
9069
|
const tx = new TransactionBlock();
|
|
@@ -9079,7 +9079,7 @@ export namespace vault {
|
|
|
9079
9079
|
}
|
|
9080
9080
|
export async function deactivatingUserShares<T0 = any, T1 = any>(
|
|
9081
9081
|
client: SuiClient,
|
|
9082
|
-
args: [string |
|
|
9082
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9083
9083
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9084
9084
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9085
9085
|
const tx = new TransactionBlock();
|
|
@@ -9096,10 +9096,10 @@ export namespace vault {
|
|
|
9096
9096
|
export async function delivery<T0 = any, T1 = any, T2 = any>(
|
|
9097
9097
|
client: SuiClient,
|
|
9098
9098
|
args: [
|
|
9099
|
-
string |
|
|
9100
|
-
string |
|
|
9101
|
-
string |
|
|
9102
|
-
string |
|
|
9099
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9100
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9101
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9102
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9103
9103
|
bigint | TransactionArgument,
|
|
9104
9104
|
_0x2.balance.Balance<T2> | TransactionArgument,
|
|
9105
9105
|
_0x2.vec_map.VecMap<string, bigint> | TransactionArgument,
|
|
@@ -9129,11 +9129,11 @@ export namespace vault {
|
|
|
9129
9129
|
>(
|
|
9130
9130
|
client: SuiClient,
|
|
9131
9131
|
args: [
|
|
9132
|
-
string |
|
|
9133
|
-
string |
|
|
9134
|
-
string |
|
|
9135
|
-
string |
|
|
9136
|
-
string |
|
|
9132
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9133
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9134
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9135
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9136
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9137
9137
|
bigint | TransactionArgument,
|
|
9138
9138
|
_0x2.balance.Balance<T2> | TransactionArgument,
|
|
9139
9139
|
_0x2.vec_map.VecMap<string, bigint> | TransactionArgument,
|
|
@@ -9159,9 +9159,9 @@ export namespace vault {
|
|
|
9159
9159
|
export async function deposit<T0 = any, T1 = any>(
|
|
9160
9160
|
client: SuiClient,
|
|
9161
9161
|
args: [
|
|
9162
|
-
string |
|
|
9163
|
-
string |
|
|
9164
|
-
(string |
|
|
9162
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9163
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9164
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
9165
9165
|
bigint | TransactionArgument,
|
|
9166
9166
|
bigint | TransactionArgument,
|
|
9167
9167
|
],
|
|
@@ -9181,8 +9181,8 @@ export namespace vault {
|
|
|
9181
9181
|
export async function getActiveUserShare<T0 = any, T1 = any>(
|
|
9182
9182
|
client: SuiClient,
|
|
9183
9183
|
args: [
|
|
9184
|
-
string |
|
|
9185
|
-
string |
|
|
9184
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9185
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9186
9186
|
string | TransactionArgument,
|
|
9187
9187
|
],
|
|
9188
9188
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9200,7 +9200,7 @@ export namespace vault {
|
|
|
9200
9200
|
}
|
|
9201
9201
|
export async function getBidVaultBalance<T0 = any, T1 = any>(
|
|
9202
9202
|
client: SuiClient,
|
|
9203
|
-
args: [string |
|
|
9203
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9204
9204
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9205
9205
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
9206
9206
|
const tx = new TransactionBlock();
|
|
@@ -9216,7 +9216,7 @@ export namespace vault {
|
|
|
9216
9216
|
}
|
|
9217
9217
|
export async function getBidVaultShareSupply<T0 = any, T1 = any>(
|
|
9218
9218
|
client: SuiClient,
|
|
9219
|
-
args: [string |
|
|
9219
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9220
9220
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9221
9221
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
9222
9222
|
const tx = new TransactionBlock();
|
|
@@ -9233,8 +9233,8 @@ export namespace vault {
|
|
|
9233
9233
|
export async function getBidderUserShare<T0 = any, T1 = any>(
|
|
9234
9234
|
client: SuiClient,
|
|
9235
9235
|
args: [
|
|
9236
|
-
string |
|
|
9237
|
-
string |
|
|
9236
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9237
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9238
9238
|
string | TransactionArgument,
|
|
9239
9239
|
],
|
|
9240
9240
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9253,8 +9253,8 @@ export namespace vault {
|
|
|
9253
9253
|
export async function getDeactivatingUserShare<T0 = any, T1 = any>(
|
|
9254
9254
|
client: SuiClient,
|
|
9255
9255
|
args: [
|
|
9256
|
-
string |
|
|
9257
|
-
string |
|
|
9256
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9257
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9258
9258
|
string | TransactionArgument,
|
|
9259
9259
|
],
|
|
9260
9260
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9272,7 +9272,7 @@ export namespace vault {
|
|
|
9272
9272
|
}
|
|
9273
9273
|
export async function getDepositVaultBalance<T0 = any, T1 = any>(
|
|
9274
9274
|
client: SuiClient,
|
|
9275
|
-
args: [string |
|
|
9275
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9276
9276
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9277
9277
|
): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
|
|
9278
9278
|
const tx = new TransactionBlock();
|
|
@@ -9288,7 +9288,7 @@ export namespace vault {
|
|
|
9288
9288
|
}
|
|
9289
9289
|
export async function getDepositVaultShareSupply<T0 = any, T1 = any>(
|
|
9290
9290
|
client: SuiClient,
|
|
9291
|
-
args: [string |
|
|
9291
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9292
9292
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9293
9293
|
): Promise<TypedDevInspectResults<[bigint, bigint, bigint, bigint]>> {
|
|
9294
9294
|
const tx = new TransactionBlock();
|
|
@@ -9305,8 +9305,8 @@ export namespace vault {
|
|
|
9305
9305
|
export async function getInactiveUserShare<T0 = any, T1 = any>(
|
|
9306
9306
|
client: SuiClient,
|
|
9307
9307
|
args: [
|
|
9308
|
-
string |
|
|
9309
|
-
string |
|
|
9308
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9309
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9310
9310
|
string | TransactionArgument,
|
|
9311
9311
|
],
|
|
9312
9312
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9325,8 +9325,8 @@ export namespace vault {
|
|
|
9325
9325
|
export async function getPerformanceFeeUserShare<T0 = any, T1 = any>(
|
|
9326
9326
|
client: SuiClient,
|
|
9327
9327
|
args: [
|
|
9328
|
-
string |
|
|
9329
|
-
string |
|
|
9328
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9329
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9330
9330
|
string | TransactionArgument,
|
|
9331
9331
|
],
|
|
9332
9332
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9345,8 +9345,8 @@ export namespace vault {
|
|
|
9345
9345
|
export async function getPremiumUserShare<T0 = any, T1 = any>(
|
|
9346
9346
|
client: SuiClient,
|
|
9347
9347
|
args: [
|
|
9348
|
-
string |
|
|
9349
|
-
string |
|
|
9348
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9349
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9350
9350
|
string | TransactionArgument,
|
|
9351
9351
|
],
|
|
9352
9352
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9365,8 +9365,8 @@ export namespace vault {
|
|
|
9365
9365
|
export async function getWarmupUserShare<T0 = any, T1 = any>(
|
|
9366
9366
|
client: SuiClient,
|
|
9367
9367
|
args: [
|
|
9368
|
-
string |
|
|
9369
|
-
string |
|
|
9368
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9369
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9370
9370
|
string | TransactionArgument,
|
|
9371
9371
|
],
|
|
9372
9372
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9385,8 +9385,8 @@ export namespace vault {
|
|
|
9385
9385
|
export async function harvest<T0 = any, T1 = any>(
|
|
9386
9386
|
client: SuiClient,
|
|
9387
9387
|
args: [
|
|
9388
|
-
string |
|
|
9389
|
-
string |
|
|
9388
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9389
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9390
9390
|
],
|
|
9391
9391
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9392
9392
|
): Promise<TypedDevInspectResults<[bigint, bigint]>> {
|
|
@@ -9403,7 +9403,7 @@ export namespace vault {
|
|
|
9403
9403
|
}
|
|
9404
9404
|
export async function hasNext<T0 = any, T1 = any>(
|
|
9405
9405
|
client: SuiClient,
|
|
9406
|
-
args: [string |
|
|
9406
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9407
9407
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9408
9408
|
): Promise<TypedDevInspectResults<[Boolean]>> {
|
|
9409
9409
|
const tx = new TransactionBlock();
|
|
@@ -9419,7 +9419,7 @@ export namespace vault {
|
|
|
9419
9419
|
}
|
|
9420
9420
|
export async function inactiveBalance<T0 = any, T1 = any>(
|
|
9421
9421
|
client: SuiClient,
|
|
9422
|
-
args: [string |
|
|
9422
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9423
9423
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9424
9424
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9425
9425
|
const tx = new TransactionBlock();
|
|
@@ -9435,7 +9435,7 @@ export namespace vault {
|
|
|
9435
9435
|
}
|
|
9436
9436
|
export async function inactiveShareSupply<T0 = any, T1 = any>(
|
|
9437
9437
|
client: SuiClient,
|
|
9438
|
-
args: [string |
|
|
9438
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9439
9439
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9440
9440
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9441
9441
|
const tx = new TransactionBlock();
|
|
@@ -9451,7 +9451,7 @@ export namespace vault {
|
|
|
9451
9451
|
}
|
|
9452
9452
|
export async function inactiveUserShares<T0 = any, T1 = any>(
|
|
9453
9453
|
client: SuiClient,
|
|
9454
|
-
args: [string |
|
|
9454
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9455
9455
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9456
9456
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9457
9457
|
const tx = new TransactionBlock();
|
|
@@ -9468,8 +9468,8 @@ export namespace vault {
|
|
|
9468
9468
|
export async function isActiveUser<T0 = any, T1 = any>(
|
|
9469
9469
|
client: SuiClient,
|
|
9470
9470
|
args: [
|
|
9471
|
-
string |
|
|
9472
|
-
string |
|
|
9471
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9472
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9473
9473
|
string | TransactionArgument,
|
|
9474
9474
|
],
|
|
9475
9475
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9488,8 +9488,8 @@ export namespace vault {
|
|
|
9488
9488
|
export async function isDeactivatingUser<T0 = any, T1 = any>(
|
|
9489
9489
|
client: SuiClient,
|
|
9490
9490
|
args: [
|
|
9491
|
-
string |
|
|
9492
|
-
string |
|
|
9491
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9492
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9493
9493
|
string | TransactionArgument,
|
|
9494
9494
|
],
|
|
9495
9495
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9508,8 +9508,8 @@ export namespace vault {
|
|
|
9508
9508
|
export async function isInactiveUser<T0 = any, T1 = any>(
|
|
9509
9509
|
client: SuiClient,
|
|
9510
9510
|
args: [
|
|
9511
|
-
string |
|
|
9512
|
-
string |
|
|
9511
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9512
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9513
9513
|
string | TransactionArgument,
|
|
9514
9514
|
],
|
|
9515
9515
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9528,8 +9528,8 @@ export namespace vault {
|
|
|
9528
9528
|
export async function isWarmupUser<T0 = any, T1 = any>(
|
|
9529
9529
|
client: SuiClient,
|
|
9530
9530
|
args: [
|
|
9531
|
-
string |
|
|
9532
|
-
string |
|
|
9531
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9532
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9533
9533
|
string | TransactionArgument,
|
|
9534
9534
|
],
|
|
9535
9535
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9549,7 +9549,7 @@ export namespace vault {
|
|
|
9549
9549
|
client: SuiClient,
|
|
9550
9550
|
args: [
|
|
9551
9551
|
bigint | TransactionArgument,
|
|
9552
|
-
string |
|
|
9552
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9553
9553
|
],
|
|
9554
9554
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9555
9555
|
): Promise<TypedDevInspectResults<[vault.BidVault<T0, T1>]>> {
|
|
@@ -9568,7 +9568,7 @@ export namespace vault {
|
|
|
9568
9568
|
client: SuiClient,
|
|
9569
9569
|
args: [
|
|
9570
9570
|
bigint | TransactionArgument,
|
|
9571
|
-
string |
|
|
9571
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9572
9572
|
],
|
|
9573
9573
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9574
9574
|
): Promise<TypedDevInspectResults<[vault.DepositVault<T0, T1>]>> {
|
|
@@ -9600,7 +9600,7 @@ export namespace vault {
|
|
|
9600
9600
|
}
|
|
9601
9601
|
export async function performanceFeeBalance<T0 = any, T1 = any>(
|
|
9602
9602
|
client: SuiClient,
|
|
9603
|
-
args: [string |
|
|
9603
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9604
9604
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9605
9605
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9606
9606
|
const tx = new TransactionBlock();
|
|
@@ -9616,7 +9616,7 @@ export namespace vault {
|
|
|
9616
9616
|
}
|
|
9617
9617
|
export async function performanceFeeShareSupply<T0 = any, T1 = any>(
|
|
9618
9618
|
client: SuiClient,
|
|
9619
|
-
args: [string |
|
|
9619
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9620
9620
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9621
9621
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9622
9622
|
const tx = new TransactionBlock();
|
|
@@ -9632,7 +9632,7 @@ export namespace vault {
|
|
|
9632
9632
|
}
|
|
9633
9633
|
export async function performanceFeeShares<T0 = any, T1 = any>(
|
|
9634
9634
|
client: SuiClient,
|
|
9635
|
-
args: [string |
|
|
9635
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9636
9636
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9637
9637
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9638
9638
|
const tx = new TransactionBlock();
|
|
@@ -9648,7 +9648,7 @@ export namespace vault {
|
|
|
9648
9648
|
}
|
|
9649
9649
|
export async function premiumBalance<T0 = any, T1 = any>(
|
|
9650
9650
|
client: SuiClient,
|
|
9651
|
-
args: [string |
|
|
9651
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9652
9652
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9653
9653
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9654
9654
|
const tx = new TransactionBlock();
|
|
@@ -9664,7 +9664,7 @@ export namespace vault {
|
|
|
9664
9664
|
}
|
|
9665
9665
|
export async function premiumShareSupply<T0 = any, T1 = any>(
|
|
9666
9666
|
client: SuiClient,
|
|
9667
|
-
args: [string |
|
|
9667
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9668
9668
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9669
9669
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9670
9670
|
const tx = new TransactionBlock();
|
|
@@ -9680,7 +9680,7 @@ export namespace vault {
|
|
|
9680
9680
|
}
|
|
9681
9681
|
export async function premiumShares<T0 = any, T1 = any>(
|
|
9682
9682
|
client: SuiClient,
|
|
9683
|
-
args: [string |
|
|
9683
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9684
9684
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9685
9685
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9686
9686
|
const tx = new TransactionBlock();
|
|
@@ -9697,9 +9697,9 @@ export namespace vault {
|
|
|
9697
9697
|
export async function refund<T0 = any, T1 = any>(
|
|
9698
9698
|
client: SuiClient,
|
|
9699
9699
|
args: [
|
|
9700
|
-
string |
|
|
9701
|
-
string |
|
|
9702
|
-
string |
|
|
9700
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9701
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9702
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9703
9703
|
bigint | TransactionArgument,
|
|
9704
9704
|
],
|
|
9705
9705
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9718,10 +9718,10 @@ export namespace vault {
|
|
|
9718
9718
|
export async function settleFund<T0 = any, T1 = any, T2 = any, T3 = any>(
|
|
9719
9719
|
client: SuiClient,
|
|
9720
9720
|
args: [
|
|
9721
|
-
string |
|
|
9722
|
-
string |
|
|
9723
|
-
string |
|
|
9724
|
-
string |
|
|
9721
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9722
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9723
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9724
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9725
9725
|
bigint | TransactionArgument,
|
|
9726
9726
|
bigint | TransactionArgument,
|
|
9727
9727
|
bigint | TransactionArgument,
|
|
@@ -9753,11 +9753,11 @@ export namespace vault {
|
|
|
9753
9753
|
>(
|
|
9754
9754
|
client: SuiClient,
|
|
9755
9755
|
args: [
|
|
9756
|
-
string |
|
|
9757
|
-
string |
|
|
9758
|
-
string |
|
|
9759
|
-
string |
|
|
9760
|
-
string |
|
|
9756
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9757
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9758
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9759
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9760
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9761
9761
|
bigint | TransactionArgument,
|
|
9762
9762
|
bigint | TransactionArgument,
|
|
9763
9763
|
bigint | TransactionArgument,
|
|
@@ -9788,8 +9788,8 @@ export namespace vault {
|
|
|
9788
9788
|
export async function unsubscribe<T0 = any, T1 = any>(
|
|
9789
9789
|
client: SuiClient,
|
|
9790
9790
|
args: [
|
|
9791
|
-
string |
|
|
9792
|
-
string |
|
|
9791
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9792
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9793
9793
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
9794
9794
|
],
|
|
9795
9795
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -9807,7 +9807,7 @@ export namespace vault {
|
|
|
9807
9807
|
}
|
|
9808
9808
|
export async function userShareRegistryUid(
|
|
9809
9809
|
client: SuiClient,
|
|
9810
|
-
args: [string |
|
|
9810
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9811
9811
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9812
9812
|
const tx = new TransactionBlock();
|
|
9813
9813
|
builder.userShareRegistryUid(tx, args);
|
|
@@ -9822,7 +9822,7 @@ export namespace vault {
|
|
|
9822
9822
|
}
|
|
9823
9823
|
export async function warmupBalance<T0 = any, T1 = any>(
|
|
9824
9824
|
client: SuiClient,
|
|
9825
|
-
args: [string |
|
|
9825
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9826
9826
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9827
9827
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9828
9828
|
const tx = new TransactionBlock();
|
|
@@ -9838,7 +9838,7 @@ export namespace vault {
|
|
|
9838
9838
|
}
|
|
9839
9839
|
export async function warmupShareSupply<T0 = any, T1 = any>(
|
|
9840
9840
|
client: SuiClient,
|
|
9841
|
-
args: [string |
|
|
9841
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9842
9842
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9843
9843
|
): Promise<TypedDevInspectResults<[bigint]>> {
|
|
9844
9844
|
const tx = new TransactionBlock();
|
|
@@ -9854,7 +9854,7 @@ export namespace vault {
|
|
|
9854
9854
|
}
|
|
9855
9855
|
export async function warmupUserShares<T0 = any, T1 = any>(
|
|
9856
9856
|
client: SuiClient,
|
|
9857
|
-
args: [string |
|
|
9857
|
+
args: [string | TransactionObjectArgument | TransactionArgument],
|
|
9858
9858
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
9859
9859
|
): Promise<TypedDevInspectResults<[string]>> {
|
|
9860
9860
|
const tx = new TransactionBlock();
|
|
@@ -9871,8 +9871,8 @@ export namespace vault {
|
|
|
9871
9871
|
export async function withdraw<T0 = any, T1 = any>(
|
|
9872
9872
|
client: SuiClient,
|
|
9873
9873
|
args: [
|
|
9874
|
-
string |
|
|
9875
|
-
string |
|
|
9874
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9875
|
+
string | TransactionObjectArgument | TransactionArgument,
|
|
9876
9876
|
_0x1.option.Option<bigint> | TransactionArgument,
|
|
9877
9877
|
],
|
|
9878
9878
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|