@typemove/sui 1.10.0 → 1.11.0-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 +72 -107
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +53 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x2.d.ts +604 -807
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +142 -1
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +290 -362
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +105 -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 +1 -3
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/cjs/transaction.d.ts +1 -1
- package/dist/cjs/transaction.d.ts.map +1 -1
- package/dist/cjs/transaction.js +3 -3
- package/dist/cjs/transaction.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +72 -107
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +53 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +604 -807
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +142 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +290 -362
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +105 -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 +1 -3
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/dist/esm/transaction.d.ts +1 -1
- package/dist/esm/transaction.d.ts.map +1 -1
- package/dist/esm/transaction.js +3 -3
- package/dist/esm/transaction.js.map +1 -1
- package/package.json +3 -3
- package/src/abis/0x1.json +52 -0
- package/src/abis/0x2.json +134 -2
- package/src/abis/0x3.json +180 -0
- package/src/builtin/0x1.ts +143 -110
- package/src/builtin/0x2.ts +769 -808
- package/src/builtin/0x3.ts +422 -363
- package/src/codegen/codegen.ts +1 -3
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +4 -7
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +51 -51
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +29 -47
- package/src/tests/types/testnet/0xdee9.ts +116 -149
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +241 -268
- package/src/tests/types/testnet/enum.ts +143 -158
- package/src/transaction.ts +4 -4
|
@@ -586,8 +586,8 @@ export namespace de_center {
|
|
|
586
586
|
export function addPenalty<T0 = any, T1 = any>(
|
|
587
587
|
tx: Transaction,
|
|
588
588
|
args: [
|
|
589
|
-
string | TransactionObjectArgument
|
|
590
|
-
string | TransactionObjectArgument
|
|
589
|
+
string | TransactionObjectArgument,
|
|
590
|
+
string | TransactionObjectArgument,
|
|
591
591
|
number | TransactionArgument,
|
|
592
592
|
number | TransactionArgument,
|
|
593
593
|
],
|
|
@@ -623,8 +623,8 @@ export namespace de_center {
|
|
|
623
623
|
export function addPenaltyFeeAdmin<T0 = any, T1 = any, T2 = any>(
|
|
624
624
|
tx: Transaction,
|
|
625
625
|
args: [
|
|
626
|
-
string | TransactionObjectArgument
|
|
627
|
-
string | TransactionObjectArgument
|
|
626
|
+
string | TransactionObjectArgument,
|
|
627
|
+
string | TransactionObjectArgument,
|
|
628
628
|
],
|
|
629
629
|
typeArguments: [
|
|
630
630
|
TypeDescriptor<T0> | string,
|
|
@@ -657,7 +657,7 @@ export namespace de_center {
|
|
|
657
657
|
export function addPenaltyFeeBalance<T0 = any, T1 = any>(
|
|
658
658
|
tx: Transaction,
|
|
659
659
|
args: [
|
|
660
|
-
string | TransactionObjectArgument
|
|
660
|
+
string | TransactionObjectArgument,
|
|
661
661
|
_0x2.balance.Balance<T0> | TransactionArgument,
|
|
662
662
|
],
|
|
663
663
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -684,7 +684,7 @@ export namespace de_center {
|
|
|
684
684
|
export function addPenaltyReserve<T0 = any, T1 = any>(
|
|
685
685
|
tx: Transaction,
|
|
686
686
|
args: [
|
|
687
|
-
string | TransactionObjectArgument
|
|
687
|
+
string | TransactionObjectArgument,
|
|
688
688
|
_0x2.balance.Balance<T0> | TransactionArgument,
|
|
689
689
|
],
|
|
690
690
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -711,8 +711,8 @@ export namespace de_center {
|
|
|
711
711
|
export function addResponseChecklists<T0 = any, T1 = any, T2 = any>(
|
|
712
712
|
tx: Transaction,
|
|
713
713
|
args: [
|
|
714
|
-
string | TransactionObjectArgument
|
|
715
|
-
string | TransactionObjectArgument
|
|
714
|
+
string | TransactionObjectArgument,
|
|
715
|
+
string | TransactionObjectArgument,
|
|
716
716
|
],
|
|
717
717
|
typeArguments: [
|
|
718
718
|
TypeDescriptor<T0> | string,
|
|
@@ -745,8 +745,8 @@ export namespace de_center {
|
|
|
745
745
|
export function addVersion<T0 = any, T1 = any>(
|
|
746
746
|
tx: Transaction,
|
|
747
747
|
args: [
|
|
748
|
-
string | TransactionObjectArgument
|
|
749
|
-
string | TransactionObjectArgument
|
|
748
|
+
string | TransactionObjectArgument,
|
|
749
|
+
string | TransactionObjectArgument,
|
|
750
750
|
bigint | TransactionArgument,
|
|
751
751
|
],
|
|
752
752
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -775,8 +775,8 @@ export namespace de_center {
|
|
|
775
775
|
export function addWhitelist<T0 = any, T1 = any, T2 = any>(
|
|
776
776
|
tx: Transaction,
|
|
777
777
|
args: [
|
|
778
|
-
string | TransactionObjectArgument
|
|
779
|
-
string | TransactionObjectArgument
|
|
778
|
+
string | TransactionObjectArgument,
|
|
779
|
+
string | TransactionObjectArgument,
|
|
780
780
|
],
|
|
781
781
|
typeArguments: [
|
|
782
782
|
TypeDescriptor<T0> | string,
|
|
@@ -809,8 +809,8 @@ export namespace de_center {
|
|
|
809
809
|
export function checkpoint<T0 = any, T1 = any>(
|
|
810
810
|
tx: Transaction,
|
|
811
811
|
args: [
|
|
812
|
-
string | TransactionObjectArgument
|
|
813
|
-
string | TransactionObjectArgument
|
|
812
|
+
string | TransactionObjectArgument,
|
|
813
|
+
string | TransactionObjectArgument,
|
|
814
814
|
],
|
|
815
815
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
816
816
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -835,10 +835,7 @@ export namespace de_center {
|
|
|
835
835
|
}
|
|
836
836
|
export function currentPenalty<T0 = any, T1 = any>(
|
|
837
837
|
tx: Transaction,
|
|
838
|
-
args: [
|
|
839
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
840
|
-
bigint | TransactionArgument,
|
|
841
|
-
],
|
|
838
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
|
842
839
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
843
840
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
844
841
|
const _args: any[] = [];
|
|
@@ -863,10 +860,10 @@ export namespace de_center {
|
|
|
863
860
|
export function default$<T0 = any, T1 = any>(
|
|
864
861
|
tx: Transaction,
|
|
865
862
|
args: [
|
|
866
|
-
string | TransactionObjectArgument
|
|
863
|
+
string | TransactionObjectArgument,
|
|
867
864
|
bigint | TransactionArgument,
|
|
868
865
|
bigint | TransactionArgument,
|
|
869
|
-
string | TransactionObjectArgument
|
|
866
|
+
string | TransactionObjectArgument,
|
|
870
867
|
],
|
|
871
868
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
872
869
|
): TransactionArgument &
|
|
@@ -900,9 +897,9 @@ export namespace de_center {
|
|
|
900
897
|
export function escrowCurrentPenalty<T0 = any, T1 = any>(
|
|
901
898
|
tx: Transaction,
|
|
902
899
|
args: [
|
|
903
|
-
string | TransactionObjectArgument
|
|
904
|
-
string | TransactionObjectArgument
|
|
905
|
-
string | TransactionObjectArgument
|
|
900
|
+
string | TransactionObjectArgument,
|
|
901
|
+
string | TransactionObjectArgument,
|
|
902
|
+
string | TransactionObjectArgument,
|
|
906
903
|
],
|
|
907
904
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
908
905
|
): TransactionArgument &
|
|
@@ -930,10 +927,10 @@ export namespace de_center {
|
|
|
930
927
|
export function escrowPenalty<T0 = any, T1 = any>(
|
|
931
928
|
tx: Transaction,
|
|
932
929
|
args: [
|
|
933
|
-
string | TransactionObjectArgument
|
|
934
|
-
string | TransactionObjectArgument
|
|
930
|
+
string | TransactionObjectArgument,
|
|
931
|
+
string | TransactionObjectArgument,
|
|
935
932
|
bigint | TransactionArgument,
|
|
936
|
-
string | TransactionObjectArgument
|
|
933
|
+
string | TransactionObjectArgument,
|
|
937
934
|
],
|
|
938
935
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
939
936
|
): TransactionArgument &
|
|
@@ -967,9 +964,9 @@ export namespace de_center {
|
|
|
967
964
|
export function forceUnlockWithPenalty<T0 = any, T1 = any>(
|
|
968
965
|
tx: Transaction,
|
|
969
966
|
args: [
|
|
970
|
-
string | TransactionObjectArgument
|
|
967
|
+
string | TransactionObjectArgument,
|
|
971
968
|
de_token.DeToken<T0, T1> | TransactionArgument,
|
|
972
|
-
string | TransactionObjectArgument
|
|
969
|
+
string | TransactionObjectArgument,
|
|
973
970
|
],
|
|
974
971
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
975
972
|
): TransactionArgument &
|
|
@@ -997,10 +994,10 @@ export namespace de_center {
|
|
|
997
994
|
export function forceUnlockWithWhitelist<T0 = any, T1 = any, T2 = any>(
|
|
998
995
|
tx: Transaction,
|
|
999
996
|
args: [
|
|
1000
|
-
string | TransactionObjectArgument
|
|
997
|
+
string | TransactionObjectArgument,
|
|
1001
998
|
de_token.DeToken<T0, T1> | TransactionArgument,
|
|
1002
999
|
T2 | TransactionArgument,
|
|
1003
|
-
string | TransactionObjectArgument
|
|
1000
|
+
string | TransactionObjectArgument,
|
|
1004
1001
|
],
|
|
1005
1002
|
typeArguments: [
|
|
1006
1003
|
TypeDescriptor<T0> | string,
|
|
@@ -1041,10 +1038,10 @@ export namespace de_center {
|
|
|
1041
1038
|
export function forceWithdrawWithPenalty<T0 = any, T1 = any>(
|
|
1042
1039
|
tx: Transaction,
|
|
1043
1040
|
args: [
|
|
1044
|
-
string | TransactionObjectArgument
|
|
1045
|
-
string | TransactionObjectArgument
|
|
1041
|
+
string | TransactionObjectArgument,
|
|
1042
|
+
string | TransactionObjectArgument,
|
|
1046
1043
|
bigint | TransactionArgument,
|
|
1047
|
-
string | TransactionObjectArgument
|
|
1044
|
+
string | TransactionObjectArgument,
|
|
1048
1045
|
],
|
|
1049
1046
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1050
1047
|
): TransactionArgument &
|
|
@@ -1078,11 +1075,11 @@ export namespace de_center {
|
|
|
1078
1075
|
export function forceWithdrawWithWhitelist<T0 = any, T1 = any, T2 = any>(
|
|
1079
1076
|
tx: Transaction,
|
|
1080
1077
|
args: [
|
|
1081
|
-
string | TransactionObjectArgument
|
|
1082
|
-
string | TransactionObjectArgument
|
|
1078
|
+
string | TransactionObjectArgument,
|
|
1079
|
+
string | TransactionObjectArgument,
|
|
1083
1080
|
T2 | TransactionArgument,
|
|
1084
1081
|
bigint | TransactionArgument,
|
|
1085
|
-
string | TransactionObjectArgument
|
|
1082
|
+
string | TransactionObjectArgument,
|
|
1086
1083
|
],
|
|
1087
1084
|
typeArguments: [
|
|
1088
1085
|
TypeDescriptor<T0> | string,
|
|
@@ -1126,7 +1123,7 @@ export namespace de_center {
|
|
|
1126
1123
|
tx: Transaction,
|
|
1127
1124
|
args: [
|
|
1128
1125
|
de_center.DeTokenUpdateResponse<T0, T1> | TransactionArgument,
|
|
1129
|
-
string | TransactionObjectArgument
|
|
1126
|
+
string | TransactionObjectArgument,
|
|
1130
1127
|
],
|
|
1131
1128
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1132
1129
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -1152,9 +1149,9 @@ export namespace de_center {
|
|
|
1152
1149
|
export function getLockedEnd<T0 = any, T1 = any>(
|
|
1153
1150
|
tx: Transaction,
|
|
1154
1151
|
args: [
|
|
1155
|
-
string | TransactionObjectArgument
|
|
1152
|
+
string | TransactionObjectArgument,
|
|
1156
1153
|
bigint | TransactionArgument,
|
|
1157
|
-
string | TransactionObjectArgument
|
|
1154
|
+
string | TransactionObjectArgument,
|
|
1158
1155
|
],
|
|
1159
1156
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1160
1157
|
): TransactionArgument &
|
|
@@ -1182,10 +1179,10 @@ export namespace de_center {
|
|
|
1182
1179
|
export function increaseUnlockAmount<T0 = any, T1 = any>(
|
|
1183
1180
|
tx: Transaction,
|
|
1184
1181
|
args: [
|
|
1185
|
-
string | TransactionObjectArgument
|
|
1186
|
-
string | TransactionObjectArgument
|
|
1182
|
+
string | TransactionObjectArgument,
|
|
1183
|
+
string | TransactionObjectArgument,
|
|
1187
1184
|
_0x2.coin.Coin<T0> | TransactionArgument,
|
|
1188
|
-
string | TransactionObjectArgument
|
|
1185
|
+
string | TransactionObjectArgument,
|
|
1189
1186
|
],
|
|
1190
1187
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1191
1188
|
): TransactionArgument &
|
|
@@ -1219,10 +1216,10 @@ export namespace de_center {
|
|
|
1219
1216
|
export function increaseUnlockTime<T0 = any, T1 = any>(
|
|
1220
1217
|
tx: Transaction,
|
|
1221
1218
|
args: [
|
|
1222
|
-
string | TransactionObjectArgument
|
|
1223
|
-
string | TransactionObjectArgument
|
|
1219
|
+
string | TransactionObjectArgument,
|
|
1220
|
+
string | TransactionObjectArgument,
|
|
1224
1221
|
bigint | TransactionArgument,
|
|
1225
|
-
string | TransactionObjectArgument
|
|
1222
|
+
string | TransactionObjectArgument,
|
|
1226
1223
|
],
|
|
1227
1224
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1228
1225
|
): TransactionArgument &
|
|
@@ -1256,11 +1253,11 @@ export namespace de_center {
|
|
|
1256
1253
|
export function lock<T0 = any, T1 = any>(
|
|
1257
1254
|
tx: Transaction,
|
|
1258
1255
|
args: [
|
|
1259
|
-
string | TransactionObjectArgument
|
|
1256
|
+
string | TransactionObjectArgument,
|
|
1260
1257
|
_0x2.coin.Coin<T0> | TransactionArgument,
|
|
1261
1258
|
bigint | TransactionArgument,
|
|
1262
1259
|
boolean | TransactionArgument,
|
|
1263
|
-
string | TransactionObjectArgument
|
|
1260
|
+
string | TransactionObjectArgument,
|
|
1264
1261
|
],
|
|
1265
1262
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1266
1263
|
): TransactionArgument &
|
|
@@ -1295,7 +1292,7 @@ export namespace de_center {
|
|
|
1295
1292
|
}
|
|
1296
1293
|
export function lockedTotal<T0 = any, T1 = any>(
|
|
1297
1294
|
tx: Transaction,
|
|
1298
|
-
args: [string | TransactionObjectArgument
|
|
1295
|
+
args: [string | TransactionObjectArgument],
|
|
1299
1296
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1300
1297
|
): TransactionArgument & [TransactionArgument] {
|
|
1301
1298
|
const _args: any[] = [];
|
|
@@ -1319,8 +1316,8 @@ export namespace de_center {
|
|
|
1319
1316
|
export function maxLockedEnd<T0 = any, T1 = any>(
|
|
1320
1317
|
tx: Transaction,
|
|
1321
1318
|
args: [
|
|
1322
|
-
string | TransactionObjectArgument
|
|
1323
|
-
string | TransactionObjectArgument
|
|
1319
|
+
string | TransactionObjectArgument,
|
|
1320
|
+
string | TransactionObjectArgument,
|
|
1324
1321
|
],
|
|
1325
1322
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1326
1323
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -1345,7 +1342,7 @@ export namespace de_center {
|
|
|
1345
1342
|
}
|
|
1346
1343
|
export function maxTime<T0 = any, T1 = any>(
|
|
1347
1344
|
tx: Transaction,
|
|
1348
|
-
args: [string | TransactionObjectArgument
|
|
1345
|
+
args: [string | TransactionObjectArgument],
|
|
1349
1346
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1350
1347
|
): TransactionArgument & [TransactionArgument] {
|
|
1351
1348
|
const _args: any[] = [];
|
|
@@ -1369,10 +1366,10 @@ export namespace de_center {
|
|
|
1369
1366
|
export function merge<T0 = any, T1 = any>(
|
|
1370
1367
|
tx: Transaction,
|
|
1371
1368
|
args: [
|
|
1372
|
-
string | TransactionObjectArgument
|
|
1373
|
-
string | TransactionObjectArgument
|
|
1369
|
+
string | TransactionObjectArgument,
|
|
1370
|
+
string | TransactionObjectArgument,
|
|
1374
1371
|
de_token.DeToken<T0, T1> | TransactionArgument,
|
|
1375
|
-
string | TransactionObjectArgument
|
|
1372
|
+
string | TransactionObjectArgument,
|
|
1376
1373
|
],
|
|
1377
1374
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1378
1375
|
): TransactionArgument &
|
|
@@ -1405,7 +1402,7 @@ export namespace de_center {
|
|
|
1405
1402
|
}
|
|
1406
1403
|
export function mintedEscrow<T0 = any, T1 = any>(
|
|
1407
1404
|
tx: Transaction,
|
|
1408
|
-
args: [string | TransactionObjectArgument
|
|
1405
|
+
args: [string | TransactionObjectArgument],
|
|
1409
1406
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1410
1407
|
): TransactionArgument & [TransactionArgument] {
|
|
1411
1408
|
const _args: any[] = [];
|
|
@@ -1429,10 +1426,10 @@ export namespace de_center {
|
|
|
1429
1426
|
export function new$<T0 = any, T1 = any>(
|
|
1430
1427
|
tx: Transaction,
|
|
1431
1428
|
args: [
|
|
1432
|
-
string | TransactionObjectArgument
|
|
1429
|
+
string | TransactionObjectArgument,
|
|
1433
1430
|
bigint | TransactionArgument,
|
|
1434
1431
|
bigint | TransactionArgument,
|
|
1435
|
-
string | TransactionObjectArgument
|
|
1432
|
+
string | TransactionObjectArgument,
|
|
1436
1433
|
],
|
|
1437
1434
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1438
1435
|
): TransactionArgument &
|
|
@@ -1485,7 +1482,7 @@ export namespace de_center {
|
|
|
1485
1482
|
}
|
|
1486
1483
|
export function offset<T0 = any, T1 = any>(
|
|
1487
1484
|
tx: Transaction,
|
|
1488
|
-
args: [string | TransactionObjectArgument
|
|
1485
|
+
args: [string | TransactionObjectArgument],
|
|
1489
1486
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1490
1487
|
): TransactionArgument & [TransactionArgument] {
|
|
1491
1488
|
const _args: any[] = [];
|
|
@@ -1521,7 +1518,7 @@ export namespace de_center {
|
|
|
1521
1518
|
}
|
|
1522
1519
|
export function penaltyFeeAdmin<T0 = any, T1 = any>(
|
|
1523
1520
|
tx: Transaction,
|
|
1524
|
-
args: [string | TransactionObjectArgument
|
|
1521
|
+
args: [string | TransactionObjectArgument],
|
|
1525
1522
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1526
1523
|
): TransactionArgument & [TransactionArgument] {
|
|
1527
1524
|
const _args: any[] = [];
|
|
@@ -1544,7 +1541,7 @@ export namespace de_center {
|
|
|
1544
1541
|
}
|
|
1545
1542
|
export function penaltyFeeBalance<T0 = any, T1 = any>(
|
|
1546
1543
|
tx: Transaction,
|
|
1547
|
-
args: [string | TransactionObjectArgument
|
|
1544
|
+
args: [string | TransactionObjectArgument],
|
|
1548
1545
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1549
1546
|
): TransactionArgument & [TransactionArgument] {
|
|
1550
1547
|
const _args: any[] = [];
|
|
@@ -1567,7 +1564,7 @@ export namespace de_center {
|
|
|
1567
1564
|
}
|
|
1568
1565
|
export function penaltyFeeBps<T0 = any, T1 = any>(
|
|
1569
1566
|
tx: Transaction,
|
|
1570
|
-
args: [string | TransactionObjectArgument
|
|
1567
|
+
args: [string | TransactionObjectArgument],
|
|
1571
1568
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1572
1569
|
): TransactionArgument & [TransactionArgument] {
|
|
1573
1570
|
const _args: any[] = [];
|
|
@@ -1590,7 +1587,7 @@ export namespace de_center {
|
|
|
1590
1587
|
}
|
|
1591
1588
|
export function penaltyInfo<T0 = any, T1 = any>(
|
|
1592
1589
|
tx: Transaction,
|
|
1593
|
-
args: [string | TransactionObjectArgument
|
|
1590
|
+
args: [string | TransactionObjectArgument],
|
|
1594
1591
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1595
1592
|
): TransactionArgument & [TransactionArgument] {
|
|
1596
1593
|
const _args: any[] = [];
|
|
@@ -1613,7 +1610,7 @@ export namespace de_center {
|
|
|
1613
1610
|
}
|
|
1614
1611
|
export function penaltyInfoElapsedPercentage(
|
|
1615
1612
|
tx: Transaction,
|
|
1616
|
-
args: [string | TransactionObjectArgument
|
|
1613
|
+
args: [string | TransactionObjectArgument],
|
|
1617
1614
|
): TransactionArgument & [TransactionArgument] {
|
|
1618
1615
|
const _args: any[] = [];
|
|
1619
1616
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1627,7 +1624,7 @@ export namespace de_center {
|
|
|
1627
1624
|
}
|
|
1628
1625
|
export function penaltyInfoPenaltyPercentage(
|
|
1629
1626
|
tx: Transaction,
|
|
1630
|
-
args: [string | TransactionObjectArgument
|
|
1627
|
+
args: [string | TransactionObjectArgument],
|
|
1631
1628
|
): TransactionArgument & [TransactionArgument] {
|
|
1632
1629
|
const _args: any[] = [];
|
|
1633
1630
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -1641,7 +1638,7 @@ export namespace de_center {
|
|
|
1641
1638
|
}
|
|
1642
1639
|
export function penaltyReserve<T0 = any, T1 = any>(
|
|
1643
1640
|
tx: Transaction,
|
|
1644
|
-
args: [string | TransactionObjectArgument
|
|
1641
|
+
args: [string | TransactionObjectArgument],
|
|
1645
1642
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1646
1643
|
): TransactionArgument & [TransactionArgument] {
|
|
1647
1644
|
const _args: any[] = [];
|
|
@@ -1664,7 +1661,7 @@ export namespace de_center {
|
|
|
1664
1661
|
}
|
|
1665
1662
|
export function point<T0 = any, T1 = any>(
|
|
1666
1663
|
tx: Transaction,
|
|
1667
|
-
args: [string | TransactionObjectArgument
|
|
1664
|
+
args: [string | TransactionObjectArgument],
|
|
1668
1665
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1669
1666
|
): TransactionArgument & [TransactionArgument] {
|
|
1670
1667
|
const _args: any[] = [];
|
|
@@ -1688,8 +1685,8 @@ export namespace de_center {
|
|
|
1688
1685
|
export function removePenalty<T0 = any, T1 = any>(
|
|
1689
1686
|
tx: Transaction,
|
|
1690
1687
|
args: [
|
|
1691
|
-
string | TransactionObjectArgument
|
|
1692
|
-
string | TransactionObjectArgument
|
|
1688
|
+
string | TransactionObjectArgument,
|
|
1689
|
+
string | TransactionObjectArgument,
|
|
1693
1690
|
number | TransactionArgument,
|
|
1694
1691
|
],
|
|
1695
1692
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1718,8 +1715,8 @@ export namespace de_center {
|
|
|
1718
1715
|
export function removePenaltyFeeAdmin<T0 = any, T1 = any>(
|
|
1719
1716
|
tx: Transaction,
|
|
1720
1717
|
args: [
|
|
1721
|
-
string | TransactionObjectArgument
|
|
1722
|
-
string | TransactionObjectArgument
|
|
1718
|
+
string | TransactionObjectArgument,
|
|
1719
|
+
string | TransactionObjectArgument,
|
|
1723
1720
|
],
|
|
1724
1721
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1725
1722
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -1745,8 +1742,8 @@ export namespace de_center {
|
|
|
1745
1742
|
export function removeResponseChecklists<T0 = any, T1 = any, T2 = any>(
|
|
1746
1743
|
tx: Transaction,
|
|
1747
1744
|
args: [
|
|
1748
|
-
string | TransactionObjectArgument
|
|
1749
|
-
string | TransactionObjectArgument
|
|
1745
|
+
string | TransactionObjectArgument,
|
|
1746
|
+
string | TransactionObjectArgument,
|
|
1750
1747
|
],
|
|
1751
1748
|
typeArguments: [
|
|
1752
1749
|
TypeDescriptor<T0> | string,
|
|
@@ -1779,8 +1776,8 @@ export namespace de_center {
|
|
|
1779
1776
|
export function removeVersion<T0 = any, T1 = any>(
|
|
1780
1777
|
tx: Transaction,
|
|
1781
1778
|
args: [
|
|
1782
|
-
string | TransactionObjectArgument
|
|
1783
|
-
string | TransactionObjectArgument
|
|
1779
|
+
string | TransactionObjectArgument,
|
|
1780
|
+
string | TransactionObjectArgument,
|
|
1784
1781
|
bigint | TransactionArgument,
|
|
1785
1782
|
],
|
|
1786
1783
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -1809,8 +1806,8 @@ export namespace de_center {
|
|
|
1809
1806
|
export function removeWhitelist<T0 = any, T1 = any, T2 = any>(
|
|
1810
1807
|
tx: Transaction,
|
|
1811
1808
|
args: [
|
|
1812
|
-
string | TransactionObjectArgument
|
|
1813
|
-
string | TransactionObjectArgument
|
|
1809
|
+
string | TransactionObjectArgument,
|
|
1810
|
+
string | TransactionObjectArgument,
|
|
1814
1811
|
],
|
|
1815
1812
|
typeArguments: [
|
|
1816
1813
|
TypeDescriptor<T0> | string,
|
|
@@ -1842,10 +1839,7 @@ export namespace de_center {
|
|
|
1842
1839
|
}
|
|
1843
1840
|
export function responseCheckRule<T0 = any, T1 = any, T2 = any>(
|
|
1844
1841
|
tx: Transaction,
|
|
1845
|
-
args: [
|
|
1846
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1847
|
-
T2 | TransactionArgument,
|
|
1848
|
-
],
|
|
1842
|
+
args: [string | TransactionObjectArgument, T2 | TransactionArgument],
|
|
1849
1843
|
typeArguments: [
|
|
1850
1844
|
TypeDescriptor<T0> | string,
|
|
1851
1845
|
TypeDescriptor<T1> | string,
|
|
@@ -1876,7 +1870,7 @@ export namespace de_center {
|
|
|
1876
1870
|
}
|
|
1877
1871
|
export function responseChecklists<T0 = any, T1 = any>(
|
|
1878
1872
|
tx: Transaction,
|
|
1879
|
-
args: [string | TransactionObjectArgument
|
|
1873
|
+
args: [string | TransactionObjectArgument],
|
|
1880
1874
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1881
1875
|
): TransactionArgument & [TransactionArgument] {
|
|
1882
1876
|
const _args: any[] = [];
|
|
@@ -1927,9 +1921,9 @@ export namespace de_center {
|
|
|
1927
1921
|
export function toVestingTokenUpdateResponse<T0 = any, T1 = any>(
|
|
1928
1922
|
tx: Transaction,
|
|
1929
1923
|
args: [
|
|
1930
|
-
string | TransactionObjectArgument
|
|
1924
|
+
string | TransactionObjectArgument,
|
|
1931
1925
|
action.Action | TransactionArgument,
|
|
1932
|
-
string | TransactionObjectArgument
|
|
1926
|
+
string | TransactionObjectArgument,
|
|
1933
1927
|
],
|
|
1934
1928
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1935
1929
|
): TransactionArgument &
|
|
@@ -1957,8 +1951,8 @@ export namespace de_center {
|
|
|
1957
1951
|
export function totalVotingWeight<T0 = any, T1 = any>(
|
|
1958
1952
|
tx: Transaction,
|
|
1959
1953
|
args: [
|
|
1960
|
-
string | TransactionObjectArgument
|
|
1961
|
-
string | TransactionObjectArgument
|
|
1954
|
+
string | TransactionObjectArgument,
|
|
1955
|
+
string | TransactionObjectArgument,
|
|
1962
1956
|
],
|
|
1963
1957
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1964
1958
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -1983,10 +1977,7 @@ export namespace de_center {
|
|
|
1983
1977
|
}
|
|
1984
1978
|
export function totalVotingWeightAt<T0 = any, T1 = any>(
|
|
1985
1979
|
tx: Transaction,
|
|
1986
|
-
args: [
|
|
1987
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
1988
|
-
bigint | TransactionArgument,
|
|
1989
|
-
],
|
|
1980
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
|
1990
1981
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
1991
1982
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
1992
1983
|
const _args: any[] = [];
|
|
@@ -2011,9 +2002,9 @@ export namespace de_center {
|
|
|
2011
2002
|
export function unlock<T0 = any, T1 = any>(
|
|
2012
2003
|
tx: Transaction,
|
|
2013
2004
|
args: [
|
|
2014
|
-
string | TransactionObjectArgument
|
|
2005
|
+
string | TransactionObjectArgument,
|
|
2015
2006
|
de_token.DeToken<T0, T1> | TransactionArgument,
|
|
2016
|
-
string | TransactionObjectArgument
|
|
2007
|
+
string | TransactionObjectArgument,
|
|
2017
2008
|
],
|
|
2018
2009
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2019
2010
|
): TransactionArgument &
|
|
@@ -2040,7 +2031,7 @@ export namespace de_center {
|
|
|
2040
2031
|
}
|
|
2041
2032
|
export function vestingTokenUpdateResponseBalance<T0 = any, T1 = any>(
|
|
2042
2033
|
tx: Transaction,
|
|
2043
|
-
args: [string | TransactionObjectArgument
|
|
2034
|
+
args: [string | TransactionObjectArgument],
|
|
2044
2035
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2045
2036
|
): TransactionArgument & [TransactionArgument] {
|
|
2046
2037
|
const _args: any[] = [];
|
|
@@ -2063,7 +2054,7 @@ export namespace de_center {
|
|
|
2063
2054
|
}
|
|
2064
2055
|
export function vestingTokenUpdateResponseChecklists<T0 = any, T1 = any>(
|
|
2065
2056
|
tx: Transaction,
|
|
2066
|
-
args: [string | TransactionObjectArgument
|
|
2057
|
+
args: [string | TransactionObjectArgument],
|
|
2067
2058
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2068
2059
|
): TransactionArgument & [TransactionArgument] {
|
|
2069
2060
|
const _args: any[] = [];
|
|
@@ -2086,7 +2077,7 @@ export namespace de_center {
|
|
|
2086
2077
|
}
|
|
2087
2078
|
export function vestingTokenUpdateResponseEarlyUnlock<T0 = any, T1 = any>(
|
|
2088
2079
|
tx: Transaction,
|
|
2089
|
-
args: [string | TransactionObjectArgument
|
|
2080
|
+
args: [string | TransactionObjectArgument],
|
|
2090
2081
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2091
2082
|
): TransactionArgument & [TransactionArgument] {
|
|
2092
2083
|
const _args: any[] = [];
|
|
@@ -2109,7 +2100,7 @@ export namespace de_center {
|
|
|
2109
2100
|
}
|
|
2110
2101
|
export function vestingTokenUpdateResponseEnd<T0 = any, T1 = any>(
|
|
2111
2102
|
tx: Transaction,
|
|
2112
|
-
args: [string | TransactionObjectArgument
|
|
2103
|
+
args: [string | TransactionObjectArgument],
|
|
2113
2104
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2114
2105
|
): TransactionArgument & [TransactionArgument] {
|
|
2115
2106
|
const _args: any[] = [];
|
|
@@ -2132,7 +2123,7 @@ export namespace de_center {
|
|
|
2132
2123
|
}
|
|
2133
2124
|
export function vestingTokenUpdateResponseId<T0 = any, T1 = any>(
|
|
2134
2125
|
tx: Transaction,
|
|
2135
|
-
args: [string | TransactionObjectArgument
|
|
2126
|
+
args: [string | TransactionObjectArgument],
|
|
2136
2127
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2137
2128
|
): TransactionArgument & [TransactionArgument] {
|
|
2138
2129
|
const _args: any[] = [];
|
|
@@ -2155,7 +2146,7 @@ export namespace de_center {
|
|
|
2155
2146
|
}
|
|
2156
2147
|
export function vestingTokenUpdateResponseMaxTime<T0 = any, T1 = any>(
|
|
2157
2148
|
tx: Transaction,
|
|
2158
|
-
args: [string | TransactionObjectArgument
|
|
2149
|
+
args: [string | TransactionObjectArgument],
|
|
2159
2150
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2160
2151
|
): TransactionArgument & [TransactionArgument] {
|
|
2161
2152
|
const _args: any[] = [];
|
|
@@ -2178,7 +2169,7 @@ export namespace de_center {
|
|
|
2178
2169
|
}
|
|
2179
2170
|
export function vestingTokenUpdateResponsePoolId<T0 = any, T1 = any>(
|
|
2180
2171
|
tx: Transaction,
|
|
2181
|
-
args: [string | TransactionObjectArgument
|
|
2172
|
+
args: [string | TransactionObjectArgument],
|
|
2182
2173
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2183
2174
|
): TransactionArgument & [TransactionArgument] {
|
|
2184
2175
|
const _args: any[] = [];
|
|
@@ -2204,7 +2195,7 @@ export namespace de_center {
|
|
|
2204
2195
|
T1 = any,
|
|
2205
2196
|
>(
|
|
2206
2197
|
tx: Transaction,
|
|
2207
|
-
args: [string | TransactionObjectArgument
|
|
2198
|
+
args: [string | TransactionObjectArgument],
|
|
2208
2199
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2209
2200
|
): TransactionArgument & [TransactionArgument] {
|
|
2210
2201
|
const _args: any[] = [];
|
|
@@ -2227,7 +2218,7 @@ export namespace de_center {
|
|
|
2227
2218
|
}
|
|
2228
2219
|
export function vestingTokenUpdateResponseVotingWeight<T0 = any, T1 = any>(
|
|
2229
2220
|
tx: Transaction,
|
|
2230
|
-
args: [string | TransactionObjectArgument
|
|
2221
|
+
args: [string | TransactionObjectArgument],
|
|
2231
2222
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2232
2223
|
): TransactionArgument & [TransactionArgument] {
|
|
2233
2224
|
const _args: any[] = [];
|
|
@@ -2250,7 +2241,7 @@ export namespace de_center {
|
|
|
2250
2241
|
}
|
|
2251
2242
|
export function vestingTokenupdateResponseBalance<T0 = any, T1 = any>(
|
|
2252
2243
|
tx: Transaction,
|
|
2253
|
-
args: [string | TransactionObjectArgument
|
|
2244
|
+
args: [string | TransactionObjectArgument],
|
|
2254
2245
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2255
2246
|
): TransactionArgument & [TransactionArgument] {
|
|
2256
2247
|
const _args: any[] = [];
|
|
@@ -2273,7 +2264,7 @@ export namespace de_center {
|
|
|
2273
2264
|
}
|
|
2274
2265
|
export function vestingTokenupdateResponseChecklists<T0 = any, T1 = any>(
|
|
2275
2266
|
tx: Transaction,
|
|
2276
|
-
args: [string | TransactionObjectArgument
|
|
2267
|
+
args: [string | TransactionObjectArgument],
|
|
2277
2268
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2278
2269
|
): TransactionArgument & [TransactionArgument] {
|
|
2279
2270
|
const _args: any[] = [];
|
|
@@ -2296,7 +2287,7 @@ export namespace de_center {
|
|
|
2296
2287
|
}
|
|
2297
2288
|
export function vestingTokenupdateResponseEarlyUnlock<T0 = any, T1 = any>(
|
|
2298
2289
|
tx: Transaction,
|
|
2299
|
-
args: [string | TransactionObjectArgument
|
|
2290
|
+
args: [string | TransactionObjectArgument],
|
|
2300
2291
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2301
2292
|
): TransactionArgument & [TransactionArgument] {
|
|
2302
2293
|
const _args: any[] = [];
|
|
@@ -2319,7 +2310,7 @@ export namespace de_center {
|
|
|
2319
2310
|
}
|
|
2320
2311
|
export function vestingTokenupdateResponseEnd<T0 = any, T1 = any>(
|
|
2321
2312
|
tx: Transaction,
|
|
2322
|
-
args: [string | TransactionObjectArgument
|
|
2313
|
+
args: [string | TransactionObjectArgument],
|
|
2323
2314
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2324
2315
|
): TransactionArgument & [TransactionArgument] {
|
|
2325
2316
|
const _args: any[] = [];
|
|
@@ -2342,7 +2333,7 @@ export namespace de_center {
|
|
|
2342
2333
|
}
|
|
2343
2334
|
export function vestingTokenupdateResponseId<T0 = any, T1 = any>(
|
|
2344
2335
|
tx: Transaction,
|
|
2345
|
-
args: [string | TransactionObjectArgument
|
|
2336
|
+
args: [string | TransactionObjectArgument],
|
|
2346
2337
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2347
2338
|
): TransactionArgument & [TransactionArgument] {
|
|
2348
2339
|
const _args: any[] = [];
|
|
@@ -2365,7 +2356,7 @@ export namespace de_center {
|
|
|
2365
2356
|
}
|
|
2366
2357
|
export function vestingTokenupdateResponseMaxTime<T0 = any, T1 = any>(
|
|
2367
2358
|
tx: Transaction,
|
|
2368
|
-
args: [string | TransactionObjectArgument
|
|
2359
|
+
args: [string | TransactionObjectArgument],
|
|
2369
2360
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2370
2361
|
): TransactionArgument & [TransactionArgument] {
|
|
2371
2362
|
const _args: any[] = [];
|
|
@@ -2388,7 +2379,7 @@ export namespace de_center {
|
|
|
2388
2379
|
}
|
|
2389
2380
|
export function vestingTokenupdateResponsePoolId<T0 = any, T1 = any>(
|
|
2390
2381
|
tx: Transaction,
|
|
2391
|
-
args: [string | TransactionObjectArgument
|
|
2382
|
+
args: [string | TransactionObjectArgument],
|
|
2392
2383
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2393
2384
|
): TransactionArgument & [TransactionArgument] {
|
|
2394
2385
|
const _args: any[] = [];
|
|
@@ -2414,7 +2405,7 @@ export namespace de_center {
|
|
|
2414
2405
|
T1 = any,
|
|
2415
2406
|
>(
|
|
2416
2407
|
tx: Transaction,
|
|
2417
|
-
args: [string | TransactionObjectArgument
|
|
2408
|
+
args: [string | TransactionObjectArgument],
|
|
2418
2409
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2419
2410
|
): TransactionArgument & [TransactionArgument] {
|
|
2420
2411
|
const _args: any[] = [];
|
|
@@ -2437,7 +2428,7 @@ export namespace de_center {
|
|
|
2437
2428
|
}
|
|
2438
2429
|
export function vestingTokenupdateResponseVotingWeight<T0 = any, T1 = any>(
|
|
2439
2430
|
tx: Transaction,
|
|
2440
|
-
args: [string | TransactionObjectArgument
|
|
2431
|
+
args: [string | TransactionObjectArgument],
|
|
2441
2432
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2442
2433
|
): TransactionArgument & [TransactionArgument] {
|
|
2443
2434
|
const _args: any[] = [];
|
|
@@ -2470,7 +2461,7 @@ export namespace de_center {
|
|
|
2470
2461
|
}
|
|
2471
2462
|
export function whitelist<T0 = any, T1 = any>(
|
|
2472
2463
|
tx: Transaction,
|
|
2473
|
-
args: [string | TransactionObjectArgument
|
|
2464
|
+
args: [string | TransactionObjectArgument],
|
|
2474
2465
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
2475
2466
|
): TransactionArgument & [TransactionArgument] {
|
|
2476
2467
|
const _args: any[] = [];
|
|
@@ -2494,8 +2485,8 @@ export namespace de_center {
|
|
|
2494
2485
|
export function withdrawPenaltyFee<T0 = any, T1 = any>(
|
|
2495
2486
|
tx: Transaction,
|
|
2496
2487
|
args: [
|
|
2497
|
-
string | TransactionObjectArgument
|
|
2498
|
-
string | TransactionObjectArgument
|
|
2488
|
+
string | TransactionObjectArgument,
|
|
2489
|
+
string | TransactionObjectArgument,
|
|
2499
2490
|
bigint | TransactionArgument,
|
|
2500
2491
|
],
|
|
2501
2492
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
@@ -2524,7 +2515,7 @@ export namespace de_center {
|
|
|
2524
2515
|
export function withdrawPenaltyReserve<T0 = any, T1 = any, T2 = any>(
|
|
2525
2516
|
tx: Transaction,
|
|
2526
2517
|
args: [
|
|
2527
|
-
string | TransactionObjectArgument
|
|
2518
|
+
string | TransactionObjectArgument,
|
|
2528
2519
|
T2 | TransactionArgument,
|
|
2529
2520
|
bigint | TransactionArgument,
|
|
2530
2521
|
],
|
|
@@ -3935,7 +3926,7 @@ export namespace de_token {
|
|
|
3935
3926
|
export namespace builder {
|
|
3936
3927
|
export function balance<T0 = any, T1 = any>(
|
|
3937
3928
|
tx: Transaction,
|
|
3938
|
-
args: [string | TransactionObjectArgument
|
|
3929
|
+
args: [string | TransactionObjectArgument],
|
|
3939
3930
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
3940
3931
|
): TransactionArgument & [TransactionArgument] {
|
|
3941
3932
|
const _args: any[] = [];
|
|
@@ -4045,7 +4036,7 @@ export namespace de_token {
|
|
|
4045
4036
|
}
|
|
4046
4037
|
export function earlyUnlock<T0 = any, T1 = any>(
|
|
4047
4038
|
tx: Transaction,
|
|
4048
|
-
args: [string | TransactionObjectArgument
|
|
4039
|
+
args: [string | TransactionObjectArgument],
|
|
4049
4040
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4050
4041
|
): TransactionArgument & [TransactionArgument] {
|
|
4051
4042
|
const _args: any[] = [];
|
|
@@ -4068,7 +4059,7 @@ export namespace de_token {
|
|
|
4068
4059
|
}
|
|
4069
4060
|
export function end<T0 = any, T1 = any>(
|
|
4070
4061
|
tx: Transaction,
|
|
4071
|
-
args: [string | TransactionObjectArgument
|
|
4062
|
+
args: [string | TransactionObjectArgument],
|
|
4072
4063
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4073
4064
|
): TransactionArgument & [TransactionArgument] {
|
|
4074
4065
|
const _args: any[] = [];
|
|
@@ -4091,7 +4082,7 @@ export namespace de_token {
|
|
|
4091
4082
|
}
|
|
4092
4083
|
export function escrowEpoch<T0 = any, T1 = any>(
|
|
4093
4084
|
tx: Transaction,
|
|
4094
|
-
args: [string | TransactionObjectArgument
|
|
4085
|
+
args: [string | TransactionObjectArgument],
|
|
4095
4086
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4096
4087
|
): TransactionArgument & [TransactionArgument] {
|
|
4097
4088
|
const _args: any[] = [];
|
|
@@ -4115,11 +4106,11 @@ export namespace de_token {
|
|
|
4115
4106
|
export function extend<T0 = any, T1 = any>(
|
|
4116
4107
|
tx: Transaction,
|
|
4117
4108
|
args: [
|
|
4118
|
-
string | TransactionObjectArgument
|
|
4109
|
+
string | TransactionObjectArgument,
|
|
4119
4110
|
action.Action | TransactionArgument,
|
|
4120
4111
|
_0x1.option.Option<_0x2.coin.Coin<T0>> | TransactionArgument,
|
|
4121
4112
|
bigint | TransactionArgument,
|
|
4122
|
-
string | TransactionObjectArgument
|
|
4113
|
+
string | TransactionObjectArgument,
|
|
4123
4114
|
],
|
|
4124
4115
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4125
4116
|
): TransactionArgument &
|
|
@@ -4155,8 +4146,8 @@ export namespace de_token {
|
|
|
4155
4146
|
export function isExpired<T0 = any, T1 = any>(
|
|
4156
4147
|
tx: Transaction,
|
|
4157
4148
|
args: [
|
|
4158
|
-
string | TransactionObjectArgument
|
|
4159
|
-
string | TransactionObjectArgument
|
|
4149
|
+
string | TransactionObjectArgument,
|
|
4150
|
+
string | TransactionObjectArgument,
|
|
4160
4151
|
],
|
|
4161
4152
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4162
4153
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -4181,7 +4172,7 @@ export namespace de_token {
|
|
|
4181
4172
|
}
|
|
4182
4173
|
export function maxTime<T0 = any, T1 = any>(
|
|
4183
4174
|
tx: Transaction,
|
|
4184
|
-
args: [string | TransactionObjectArgument
|
|
4175
|
+
args: [string | TransactionObjectArgument],
|
|
4185
4176
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4186
4177
|
): TransactionArgument & [TransactionArgument] {
|
|
4187
4178
|
const _args: any[] = [];
|
|
@@ -4224,7 +4215,7 @@ export namespace de_token {
|
|
|
4224
4215
|
bigint | TransactionArgument,
|
|
4225
4216
|
bigint | TransactionArgument,
|
|
4226
4217
|
boolean | TransactionArgument,
|
|
4227
|
-
string | TransactionObjectArgument
|
|
4218
|
+
string | TransactionObjectArgument,
|
|
4228
4219
|
],
|
|
4229
4220
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4230
4221
|
): TransactionArgument &
|
|
@@ -4263,7 +4254,7 @@ export namespace de_token {
|
|
|
4263
4254
|
}
|
|
4264
4255
|
export function point<T0 = any, T1 = any>(
|
|
4265
4256
|
tx: Transaction,
|
|
4266
|
-
args: [string | TransactionObjectArgument
|
|
4257
|
+
args: [string | TransactionObjectArgument],
|
|
4267
4258
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4268
4259
|
): TransactionArgument & [TransactionArgument] {
|
|
4269
4260
|
const _args: any[] = [];
|
|
@@ -4286,7 +4277,7 @@ export namespace de_token {
|
|
|
4286
4277
|
}
|
|
4287
4278
|
export function poolId<T0 = any, T1 = any>(
|
|
4288
4279
|
tx: Transaction,
|
|
4289
|
-
args: [string | TransactionObjectArgument
|
|
4280
|
+
args: [string | TransactionObjectArgument],
|
|
4290
4281
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4291
4282
|
): TransactionArgument & [TransactionArgument] {
|
|
4292
4283
|
const _args: any[] = [];
|
|
@@ -4309,7 +4300,7 @@ export namespace de_token {
|
|
|
4309
4300
|
}
|
|
4310
4301
|
export function rawVotingWeight<T0 = any, T1 = any>(
|
|
4311
4302
|
tx: Transaction,
|
|
4312
|
-
args: [string | TransactionObjectArgument
|
|
4303
|
+
args: [string | TransactionObjectArgument],
|
|
4313
4304
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4314
4305
|
): TransactionArgument & [TransactionArgument] {
|
|
4315
4306
|
const _args: any[] = [];
|
|
@@ -4332,10 +4323,7 @@ export namespace de_token {
|
|
|
4332
4323
|
}
|
|
4333
4324
|
export function updateEarlyUnlock<T0 = any, T1 = any>(
|
|
4334
4325
|
tx: Transaction,
|
|
4335
|
-
args: [
|
|
4336
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
4337
|
-
boolean | TransactionArgument,
|
|
4338
|
-
],
|
|
4326
|
+
args: [string | TransactionObjectArgument, boolean | TransactionArgument],
|
|
4339
4327
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4340
4328
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4341
4329
|
const _args: any[] = [];
|
|
@@ -4360,8 +4348,8 @@ export namespace de_token {
|
|
|
4360
4348
|
export function votingWeight<T0 = any, T1 = any>(
|
|
4361
4349
|
tx: Transaction,
|
|
4362
4350
|
args: [
|
|
4363
|
-
string | TransactionObjectArgument
|
|
4364
|
-
string | TransactionObjectArgument
|
|
4351
|
+
string | TransactionObjectArgument,
|
|
4352
|
+
string | TransactionObjectArgument,
|
|
4365
4353
|
],
|
|
4366
4354
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4367
4355
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
@@ -4386,10 +4374,7 @@ export namespace de_token {
|
|
|
4386
4374
|
}
|
|
4387
4375
|
export function votingWeightAt<T0 = any, T1 = any>(
|
|
4388
4376
|
tx: Transaction,
|
|
4389
|
-
args: [
|
|
4390
|
-
string | TransactionObjectArgument | TransactionArgument,
|
|
4391
|
-
bigint | TransactionArgument,
|
|
4392
|
-
],
|
|
4377
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
|
4393
4378
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4394
4379
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4395
4380
|
const _args: any[] = [];
|
|
@@ -4414,10 +4399,10 @@ export namespace de_token {
|
|
|
4414
4399
|
export function withdraw<T0 = any, T1 = any>(
|
|
4415
4400
|
tx: Transaction,
|
|
4416
4401
|
args: [
|
|
4417
|
-
string | TransactionObjectArgument
|
|
4402
|
+
string | TransactionObjectArgument,
|
|
4418
4403
|
action.Action | TransactionArgument,
|
|
4419
4404
|
bigint | TransactionArgument,
|
|
4420
|
-
string | TransactionObjectArgument
|
|
4405
|
+
string | TransactionObjectArgument,
|
|
4421
4406
|
],
|
|
4422
4407
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4423
4408
|
): TransactionArgument &
|
|
@@ -4451,9 +4436,9 @@ export namespace de_token {
|
|
|
4451
4436
|
export function withdrawAll<T0 = any, T1 = any>(
|
|
4452
4437
|
tx: Transaction,
|
|
4453
4438
|
args: [
|
|
4454
|
-
string | TransactionObjectArgument
|
|
4439
|
+
string | TransactionObjectArgument,
|
|
4455
4440
|
action.Action | TransactionArgument,
|
|
4456
|
-
string | TransactionObjectArgument
|
|
4441
|
+
string | TransactionObjectArgument,
|
|
4457
4442
|
],
|
|
4458
4443
|
typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string],
|
|
4459
4444
|
): TransactionArgument &
|
|
@@ -4853,7 +4838,7 @@ export namespace i128 {
|
|
|
4853
4838
|
export namespace builder {
|
|
4854
4839
|
export function abs(
|
|
4855
4840
|
tx: Transaction,
|
|
4856
|
-
args: [string | TransactionObjectArgument
|
|
4841
|
+
args: [string | TransactionObjectArgument],
|
|
4857
4842
|
): TransactionArgument & [TransactionArgument] {
|
|
4858
4843
|
const _args: any[] = [];
|
|
4859
4844
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -4868,8 +4853,8 @@ export namespace i128 {
|
|
|
4868
4853
|
export function add(
|
|
4869
4854
|
tx: Transaction,
|
|
4870
4855
|
args: [
|
|
4871
|
-
string | TransactionObjectArgument
|
|
4872
|
-
string | TransactionObjectArgument
|
|
4856
|
+
string | TransactionObjectArgument,
|
|
4857
|
+
string | TransactionObjectArgument,
|
|
4873
4858
|
],
|
|
4874
4859
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4875
4860
|
const _args: any[] = [];
|
|
@@ -4885,7 +4870,7 @@ export namespace i128 {
|
|
|
4885
4870
|
}
|
|
4886
4871
|
export function asU128(
|
|
4887
4872
|
tx: Transaction,
|
|
4888
|
-
args: [string | TransactionObjectArgument
|
|
4873
|
+
args: [string | TransactionObjectArgument],
|
|
4889
4874
|
): TransactionArgument & [TransactionArgument] {
|
|
4890
4875
|
const _args: any[] = [];
|
|
4891
4876
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -4900,8 +4885,8 @@ export namespace i128 {
|
|
|
4900
4885
|
export function compare(
|
|
4901
4886
|
tx: Transaction,
|
|
4902
4887
|
args: [
|
|
4903
|
-
string | TransactionObjectArgument
|
|
4904
|
-
string | TransactionObjectArgument
|
|
4888
|
+
string | TransactionObjectArgument,
|
|
4889
|
+
string | TransactionObjectArgument,
|
|
4905
4890
|
],
|
|
4906
4891
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4907
4892
|
const _args: any[] = [];
|
|
@@ -4918,8 +4903,8 @@ export namespace i128 {
|
|
|
4918
4903
|
export function div(
|
|
4919
4904
|
tx: Transaction,
|
|
4920
4905
|
args: [
|
|
4921
|
-
string | TransactionObjectArgument
|
|
4922
|
-
string | TransactionObjectArgument
|
|
4906
|
+
string | TransactionObjectArgument,
|
|
4907
|
+
string | TransactionObjectArgument,
|
|
4923
4908
|
],
|
|
4924
4909
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4925
4910
|
const _args: any[] = [];
|
|
@@ -4949,7 +4934,7 @@ export namespace i128 {
|
|
|
4949
4934
|
}
|
|
4950
4935
|
export function isNeg(
|
|
4951
4936
|
tx: Transaction,
|
|
4952
|
-
args: [string | TransactionObjectArgument
|
|
4937
|
+
args: [string | TransactionObjectArgument],
|
|
4953
4938
|
): TransactionArgument & [TransactionArgument] {
|
|
4954
4939
|
const _args: any[] = [];
|
|
4955
4940
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -4963,7 +4948,7 @@ export namespace i128 {
|
|
|
4963
4948
|
}
|
|
4964
4949
|
export function isZero(
|
|
4965
4950
|
tx: Transaction,
|
|
4966
|
-
args: [string | TransactionObjectArgument
|
|
4951
|
+
args: [string | TransactionObjectArgument],
|
|
4967
4952
|
): TransactionArgument & [TransactionArgument] {
|
|
4968
4953
|
const _args: any[] = [];
|
|
4969
4954
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -4978,8 +4963,8 @@ export namespace i128 {
|
|
|
4978
4963
|
export function mul(
|
|
4979
4964
|
tx: Transaction,
|
|
4980
4965
|
args: [
|
|
4981
|
-
string | TransactionObjectArgument
|
|
4982
|
-
string | TransactionObjectArgument
|
|
4966
|
+
string | TransactionObjectArgument,
|
|
4967
|
+
string | TransactionObjectArgument,
|
|
4983
4968
|
],
|
|
4984
4969
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
4985
4970
|
const _args: any[] = [];
|
|
@@ -4995,7 +4980,7 @@ export namespace i128 {
|
|
|
4995
4980
|
}
|
|
4996
4981
|
export function neg(
|
|
4997
4982
|
tx: Transaction,
|
|
4998
|
-
args: [string | TransactionObjectArgument
|
|
4983
|
+
args: [string | TransactionObjectArgument],
|
|
4999
4984
|
): TransactionArgument & [TransactionArgument] {
|
|
5000
4985
|
const _args: any[] = [];
|
|
5001
4986
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -5024,8 +5009,8 @@ export namespace i128 {
|
|
|
5024
5009
|
export function sub(
|
|
5025
5010
|
tx: Transaction,
|
|
5026
5011
|
args: [
|
|
5027
|
-
string | TransactionObjectArgument
|
|
5028
|
-
string | TransactionObjectArgument
|
|
5012
|
+
string | TransactionObjectArgument,
|
|
5013
|
+
string | TransactionObjectArgument,
|
|
5029
5014
|
],
|
|
5030
5015
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
|
5031
5016
|
const _args: any[] = [];
|
|
@@ -5275,7 +5260,7 @@ export namespace point {
|
|
|
5275
5260
|
export namespace builder {
|
|
5276
5261
|
export function bias(
|
|
5277
5262
|
tx: Transaction,
|
|
5278
|
-
args: [string | TransactionObjectArgument
|
|
5263
|
+
args: [string | TransactionObjectArgument],
|
|
5279
5264
|
): TransactionArgument & [TransactionArgument] {
|
|
5280
5265
|
const _args: any[] = [];
|
|
5281
5266
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -5310,7 +5295,7 @@ export namespace point {
|
|
|
5310
5295
|
}
|
|
5311
5296
|
export function slope(
|
|
5312
5297
|
tx: Transaction,
|
|
5313
|
-
args: [string | TransactionObjectArgument
|
|
5298
|
+
args: [string | TransactionObjectArgument],
|
|
5314
5299
|
): TransactionArgument & [TransactionArgument] {
|
|
5315
5300
|
const _args: any[] = [];
|
|
5316
5301
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
@@ -5324,7 +5309,7 @@ export namespace point {
|
|
|
5324
5309
|
}
|
|
5325
5310
|
export function timestamp(
|
|
5326
5311
|
tx: Transaction,
|
|
5327
|
-
args: [string | TransactionObjectArgument
|
|
5312
|
+
args: [string | TransactionObjectArgument],
|
|
5328
5313
|
): TransactionArgument & [TransactionArgument] {
|
|
5329
5314
|
const _args: any[] = [];
|
|
5330
5315
|
_args.push(transactionArgumentOrObject(args[0], tx));
|