@typemove/sui 1.5.3-rc.1 → 1.5.3-rc.2
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/0x2.d.ts +148 -433
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +0 -71
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +85 -259
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +0 -32
- 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 +6 -2
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +148 -433
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +0 -71
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +85 -259
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +0 -32
- 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 +6 -2
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x2.ts +128 -462
- package/src/builtin/0x3.ts +38 -194
- package/src/codegen/codegen.ts +5 -2
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +4 -19
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +7 -110
- package/src/tests/types/testnet/0xdee9.ts +18 -108
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +38 -344
|
@@ -126,7 +126,7 @@ export declare namespace bag {
|
|
|
126
126
|
function destroyEmpty(tx: TransactionBlock, args: [bag.Bag | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
127
127
|
function isEmpty(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
128
128
|
function length(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
129
|
-
function new_(tx: TransactionBlock, args: [
|
|
129
|
+
function new_(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
130
130
|
function remove<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
131
131
|
string | ObjectCallArg | TransactionArgument,
|
|
132
132
|
T0 | TransactionArgument
|
|
@@ -157,7 +157,7 @@ export declare namespace bag {
|
|
|
157
157
|
function destroyEmpty(client: SuiClient, args: [bag.Bag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
158
158
|
function isEmpty(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
159
159
|
function length(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
160
|
-
function new_(client: SuiClient, args: [
|
|
160
|
+
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
|
161
161
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
162
162
|
string | ObjectCallArg | TransactionArgument,
|
|
163
163
|
T0 | TransactionArgument
|
|
@@ -339,10 +339,7 @@ export declare namespace borrow {
|
|
|
339
339
|
namespace builder {
|
|
340
340
|
function borrow<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
341
341
|
function destroy<T0 = any>(tx: TransactionBlock, args: [borrow.Referent<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
342
|
-
function new_<T0 = any>(tx: TransactionBlock, args: [
|
|
343
|
-
T0 | TransactionArgument,
|
|
344
|
-
string | ObjectCallArg | TransactionArgument
|
|
345
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
342
|
+
function new_<T0 = any>(tx: TransactionBlock, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
346
343
|
function putBack<T0 = any>(tx: TransactionBlock, args: [
|
|
347
344
|
string | ObjectCallArg | TransactionArgument,
|
|
348
345
|
T0 | TransactionArgument,
|
|
@@ -356,10 +353,7 @@ export declare namespace borrow {
|
|
|
356
353
|
namespace view {
|
|
357
354
|
function borrow<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, borrow.Borrow]>>;
|
|
358
355
|
function destroy<T0 = any>(client: SuiClient, args: [borrow.Referent<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
359
|
-
function new_<T0 = any>(client: SuiClient, args: [
|
|
360
|
-
T0 | TransactionArgument,
|
|
361
|
-
string | ObjectCallArg | TransactionArgument
|
|
362
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[borrow.Referent<T0>]>>;
|
|
356
|
+
function new_<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[borrow.Referent<T0>]>>;
|
|
363
357
|
function putBack<T0 = any>(client: SuiClient, args: [
|
|
364
358
|
string | ObjectCallArg | TransactionArgument,
|
|
365
359
|
T0 | TransactionArgument,
|
|
@@ -449,15 +443,13 @@ export declare namespace coin {
|
|
|
449
443
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
450
444
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
451
445
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
452
|
-
_0x1.option.Option<url.Url> | TransactionArgument
|
|
453
|
-
string | ObjectCallArg | TransactionArgument
|
|
446
|
+
_0x1.option.Option<url.Url> | TransactionArgument
|
|
454
447
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
455
448
|
TransactionArgument,
|
|
456
449
|
TransactionArgument,
|
|
457
450
|
TransactionArgument,
|
|
458
451
|
TransactionArgument,
|
|
459
452
|
TransactionArgument,
|
|
460
|
-
TransactionArgument,
|
|
461
453
|
TransactionArgument
|
|
462
454
|
];
|
|
463
455
|
function createRegulatedCurrency<T0 = any>(tx: TransactionBlock, args: [
|
|
@@ -466,24 +458,20 @@ export declare namespace coin {
|
|
|
466
458
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
467
459
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
468
460
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
469
|
-
_0x1.option.Option<url.Url> | TransactionArgument
|
|
470
|
-
string | ObjectCallArg | TransactionArgument
|
|
461
|
+
_0x1.option.Option<url.Url> | TransactionArgument
|
|
471
462
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
472
463
|
TransactionArgument,
|
|
473
464
|
TransactionArgument,
|
|
474
465
|
TransactionArgument,
|
|
475
466
|
TransactionArgument,
|
|
476
467
|
TransactionArgument,
|
|
477
|
-
TransactionArgument,
|
|
478
468
|
TransactionArgument
|
|
479
469
|
];
|
|
480
470
|
function denyListAdd<T0 = any>(tx: TransactionBlock, args: [
|
|
481
471
|
string | ObjectCallArg | TransactionArgument,
|
|
482
472
|
string | ObjectCallArg | TransactionArgument,
|
|
483
|
-
string | TransactionArgument
|
|
484
|
-
string | ObjectCallArg | TransactionArgument
|
|
473
|
+
string | TransactionArgument
|
|
485
474
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
486
|
-
TransactionArgument,
|
|
487
475
|
TransactionArgument,
|
|
488
476
|
TransactionArgument,
|
|
489
477
|
TransactionArgument
|
|
@@ -495,10 +483,8 @@ export declare namespace coin {
|
|
|
495
483
|
function denyListRemove<T0 = any>(tx: TransactionBlock, args: [
|
|
496
484
|
string | ObjectCallArg | TransactionArgument,
|
|
497
485
|
string | ObjectCallArg | TransactionArgument,
|
|
498
|
-
string | TransactionArgument
|
|
499
|
-
string | ObjectCallArg | TransactionArgument
|
|
486
|
+
string | TransactionArgument
|
|
500
487
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
501
|
-
TransactionArgument,
|
|
502
488
|
TransactionArgument,
|
|
503
489
|
TransactionArgument,
|
|
504
490
|
TransactionArgument
|
|
@@ -506,17 +492,9 @@ export declare namespace coin {
|
|
|
506
492
|
function destroyZero<T0 = any>(tx: TransactionBlock, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
507
493
|
function divideIntoN<T0 = any>(tx: TransactionBlock, args: [
|
|
508
494
|
string | ObjectCallArg | TransactionArgument,
|
|
509
|
-
bigint | TransactionArgument
|
|
510
|
-
string | ObjectCallArg | TransactionArgument
|
|
511
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
512
|
-
TransactionArgument,
|
|
513
|
-
TransactionArgument,
|
|
514
|
-
TransactionArgument
|
|
515
|
-
];
|
|
516
|
-
function fromBalance<T0 = any>(tx: TransactionBlock, args: [
|
|
517
|
-
balance.Balance<T0> | TransactionArgument,
|
|
518
|
-
string | ObjectCallArg | TransactionArgument
|
|
495
|
+
bigint | TransactionArgument
|
|
519
496
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
497
|
+
function fromBalance<T0 = any>(tx: TransactionBlock, args: [balance.Balance<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
520
498
|
function getDecimals<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
521
499
|
function getDescription<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
522
500
|
function getIconUrl<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -529,20 +507,13 @@ export declare namespace coin {
|
|
|
529
507
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
530
508
|
function mint<T0 = any>(tx: TransactionBlock, args: [
|
|
531
509
|
string | ObjectCallArg | TransactionArgument,
|
|
532
|
-
bigint | TransactionArgument
|
|
533
|
-
|
|
534
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
535
|
-
TransactionArgument,
|
|
536
|
-
TransactionArgument,
|
|
537
|
-
TransactionArgument
|
|
538
|
-
];
|
|
510
|
+
bigint | TransactionArgument
|
|
511
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
539
512
|
function mintAndTransfer<T0 = any>(tx: TransactionBlock, args: [
|
|
540
513
|
string | ObjectCallArg | TransactionArgument,
|
|
541
514
|
bigint | TransactionArgument,
|
|
542
|
-
string | TransactionArgument
|
|
543
|
-
string | ObjectCallArg | TransactionArgument
|
|
515
|
+
string | TransactionArgument
|
|
544
516
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
545
|
-
TransactionArgument,
|
|
546
517
|
TransactionArgument,
|
|
547
518
|
TransactionArgument,
|
|
548
519
|
TransactionArgument
|
|
@@ -557,25 +528,15 @@ export declare namespace coin {
|
|
|
557
528
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
558
529
|
function split<T0 = any>(tx: TransactionBlock, args: [
|
|
559
530
|
string | ObjectCallArg | TransactionArgument,
|
|
560
|
-
bigint | TransactionArgument
|
|
561
|
-
|
|
562
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
563
|
-
TransactionArgument,
|
|
564
|
-
TransactionArgument,
|
|
565
|
-
TransactionArgument
|
|
566
|
-
];
|
|
531
|
+
bigint | TransactionArgument
|
|
532
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
567
533
|
function supply<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
568
534
|
function supplyImmut<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
569
535
|
function supplyMut<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
570
536
|
function take<T0 = any>(tx: TransactionBlock, args: [
|
|
571
537
|
string | ObjectCallArg | TransactionArgument,
|
|
572
|
-
bigint | TransactionArgument
|
|
573
|
-
|
|
574
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
575
|
-
TransactionArgument,
|
|
576
|
-
TransactionArgument,
|
|
577
|
-
TransactionArgument
|
|
578
|
-
];
|
|
538
|
+
bigint | TransactionArgument
|
|
539
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
579
540
|
function totalSupply<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
580
541
|
function treasuryIntoSupply<T0 = any>(tx: TransactionBlock, args: [coin.TreasuryCap<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
581
542
|
function updateDescription<T0 = any>(tx: TransactionBlock, args: [
|
|
@@ -615,7 +576,7 @@ export declare namespace coin {
|
|
|
615
576
|
TransactionArgument
|
|
616
577
|
];
|
|
617
578
|
function value<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
618
|
-
function zero<T0 = any>(tx: TransactionBlock, args: [
|
|
579
|
+
function zero<T0 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
619
580
|
}
|
|
620
581
|
namespace view {
|
|
621
582
|
function balance<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
@@ -630,8 +591,7 @@ export declare namespace coin {
|
|
|
630
591
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
631
592
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
632
593
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
633
|
-
_0x1.option.Option<url.Url> | TransactionArgument
|
|
634
|
-
string | ObjectCallArg | TransactionArgument
|
|
594
|
+
_0x1.option.Option<url.Url> | TransactionArgument
|
|
635
595
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>, coin.CoinMetadata<T0>]>>;
|
|
636
596
|
function createRegulatedCurrency<T0 = any>(client: SuiClient, args: [
|
|
637
597
|
T0 | TransactionArgument,
|
|
@@ -639,8 +599,7 @@ export declare namespace coin {
|
|
|
639
599
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
640
600
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
641
601
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
642
|
-
_0x1.option.Option<url.Url> | TransactionArgument
|
|
643
|
-
string | ObjectCallArg | TransactionArgument
|
|
602
|
+
_0x1.option.Option<url.Url> | TransactionArgument
|
|
644
603
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
645
604
|
coin.TreasuryCap<T0>,
|
|
646
605
|
coin.DenyCap<T0>,
|
|
@@ -649,8 +608,7 @@ export declare namespace coin {
|
|
|
649
608
|
function denyListAdd<T0 = any>(client: SuiClient, args: [
|
|
650
609
|
string | ObjectCallArg | TransactionArgument,
|
|
651
610
|
string | ObjectCallArg | TransactionArgument,
|
|
652
|
-
string | TransactionArgument
|
|
653
|
-
string | ObjectCallArg | TransactionArgument
|
|
611
|
+
string | TransactionArgument
|
|
654
612
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
655
613
|
function denyListContains<T0 = any>(client: SuiClient, args: [
|
|
656
614
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -659,19 +617,14 @@ export declare namespace coin {
|
|
|
659
617
|
function denyListRemove<T0 = any>(client: SuiClient, args: [
|
|
660
618
|
string | ObjectCallArg | TransactionArgument,
|
|
661
619
|
string | ObjectCallArg | TransactionArgument,
|
|
662
|
-
string | TransactionArgument
|
|
663
|
-
string | ObjectCallArg | TransactionArgument
|
|
620
|
+
string | TransactionArgument
|
|
664
621
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
665
622
|
function destroyZero<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
666
623
|
function divideIntoN<T0 = any>(client: SuiClient, args: [
|
|
667
624
|
string | ObjectCallArg | TransactionArgument,
|
|
668
|
-
bigint | TransactionArgument
|
|
669
|
-
string | ObjectCallArg | TransactionArgument
|
|
625
|
+
bigint | TransactionArgument
|
|
670
626
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>[]]>>;
|
|
671
|
-
function fromBalance<T0 = any>(client: SuiClient, args: [
|
|
672
|
-
balance.Balance<T0> | TransactionArgument,
|
|
673
|
-
string | ObjectCallArg | TransactionArgument
|
|
674
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
627
|
+
function fromBalance<T0 = any>(client: SuiClient, args: [balance.Balance<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
675
628
|
function getDecimals<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
676
629
|
function getDescription<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
677
630
|
function getIconUrl<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<url.Url>]>>;
|
|
@@ -684,14 +637,12 @@ export declare namespace coin {
|
|
|
684
637
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
685
638
|
function mint<T0 = any>(client: SuiClient, args: [
|
|
686
639
|
string | ObjectCallArg | TransactionArgument,
|
|
687
|
-
bigint | TransactionArgument
|
|
688
|
-
string | ObjectCallArg | TransactionArgument
|
|
640
|
+
bigint | TransactionArgument
|
|
689
641
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
690
642
|
function mintAndTransfer<T0 = any>(client: SuiClient, args: [
|
|
691
643
|
string | ObjectCallArg | TransactionArgument,
|
|
692
644
|
bigint | TransactionArgument,
|
|
693
|
-
string | TransactionArgument
|
|
694
|
-
string | ObjectCallArg | TransactionArgument
|
|
645
|
+
string | TransactionArgument
|
|
695
646
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
696
647
|
function mintBalance<T0 = any>(client: SuiClient, args: [
|
|
697
648
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -703,16 +654,14 @@ export declare namespace coin {
|
|
|
703
654
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
704
655
|
function split<T0 = any>(client: SuiClient, args: [
|
|
705
656
|
string | ObjectCallArg | TransactionArgument,
|
|
706
|
-
bigint | TransactionArgument
|
|
707
|
-
string | ObjectCallArg | TransactionArgument
|
|
657
|
+
bigint | TransactionArgument
|
|
708
658
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
709
659
|
function supply<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
710
660
|
function supplyImmut<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
711
661
|
function supplyMut<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
712
662
|
function take<T0 = any>(client: SuiClient, args: [
|
|
713
663
|
string | ObjectCallArg | TransactionArgument,
|
|
714
|
-
bigint | TransactionArgument
|
|
715
|
-
string | ObjectCallArg | TransactionArgument
|
|
664
|
+
bigint | TransactionArgument
|
|
716
665
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
717
666
|
function totalSupply<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
718
667
|
function treasuryIntoSupply<T0 = any>(client: SuiClient, args: [coin.TreasuryCap<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
@@ -737,7 +686,7 @@ export declare namespace coin {
|
|
|
737
686
|
_0x1.ascii.String | TransactionArgument
|
|
738
687
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
739
688
|
function value<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
740
|
-
function zero<T0 = any>(client: SuiClient, args: [
|
|
689
|
+
function zero<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
741
690
|
}
|
|
742
691
|
}
|
|
743
692
|
export declare namespace deny_list {
|
|
@@ -814,10 +763,7 @@ export declare namespace display {
|
|
|
814
763
|
TransactionArgument,
|
|
815
764
|
TransactionArgument
|
|
816
765
|
];
|
|
817
|
-
function createAndKeep<T0 = any>(tx: TransactionBlock, args: [
|
|
818
|
-
string | ObjectCallArg | TransactionArgument,
|
|
819
|
-
string | ObjectCallArg | TransactionArgument
|
|
820
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
766
|
+
function createAndKeep<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
821
767
|
function edit<T0 = any>(tx: TransactionBlock, args: [
|
|
822
768
|
string | ObjectCallArg | TransactionArgument,
|
|
823
769
|
string | TransactionArgument,
|
|
@@ -829,17 +775,12 @@ export declare namespace display {
|
|
|
829
775
|
];
|
|
830
776
|
function fields<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
831
777
|
function isAuthorized<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
832
|
-
function new_<T0 = any>(tx: TransactionBlock, args: [
|
|
833
|
-
string | ObjectCallArg | TransactionArgument,
|
|
834
|
-
string | ObjectCallArg | TransactionArgument
|
|
835
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
778
|
+
function new_<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
836
779
|
function newWithFields<T0 = any>(tx: TransactionBlock, args: [
|
|
837
780
|
string | ObjectCallArg | TransactionArgument,
|
|
838
781
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
839
|
-
(string | ObjectCallArg)[] | TransactionArgument
|
|
840
|
-
string | ObjectCallArg | TransactionArgument
|
|
782
|
+
(string | ObjectCallArg)[] | TransactionArgument
|
|
841
783
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
842
|
-
TransactionArgument,
|
|
843
784
|
TransactionArgument,
|
|
844
785
|
TransactionArgument,
|
|
845
786
|
TransactionArgument
|
|
@@ -862,10 +803,7 @@ export declare namespace display {
|
|
|
862
803
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
863
804
|
(string | ObjectCallArg)[] | TransactionArgument
|
|
864
805
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
865
|
-
function createAndKeep<T0 = any>(client: SuiClient, args: [
|
|
866
|
-
string | ObjectCallArg | TransactionArgument,
|
|
867
|
-
string | ObjectCallArg | TransactionArgument
|
|
868
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
806
|
+
function createAndKeep<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
869
807
|
function edit<T0 = any>(client: SuiClient, args: [
|
|
870
808
|
string | ObjectCallArg | TransactionArgument,
|
|
871
809
|
string | TransactionArgument,
|
|
@@ -873,15 +811,11 @@ export declare namespace display {
|
|
|
873
811
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
874
812
|
function fields<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
875
813
|
function isAuthorized<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
876
|
-
function new_<T0 = any>(client: SuiClient, args: [
|
|
877
|
-
string | ObjectCallArg | TransactionArgument,
|
|
878
|
-
string | ObjectCallArg | TransactionArgument
|
|
879
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
814
|
+
function new_<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
880
815
|
function newWithFields<T0 = any>(client: SuiClient, args: [
|
|
881
816
|
string | ObjectCallArg | TransactionArgument,
|
|
882
817
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
883
|
-
(string | ObjectCallArg)[] | TransactionArgument
|
|
884
|
-
string | ObjectCallArg | TransactionArgument
|
|
818
|
+
(string | ObjectCallArg)[] | TransactionArgument
|
|
885
819
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
886
820
|
function remove<T0 = any>(client: SuiClient, args: [
|
|
887
821
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1453,14 +1387,9 @@ export declare namespace kiosk {
|
|
|
1453
1387
|
];
|
|
1454
1388
|
function closeAndWithdraw(tx: TransactionBlock, args: [
|
|
1455
1389
|
kiosk.Kiosk | TransactionArgument,
|
|
1456
|
-
kiosk.KioskOwnerCap | TransactionArgument
|
|
1457
|
-
|
|
1458
|
-
]): TransactionArgument & [
|
|
1459
|
-
TransactionArgument,
|
|
1460
|
-
TransactionArgument,
|
|
1461
|
-
TransactionArgument
|
|
1462
|
-
];
|
|
1463
|
-
function default_(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
1390
|
+
kiosk.KioskOwnerCap | TransactionArgument
|
|
1391
|
+
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1392
|
+
function default_(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
1464
1393
|
function delist<T0 = any>(tx: TransactionBlock, args: [
|
|
1465
1394
|
string | ObjectCallArg | TransactionArgument,
|
|
1466
1395
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1511,13 +1440,11 @@ export declare namespace kiosk {
|
|
|
1511
1440
|
string | ObjectCallArg | TransactionArgument,
|
|
1512
1441
|
string | ObjectCallArg | TransactionArgument,
|
|
1513
1442
|
object_.ID | TransactionArgument,
|
|
1514
|
-
bigint | TransactionArgument
|
|
1515
|
-
string | ObjectCallArg | TransactionArgument
|
|
1443
|
+
bigint | TransactionArgument
|
|
1516
1444
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1517
1445
|
TransactionArgument,
|
|
1518
1446
|
TransactionArgument,
|
|
1519
1447
|
TransactionArgument,
|
|
1520
|
-
TransactionArgument,
|
|
1521
1448
|
TransactionArgument
|
|
1522
1449
|
];
|
|
1523
1450
|
function lock<T0 = any>(tx: TransactionBlock, args: [
|
|
@@ -1531,7 +1458,7 @@ export declare namespace kiosk {
|
|
|
1531
1458
|
TransactionArgument,
|
|
1532
1459
|
TransactionArgument
|
|
1533
1460
|
];
|
|
1534
|
-
function new_(tx: TransactionBlock, args: [
|
|
1461
|
+
function new_(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
1535
1462
|
function owner(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
1536
1463
|
function place<T0 = any>(tx: TransactionBlock, args: [
|
|
1537
1464
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1602,14 +1529,9 @@ export declare namespace kiosk {
|
|
|
1602
1529
|
TransactionArgument
|
|
1603
1530
|
];
|
|
1604
1531
|
function setOwner(tx: TransactionBlock, args: [
|
|
1605
|
-
string | ObjectCallArg | TransactionArgument,
|
|
1606
1532
|
string | ObjectCallArg | TransactionArgument,
|
|
1607
1533
|
string | ObjectCallArg | TransactionArgument
|
|
1608
|
-
]): TransactionArgument & [
|
|
1609
|
-
TransactionArgument,
|
|
1610
|
-
TransactionArgument,
|
|
1611
|
-
TransactionArgument
|
|
1612
|
-
];
|
|
1534
|
+
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1613
1535
|
function setOwnerCustom(tx: TransactionBlock, args: [
|
|
1614
1536
|
string | ObjectCallArg | TransactionArgument,
|
|
1615
1537
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1637,10 +1559,8 @@ export declare namespace kiosk {
|
|
|
1637
1559
|
function withdraw(tx: TransactionBlock, args: [
|
|
1638
1560
|
string | ObjectCallArg | TransactionArgument,
|
|
1639
1561
|
string | ObjectCallArg | TransactionArgument,
|
|
1640
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
|
1641
|
-
string | ObjectCallArg | TransactionArgument
|
|
1562
|
+
_0x1.option.Option<bigint> | TransactionArgument
|
|
1642
1563
|
]): TransactionArgument & [
|
|
1643
|
-
TransactionArgument,
|
|
1644
1564
|
TransactionArgument,
|
|
1645
1565
|
TransactionArgument,
|
|
1646
1566
|
TransactionArgument
|
|
@@ -1664,8 +1584,7 @@ export declare namespace kiosk {
|
|
|
1664
1584
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, kiosk.Borrow]>>;
|
|
1665
1585
|
function closeAndWithdraw(client: SuiClient, args: [
|
|
1666
1586
|
kiosk.Kiosk | TransactionArgument,
|
|
1667
|
-
kiosk.KioskOwnerCap | TransactionArgument
|
|
1668
|
-
string | ObjectCallArg | TransactionArgument
|
|
1587
|
+
kiosk.KioskOwnerCap | TransactionArgument
|
|
1669
1588
|
]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
1670
1589
|
function delist<T0 = any>(client: SuiClient, args: [
|
|
1671
1590
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1708,8 +1627,7 @@ export declare namespace kiosk {
|
|
|
1708
1627
|
string | ObjectCallArg | TransactionArgument,
|
|
1709
1628
|
string | ObjectCallArg | TransactionArgument,
|
|
1710
1629
|
object_.ID | TransactionArgument,
|
|
1711
|
-
bigint | TransactionArgument
|
|
1712
|
-
string | ObjectCallArg | TransactionArgument
|
|
1630
|
+
bigint | TransactionArgument
|
|
1713
1631
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[kiosk.PurchaseCap<T0>]>>;
|
|
1714
1632
|
function lock<T0 = any>(client: SuiClient, args: [
|
|
1715
1633
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1717,7 +1635,7 @@ export declare namespace kiosk {
|
|
|
1717
1635
|
string | ObjectCallArg | TransactionArgument,
|
|
1718
1636
|
T0 | TransactionArgument
|
|
1719
1637
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1720
|
-
function new_(client: SuiClient, args: [
|
|
1638
|
+
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[kiosk.Kiosk, kiosk.KioskOwnerCap]>>;
|
|
1721
1639
|
function owner(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
1722
1640
|
function place<T0 = any>(client: SuiClient, args: [
|
|
1723
1641
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -1763,7 +1681,6 @@ export declare namespace kiosk {
|
|
|
1763
1681
|
Boolean | TransactionArgument
|
|
1764
1682
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
1765
1683
|
function setOwner(client: SuiClient, args: [
|
|
1766
|
-
string | ObjectCallArg | TransactionArgument,
|
|
1767
1684
|
string | ObjectCallArg | TransactionArgument,
|
|
1768
1685
|
string | ObjectCallArg | TransactionArgument
|
|
1769
1686
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
@@ -1786,8 +1703,7 @@ export declare namespace kiosk {
|
|
|
1786
1703
|
function withdraw(client: SuiClient, args: [
|
|
1787
1704
|
string | ObjectCallArg | TransactionArgument,
|
|
1788
1705
|
string | ObjectCallArg | TransactionArgument,
|
|
1789
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
|
1790
|
-
string | ObjectCallArg | TransactionArgument
|
|
1706
|
+
_0x1.option.Option<bigint> | TransactionArgument
|
|
1791
1707
|
]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
1792
1708
|
}
|
|
1793
1709
|
}
|
|
@@ -1817,13 +1733,11 @@ export declare namespace kiosk_extension {
|
|
|
1817
1733
|
T0 | TransactionArgument,
|
|
1818
1734
|
string | ObjectCallArg | TransactionArgument,
|
|
1819
1735
|
string | ObjectCallArg | TransactionArgument,
|
|
1820
|
-
bigint | TransactionArgument
|
|
1821
|
-
string | ObjectCallArg | TransactionArgument
|
|
1736
|
+
bigint | TransactionArgument
|
|
1822
1737
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1823
1738
|
TransactionArgument,
|
|
1824
1739
|
TransactionArgument,
|
|
1825
1740
|
TransactionArgument,
|
|
1826
|
-
TransactionArgument,
|
|
1827
1741
|
TransactionArgument
|
|
1828
1742
|
];
|
|
1829
1743
|
function canLock<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -1878,8 +1792,7 @@ export declare namespace kiosk_extension {
|
|
|
1878
1792
|
T0 | TransactionArgument,
|
|
1879
1793
|
string | ObjectCallArg | TransactionArgument,
|
|
1880
1794
|
string | ObjectCallArg | TransactionArgument,
|
|
1881
|
-
bigint | TransactionArgument
|
|
1882
|
-
string | ObjectCallArg | TransactionArgument
|
|
1795
|
+
bigint | TransactionArgument
|
|
1883
1796
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1884
1797
|
function canLock<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
1885
1798
|
function canPlace<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
@@ -1958,7 +1871,7 @@ export declare namespace linked_table {
|
|
|
1958
1871
|
function front<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
1959
1872
|
function isEmpty<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
1960
1873
|
function length<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
1961
|
-
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
1874
|
+
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
|
1962
1875
|
function next<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
1963
1876
|
string | ObjectCallArg | TransactionArgument,
|
|
1964
1877
|
T0 | TransactionArgument
|
|
@@ -2011,7 +1924,7 @@ export declare namespace linked_table {
|
|
|
2011
1924
|
function front<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2012
1925
|
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
2013
1926
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2014
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
1927
|
+
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
|
2015
1928
|
function next<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2016
1929
|
string | ObjectCallArg | TransactionArgument,
|
|
2017
1930
|
T0 | TransactionArgument
|
|
@@ -2081,7 +1994,7 @@ export declare namespace object_ {
|
|
|
2081
1994
|
function idFromBytes(tx: TransactionBlock, args: [(string | ObjectCallArg)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2082
1995
|
function idToAddress(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2083
1996
|
function idToBytes(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2084
|
-
function new_(tx: TransactionBlock, args: [
|
|
1997
|
+
function new_(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
2085
1998
|
function uidAsInner(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2086
1999
|
function uidToAddress(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2087
2000
|
function uidToBytes(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
@@ -2097,7 +2010,7 @@ export declare namespace object_ {
|
|
|
2097
2010
|
function idFromBytes(client: SuiClient, args: [(string | ObjectCallArg)[] | TransactionArgument]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
|
2098
2011
|
function idToAddress(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
2099
2012
|
function idToBytes(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2100
|
-
function new_(client: SuiClient, args: [
|
|
2013
|
+
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object_.UID]>>;
|
|
2101
2014
|
function uidAsInner(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
2102
2015
|
function uidToAddress(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
2103
2016
|
function uidToBytes(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
@@ -2142,7 +2055,7 @@ export declare namespace object_bag {
|
|
|
2142
2055
|
function destroyEmpty(tx: TransactionBlock, args: [object_bag.ObjectBag | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2143
2056
|
function isEmpty(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2144
2057
|
function length(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2145
|
-
function new_(tx: TransactionBlock, args: [
|
|
2058
|
+
function new_(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
2146
2059
|
function remove<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2147
2060
|
string | ObjectCallArg | TransactionArgument,
|
|
2148
2061
|
T0 | TransactionArgument
|
|
@@ -2177,7 +2090,7 @@ export declare namespace object_bag {
|
|
|
2177
2090
|
function destroyEmpty(client: SuiClient, args: [object_bag.ObjectBag | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
2178
2091
|
function isEmpty(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
2179
2092
|
function length(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2180
|
-
function new_(client: SuiClient, args: [
|
|
2093
|
+
function new_(client: SuiClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
|
2181
2094
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2182
2095
|
string | ObjectCallArg | TransactionArgument,
|
|
2183
2096
|
T0 | TransactionArgument
|
|
@@ -2222,7 +2135,7 @@ export declare namespace object_table {
|
|
|
2222
2135
|
function destroyEmpty<T0 = any, T1 = any>(tx: TransactionBlock, args: [object_table.ObjectTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2223
2136
|
function isEmpty<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2224
2137
|
function length<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2225
|
-
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2138
|
+
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
|
2226
2139
|
function remove<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2227
2140
|
string | ObjectCallArg | TransactionArgument,
|
|
2228
2141
|
T0 | TransactionArgument
|
|
@@ -2253,7 +2166,7 @@ export declare namespace object_table {
|
|
|
2253
2166
|
function destroyEmpty<T0 = any, T1 = any>(client: SuiClient, args: [object_table.ObjectTable<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2254
2167
|
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
2255
2168
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2256
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2169
|
+
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
|
2257
2170
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2258
2171
|
string | ObjectCallArg | TransactionArgument,
|
|
2259
2172
|
T0 | TransactionArgument
|
|
@@ -2314,14 +2227,8 @@ export declare namespace package_ {
|
|
|
2314
2227
|
TransactionArgument
|
|
2315
2228
|
];
|
|
2316
2229
|
function burnPublisher(tx: TransactionBlock, args: [package_.Publisher | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2317
|
-
function claim<T0 = any>(tx: TransactionBlock, args: [
|
|
2318
|
-
|
|
2319
|
-
string | ObjectCallArg | TransactionArgument
|
|
2320
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2321
|
-
function claimAndKeep<T0 = any>(tx: TransactionBlock, args: [
|
|
2322
|
-
T0 | TransactionArgument,
|
|
2323
|
-
string | ObjectCallArg | TransactionArgument
|
|
2324
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2230
|
+
function claim<T0 = any>(tx: TransactionBlock, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2231
|
+
function claimAndKeep<T0 = any>(tx: TransactionBlock, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2325
2232
|
function commitUpgrade(tx: TransactionBlock, args: [
|
|
2326
2233
|
string | ObjectCallArg | TransactionArgument,
|
|
2327
2234
|
package_.UpgradeReceipt | TransactionArgument
|
|
@@ -2352,14 +2259,8 @@ export declare namespace package_ {
|
|
|
2352
2259
|
(string | ObjectCallArg)[] | TransactionArgument
|
|
2353
2260
|
]): Promise<TypedDevInspectResults<[package_.UpgradeTicket]>>;
|
|
2354
2261
|
function burnPublisher(client: SuiClient, args: [package_.Publisher | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
2355
|
-
function claim<T0 = any>(client: SuiClient, args: [
|
|
2356
|
-
|
|
2357
|
-
string | ObjectCallArg | TransactionArgument
|
|
2358
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package_.Publisher]>>;
|
|
2359
|
-
function claimAndKeep<T0 = any>(client: SuiClient, args: [
|
|
2360
|
-
T0 | TransactionArgument,
|
|
2361
|
-
string | ObjectCallArg | TransactionArgument
|
|
2362
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2262
|
+
function claim<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package_.Publisher]>>;
|
|
2263
|
+
function claimAndKeep<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2363
2264
|
function commitUpgrade(client: SuiClient, args: [
|
|
2364
2265
|
string | ObjectCallArg | TransactionArgument,
|
|
2365
2266
|
package_.UpgradeReceipt | TransactionArgument
|
|
@@ -2387,13 +2288,8 @@ export declare namespace pay {
|
|
|
2387
2288
|
namespace builder {
|
|
2388
2289
|
function divideAndKeep<T0 = any>(tx: TransactionBlock, args: [
|
|
2389
2290
|
string | ObjectCallArg | TransactionArgument,
|
|
2390
|
-
bigint | TransactionArgument
|
|
2391
|
-
|
|
2392
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2393
|
-
TransactionArgument,
|
|
2394
|
-
TransactionArgument,
|
|
2395
|
-
TransactionArgument
|
|
2396
|
-
];
|
|
2291
|
+
bigint | TransactionArgument
|
|
2292
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2397
2293
|
function join<T0 = any>(tx: TransactionBlock, args: [
|
|
2398
2294
|
string | ObjectCallArg | TransactionArgument,
|
|
2399
2295
|
coin.Coin<T0> | TransactionArgument
|
|
@@ -2406,45 +2302,29 @@ export declare namespace pay {
|
|
|
2406
2302
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
2407
2303
|
string | TransactionArgument
|
|
2408
2304
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2409
|
-
function keep<T0 = any>(tx: TransactionBlock, args: [
|
|
2410
|
-
coin.Coin<T0> | TransactionArgument,
|
|
2411
|
-
string | ObjectCallArg | TransactionArgument
|
|
2412
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2305
|
+
function keep<T0 = any>(tx: TransactionBlock, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2413
2306
|
function split<T0 = any>(tx: TransactionBlock, args: [
|
|
2414
2307
|
string | ObjectCallArg | TransactionArgument,
|
|
2415
|
-
bigint | TransactionArgument
|
|
2416
|
-
|
|
2417
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2418
|
-
TransactionArgument,
|
|
2419
|
-
TransactionArgument,
|
|
2420
|
-
TransactionArgument
|
|
2421
|
-
];
|
|
2308
|
+
bigint | TransactionArgument
|
|
2309
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2422
2310
|
function splitAndTransfer<T0 = any>(tx: TransactionBlock, args: [
|
|
2423
2311
|
string | ObjectCallArg | TransactionArgument,
|
|
2424
2312
|
bigint | TransactionArgument,
|
|
2425
|
-
string | TransactionArgument
|
|
2426
|
-
string | ObjectCallArg | TransactionArgument
|
|
2313
|
+
string | TransactionArgument
|
|
2427
2314
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2428
|
-
TransactionArgument,
|
|
2429
2315
|
TransactionArgument,
|
|
2430
2316
|
TransactionArgument,
|
|
2431
2317
|
TransactionArgument
|
|
2432
2318
|
];
|
|
2433
2319
|
function splitVec<T0 = any>(tx: TransactionBlock, args: [
|
|
2434
2320
|
string | ObjectCallArg | TransactionArgument,
|
|
2435
|
-
(string | ObjectCallArg)[] | TransactionArgument
|
|
2436
|
-
|
|
2437
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2438
|
-
TransactionArgument,
|
|
2439
|
-
TransactionArgument,
|
|
2440
|
-
TransactionArgument
|
|
2441
|
-
];
|
|
2321
|
+
(string | ObjectCallArg)[] | TransactionArgument
|
|
2322
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2442
2323
|
}
|
|
2443
2324
|
namespace view {
|
|
2444
2325
|
function divideAndKeep<T0 = any>(client: SuiClient, args: [
|
|
2445
2326
|
string | ObjectCallArg | TransactionArgument,
|
|
2446
|
-
bigint | TransactionArgument
|
|
2447
|
-
string | ObjectCallArg | TransactionArgument
|
|
2327
|
+
bigint | TransactionArgument
|
|
2448
2328
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2449
2329
|
function join<T0 = any>(client: SuiClient, args: [
|
|
2450
2330
|
string | ObjectCallArg | TransactionArgument,
|
|
@@ -2458,25 +2338,19 @@ export declare namespace pay {
|
|
|
2458
2338
|
(string | ObjectCallArg)[] | TransactionArgument,
|
|
2459
2339
|
string | TransactionArgument
|
|
2460
2340
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2461
|
-
function keep<T0 = any>(client: SuiClient, args: [
|
|
2462
|
-
coin.Coin<T0> | TransactionArgument,
|
|
2463
|
-
string | ObjectCallArg | TransactionArgument
|
|
2464
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2341
|
+
function keep<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2465
2342
|
function split<T0 = any>(client: SuiClient, args: [
|
|
2466
2343
|
string | ObjectCallArg | TransactionArgument,
|
|
2467
|
-
bigint | TransactionArgument
|
|
2468
|
-
string | ObjectCallArg | TransactionArgument
|
|
2344
|
+
bigint | TransactionArgument
|
|
2469
2345
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2470
2346
|
function splitAndTransfer<T0 = any>(client: SuiClient, args: [
|
|
2471
2347
|
string | ObjectCallArg | TransactionArgument,
|
|
2472
2348
|
bigint | TransactionArgument,
|
|
2473
|
-
string | TransactionArgument
|
|
2474
|
-
string | ObjectCallArg | TransactionArgument
|
|
2349
|
+
string | TransactionArgument
|
|
2475
2350
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2476
2351
|
function splitVec<T0 = any>(client: SuiClient, args: [
|
|
2477
2352
|
string | ObjectCallArg | TransactionArgument,
|
|
2478
|
-
(string | ObjectCallArg)[] | TransactionArgument
|
|
2479
|
-
string | ObjectCallArg | TransactionArgument
|
|
2353
|
+
(string | ObjectCallArg)[] | TransactionArgument
|
|
2480
2354
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2481
2355
|
}
|
|
2482
2356
|
}
|
|
@@ -2621,7 +2495,7 @@ export declare namespace table {
|
|
|
2621
2495
|
function drop<T0 = any, T1 = any>(tx: TransactionBlock, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2622
2496
|
function isEmpty<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2623
2497
|
function length<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2624
|
-
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2498
|
+
function new_<T0 = any, T1 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [];
|
|
2625
2499
|
function remove<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2626
2500
|
string | ObjectCallArg | TransactionArgument,
|
|
2627
2501
|
T0 | TransactionArgument
|
|
@@ -2649,7 +2523,7 @@ export declare namespace table {
|
|
|
2649
2523
|
function drop<T0 = any, T1 = any>(client: SuiClient, args: [table.Table<T0, T1> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2650
2524
|
function isEmpty<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
2651
2525
|
function length<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2652
|
-
function new_<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2526
|
+
function new_<T0 = any, T1 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
|
2653
2527
|
function remove<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
2654
2528
|
string | ObjectCallArg | TransactionArgument,
|
|
2655
2529
|
T0 | TransactionArgument
|
|
@@ -2675,7 +2549,7 @@ export declare namespace table_vec {
|
|
|
2675
2549
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2676
2550
|
function destroyEmpty<T0 = any>(tx: TransactionBlock, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2677
2551
|
function drop<T0 = any>(tx: TransactionBlock, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2678
|
-
function empty<T0 = any>(tx: TransactionBlock, args: [
|
|
2552
|
+
function empty<T0 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
2679
2553
|
function isEmpty<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2680
2554
|
function length<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2681
2555
|
function popBack<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -2683,10 +2557,7 @@ export declare namespace table_vec {
|
|
|
2683
2557
|
string | ObjectCallArg | TransactionArgument,
|
|
2684
2558
|
T0 | TransactionArgument
|
|
2685
2559
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2686
|
-
function singleton<T0 = any>(tx: TransactionBlock, args: [
|
|
2687
|
-
T0 | TransactionArgument,
|
|
2688
|
-
string | ObjectCallArg | TransactionArgument
|
|
2689
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2560
|
+
function singleton<T0 = any>(tx: TransactionBlock, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2690
2561
|
function swap<T0 = any>(tx: TransactionBlock, args: [
|
|
2691
2562
|
string | ObjectCallArg | TransactionArgument,
|
|
2692
2563
|
bigint | TransactionArgument,
|
|
@@ -2712,7 +2583,7 @@ export declare namespace table_vec {
|
|
|
2712
2583
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2713
2584
|
function destroyEmpty<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2714
2585
|
function drop<T0 = any>(client: SuiClient, args: [table_vec.TableVec<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2715
|
-
function empty<T0 = any>(client: SuiClient, args: [
|
|
2586
|
+
function empty<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
2716
2587
|
function isEmpty<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
2717
2588
|
function length<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2718
2589
|
function popBack<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
@@ -2720,10 +2591,7 @@ export declare namespace table_vec {
|
|
|
2720
2591
|
string | ObjectCallArg | TransactionArgument,
|
|
2721
2592
|
T0 | TransactionArgument
|
|
2722
2593
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2723
|
-
function singleton<T0 = any>(client: SuiClient, args: [
|
|
2724
|
-
T0 | TransactionArgument,
|
|
2725
|
-
string | ObjectCallArg | TransactionArgument
|
|
2726
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
2594
|
+
function singleton<T0 = any>(client: SuiClient, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
2727
2595
|
function swap<T0 = any>(client: SuiClient, args: [
|
|
2728
2596
|
string | ObjectCallArg | TransactionArgument,
|
|
2729
2597
|
bigint | TransactionArgument,
|
|
@@ -2800,19 +2668,13 @@ export declare namespace token {
|
|
|
2800
2668
|
function action<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2801
2669
|
function addApproval<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2802
2670
|
T1 | TransactionArgument,
|
|
2803
|
-
string | ObjectCallArg | TransactionArgument,
|
|
2804
2671
|
string | ObjectCallArg | TransactionArgument
|
|
2805
|
-
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [
|
|
2806
|
-
TransactionArgument,
|
|
2807
|
-
TransactionArgument,
|
|
2808
|
-
TransactionArgument
|
|
2809
|
-
];
|
|
2672
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2810
2673
|
function addRuleConfig<T0 = any, T1 = any, T2 = any>(tx: TransactionBlock, args: [
|
|
2811
2674
|
T1 | TransactionArgument,
|
|
2812
2675
|
string | ObjectCallArg | TransactionArgument,
|
|
2813
2676
|
string | ObjectCallArg | TransactionArgument,
|
|
2814
|
-
T2 | TransactionArgument
|
|
2815
|
-
string | ObjectCallArg | TransactionArgument
|
|
2677
|
+
T2 | TransactionArgument
|
|
2816
2678
|
], typeArguments: [
|
|
2817
2679
|
TypeDescriptor<T0> | string,
|
|
2818
2680
|
TypeDescriptor<T1> | string,
|
|
@@ -2821,16 +2683,13 @@ export declare namespace token {
|
|
|
2821
2683
|
TransactionArgument,
|
|
2822
2684
|
TransactionArgument,
|
|
2823
2685
|
TransactionArgument,
|
|
2824
|
-
TransactionArgument,
|
|
2825
2686
|
TransactionArgument
|
|
2826
2687
|
];
|
|
2827
2688
|
function addRuleForAction<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2828
2689
|
string | ObjectCallArg | TransactionArgument,
|
|
2829
2690
|
string | ObjectCallArg | TransactionArgument,
|
|
2830
|
-
string | TransactionArgument
|
|
2831
|
-
string | ObjectCallArg | TransactionArgument
|
|
2691
|
+
string | TransactionArgument
|
|
2832
2692
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [
|
|
2833
|
-
TransactionArgument,
|
|
2834
2693
|
TransactionArgument,
|
|
2835
2694
|
TransactionArgument,
|
|
2836
2695
|
TransactionArgument
|
|
@@ -2838,10 +2697,8 @@ export declare namespace token {
|
|
|
2838
2697
|
function allow<T0 = any>(tx: TransactionBlock, args: [
|
|
2839
2698
|
string | ObjectCallArg | TransactionArgument,
|
|
2840
2699
|
string | ObjectCallArg | TransactionArgument,
|
|
2841
|
-
string | TransactionArgument
|
|
2842
|
-
string | ObjectCallArg | TransactionArgument
|
|
2700
|
+
string | TransactionArgument
|
|
2843
2701
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2844
|
-
TransactionArgument,
|
|
2845
2702
|
TransactionArgument,
|
|
2846
2703
|
TransactionArgument,
|
|
2847
2704
|
TransactionArgument
|
|
@@ -2854,65 +2711,35 @@ export declare namespace token {
|
|
|
2854
2711
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2855
2712
|
function confirmRequest<T0 = any>(tx: TransactionBlock, args: [
|
|
2856
2713
|
string | ObjectCallArg | TransactionArgument,
|
|
2857
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
2858
|
-
|
|
2859
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2860
|
-
TransactionArgument,
|
|
2861
|
-
TransactionArgument,
|
|
2862
|
-
TransactionArgument
|
|
2863
|
-
];
|
|
2714
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
2715
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2864
2716
|
function confirmRequestMut<T0 = any>(tx: TransactionBlock, args: [
|
|
2865
2717
|
string | ObjectCallArg | TransactionArgument,
|
|
2866
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
2867
|
-
|
|
2868
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2869
|
-
TransactionArgument,
|
|
2870
|
-
TransactionArgument,
|
|
2871
|
-
TransactionArgument
|
|
2872
|
-
];
|
|
2718
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
2719
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2873
2720
|
function confirmWithPolicyCap<T0 = any>(tx: TransactionBlock, args: [
|
|
2874
2721
|
string | ObjectCallArg | TransactionArgument,
|
|
2875
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
2876
|
-
|
|
2877
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2878
|
-
TransactionArgument,
|
|
2879
|
-
TransactionArgument,
|
|
2880
|
-
TransactionArgument
|
|
2881
|
-
];
|
|
2722
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
2723
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2882
2724
|
function confirmWithTreasuryCap<T0 = any>(tx: TransactionBlock, args: [
|
|
2883
2725
|
string | ObjectCallArg | TransactionArgument,
|
|
2884
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
2885
|
-
|
|
2886
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2887
|
-
TransactionArgument,
|
|
2888
|
-
TransactionArgument,
|
|
2889
|
-
TransactionArgument
|
|
2890
|
-
];
|
|
2726
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
2727
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2891
2728
|
function destroyZero<T0 = any>(tx: TransactionBlock, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2892
2729
|
function disallow<T0 = any>(tx: TransactionBlock, args: [
|
|
2893
2730
|
string | ObjectCallArg | TransactionArgument,
|
|
2894
2731
|
string | ObjectCallArg | TransactionArgument,
|
|
2895
|
-
string | TransactionArgument
|
|
2896
|
-
string | ObjectCallArg | TransactionArgument
|
|
2732
|
+
string | TransactionArgument
|
|
2897
2733
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2898
|
-
TransactionArgument,
|
|
2899
2734
|
TransactionArgument,
|
|
2900
2735
|
TransactionArgument,
|
|
2901
2736
|
TransactionArgument
|
|
2902
2737
|
];
|
|
2903
2738
|
function flush<T0 = any>(tx: TransactionBlock, args: [
|
|
2904
|
-
string | ObjectCallArg | TransactionArgument,
|
|
2905
2739
|
string | ObjectCallArg | TransactionArgument,
|
|
2906
2740
|
string | ObjectCallArg | TransactionArgument
|
|
2907
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2908
|
-
TransactionArgument,
|
|
2909
|
-
TransactionArgument,
|
|
2910
|
-
TransactionArgument
|
|
2911
|
-
];
|
|
2912
|
-
function fromCoin<T0 = any>(tx: TransactionBlock, args: [
|
|
2913
|
-
coin.Coin<T0> | TransactionArgument,
|
|
2914
|
-
string | ObjectCallArg | TransactionArgument
|
|
2915
2741
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2742
|
+
function fromCoin<T0 = any>(tx: TransactionBlock, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2916
2743
|
function fromCoinAction(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
2917
2744
|
function hasRuleConfig<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
2918
2745
|
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [
|
|
@@ -2928,57 +2755,37 @@ export declare namespace token {
|
|
|
2928
2755
|
string | ObjectCallArg | TransactionArgument,
|
|
2929
2756
|
token.Token<T0> | TransactionArgument
|
|
2930
2757
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2931
|
-
function keep<T0 = any>(tx: TransactionBlock, args: [
|
|
2932
|
-
token.Token<T0> | TransactionArgument,
|
|
2933
|
-
string | ObjectCallArg | TransactionArgument
|
|
2934
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2758
|
+
function keep<T0 = any>(tx: TransactionBlock, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2935
2759
|
function mint<T0 = any>(tx: TransactionBlock, args: [
|
|
2936
2760
|
string | ObjectCallArg | TransactionArgument,
|
|
2937
|
-
bigint | TransactionArgument
|
|
2938
|
-
string | ObjectCallArg | TransactionArgument
|
|
2939
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2940
|
-
TransactionArgument,
|
|
2941
|
-
TransactionArgument,
|
|
2942
|
-
TransactionArgument
|
|
2943
|
-
];
|
|
2944
|
-
function newPolicy<T0 = any>(tx: TransactionBlock, args: [
|
|
2945
|
-
string | ObjectCallArg | TransactionArgument,
|
|
2946
|
-
string | ObjectCallArg | TransactionArgument
|
|
2761
|
+
bigint | TransactionArgument
|
|
2947
2762
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2763
|
+
function newPolicy<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2948
2764
|
function newRequest<T0 = any>(tx: TransactionBlock, args: [
|
|
2949
2765
|
string | TransactionArgument,
|
|
2950
2766
|
bigint | TransactionArgument,
|
|
2951
2767
|
_0x1.option.Option<string> | TransactionArgument,
|
|
2952
|
-
_0x1.option.Option<balance.Balance<T0>> | TransactionArgument
|
|
2953
|
-
string | ObjectCallArg | TransactionArgument
|
|
2768
|
+
_0x1.option.Option<balance.Balance<T0>> | TransactionArgument
|
|
2954
2769
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
2955
2770
|
TransactionArgument,
|
|
2956
2771
|
TransactionArgument,
|
|
2957
2772
|
TransactionArgument,
|
|
2958
|
-
TransactionArgument,
|
|
2959
2773
|
TransactionArgument
|
|
2960
2774
|
];
|
|
2961
2775
|
function recipient<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2962
2776
|
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(tx: TransactionBlock, args: [
|
|
2963
|
-
string | ObjectCallArg | TransactionArgument,
|
|
2964
2777
|
string | ObjectCallArg | TransactionArgument,
|
|
2965
2778
|
string | ObjectCallArg | TransactionArgument
|
|
2966
2779
|
], typeArguments: [
|
|
2967
2780
|
TypeDescriptor<T0> | string,
|
|
2968
2781
|
TypeDescriptor<T1> | string,
|
|
2969
2782
|
TypeDescriptor<T2> | string
|
|
2970
|
-
]): TransactionArgument & [
|
|
2971
|
-
TransactionArgument,
|
|
2972
|
-
TransactionArgument,
|
|
2973
|
-
TransactionArgument
|
|
2974
|
-
];
|
|
2783
|
+
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2975
2784
|
function removeRuleForAction<T0 = any, T1 = any>(tx: TransactionBlock, args: [
|
|
2976
2785
|
string | ObjectCallArg | TransactionArgument,
|
|
2977
2786
|
string | ObjectCallArg | TransactionArgument,
|
|
2978
|
-
string | TransactionArgument
|
|
2979
|
-
string | ObjectCallArg | TransactionArgument
|
|
2787
|
+
string | TransactionArgument
|
|
2980
2788
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [
|
|
2981
|
-
TransactionArgument,
|
|
2982
2789
|
TransactionArgument,
|
|
2983
2790
|
TransactionArgument,
|
|
2984
2791
|
TransactionArgument
|
|
@@ -3010,53 +2817,35 @@ export declare namespace token {
|
|
|
3010
2817
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3011
2818
|
function sender<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3012
2819
|
function sharePolicy<T0 = any>(tx: TransactionBlock, args: [token.TokenPolicy<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3013
|
-
function spend<T0 = any>(tx: TransactionBlock, args: [
|
|
3014
|
-
token.Token<T0> | TransactionArgument,
|
|
3015
|
-
string | ObjectCallArg | TransactionArgument
|
|
3016
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2820
|
+
function spend<T0 = any>(tx: TransactionBlock, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3017
2821
|
function spendAction(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3018
2822
|
function spent<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3019
2823
|
function spentBalance<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3020
2824
|
function split<T0 = any>(tx: TransactionBlock, args: [
|
|
3021
2825
|
string | ObjectCallArg | TransactionArgument,
|
|
3022
|
-
bigint | TransactionArgument
|
|
3023
|
-
string | ObjectCallArg | TransactionArgument
|
|
3024
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
3025
|
-
TransactionArgument,
|
|
3026
|
-
TransactionArgument,
|
|
3027
|
-
TransactionArgument
|
|
3028
|
-
];
|
|
3029
|
-
function toCoin<T0 = any>(tx: TransactionBlock, args: [
|
|
3030
|
-
token.Token<T0> | TransactionArgument,
|
|
3031
|
-
string | ObjectCallArg | TransactionArgument
|
|
2826
|
+
bigint | TransactionArgument
|
|
3032
2827
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2828
|
+
function toCoin<T0 = any>(tx: TransactionBlock, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3033
2829
|
function toCoinAction(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3034
2830
|
function transfer<T0 = any>(tx: TransactionBlock, args: [
|
|
3035
2831
|
token.Token<T0> | TransactionArgument,
|
|
3036
|
-
string | TransactionArgument
|
|
3037
|
-
|
|
3038
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
3039
|
-
TransactionArgument,
|
|
3040
|
-
TransactionArgument,
|
|
3041
|
-
TransactionArgument
|
|
3042
|
-
];
|
|
2832
|
+
string | TransactionArgument
|
|
2833
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3043
2834
|
function transferAction(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3044
2835
|
function value<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3045
|
-
function zero<T0 = any>(tx: TransactionBlock, args: [
|
|
2836
|
+
function zero<T0 = any>(tx: TransactionBlock, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
3046
2837
|
}
|
|
3047
2838
|
namespace view {
|
|
3048
2839
|
function action<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3049
2840
|
function addApproval<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3050
2841
|
T1 | TransactionArgument,
|
|
3051
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3052
2842
|
string | ObjectCallArg | TransactionArgument
|
|
3053
2843
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3054
2844
|
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
3055
2845
|
T1 | TransactionArgument,
|
|
3056
2846
|
string | ObjectCallArg | TransactionArgument,
|
|
3057
2847
|
string | ObjectCallArg | TransactionArgument,
|
|
3058
|
-
T2 | TransactionArgument
|
|
3059
|
-
string | ObjectCallArg | TransactionArgument
|
|
2848
|
+
T2 | TransactionArgument
|
|
3060
2849
|
], typeArguments: [
|
|
3061
2850
|
TypeDescriptor<T0> | string,
|
|
3062
2851
|
TypeDescriptor<T1> | string,
|
|
@@ -3065,14 +2854,12 @@ export declare namespace token {
|
|
|
3065
2854
|
function addRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3066
2855
|
string | ObjectCallArg | TransactionArgument,
|
|
3067
2856
|
string | ObjectCallArg | TransactionArgument,
|
|
3068
|
-
string | TransactionArgument
|
|
3069
|
-
string | ObjectCallArg | TransactionArgument
|
|
2857
|
+
string | TransactionArgument
|
|
3070
2858
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3071
2859
|
function allow<T0 = any>(client: SuiClient, args: [
|
|
3072
2860
|
string | ObjectCallArg | TransactionArgument,
|
|
3073
2861
|
string | ObjectCallArg | TransactionArgument,
|
|
3074
|
-
string | TransactionArgument
|
|
3075
|
-
string | ObjectCallArg | TransactionArgument
|
|
2862
|
+
string | TransactionArgument
|
|
3076
2863
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3077
2864
|
function amount<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3078
2865
|
function approvals<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
@@ -3082,8 +2869,7 @@ export declare namespace token {
|
|
|
3082
2869
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3083
2870
|
function confirmRequest<T0 = any>(client: SuiClient, args: [
|
|
3084
2871
|
string | ObjectCallArg | TransactionArgument,
|
|
3085
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
3086
|
-
string | ObjectCallArg | TransactionArgument
|
|
2872
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
3087
2873
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3088
2874
|
string,
|
|
3089
2875
|
bigint,
|
|
@@ -3092,8 +2878,7 @@ export declare namespace token {
|
|
|
3092
2878
|
]>>;
|
|
3093
2879
|
function confirmRequestMut<T0 = any>(client: SuiClient, args: [
|
|
3094
2880
|
string | ObjectCallArg | TransactionArgument,
|
|
3095
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
3096
|
-
string | ObjectCallArg | TransactionArgument
|
|
2881
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
3097
2882
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3098
2883
|
string,
|
|
3099
2884
|
bigint,
|
|
@@ -3102,8 +2887,7 @@ export declare namespace token {
|
|
|
3102
2887
|
]>>;
|
|
3103
2888
|
function confirmWithPolicyCap<T0 = any>(client: SuiClient, args: [
|
|
3104
2889
|
string | ObjectCallArg | TransactionArgument,
|
|
3105
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
3106
|
-
string | ObjectCallArg | TransactionArgument
|
|
2890
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
3107
2891
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3108
2892
|
string,
|
|
3109
2893
|
bigint,
|
|
@@ -3112,8 +2896,7 @@ export declare namespace token {
|
|
|
3112
2896
|
]>>;
|
|
3113
2897
|
function confirmWithTreasuryCap<T0 = any>(client: SuiClient, args: [
|
|
3114
2898
|
string | ObjectCallArg | TransactionArgument,
|
|
3115
|
-
token.ActionRequest<T0> | TransactionArgument
|
|
3116
|
-
string | ObjectCallArg | TransactionArgument
|
|
2899
|
+
token.ActionRequest<T0> | TransactionArgument
|
|
3117
2900
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3118
2901
|
string,
|
|
3119
2902
|
bigint,
|
|
@@ -3124,18 +2907,13 @@ export declare namespace token {
|
|
|
3124
2907
|
function disallow<T0 = any>(client: SuiClient, args: [
|
|
3125
2908
|
string | ObjectCallArg | TransactionArgument,
|
|
3126
2909
|
string | ObjectCallArg | TransactionArgument,
|
|
3127
|
-
string | TransactionArgument
|
|
3128
|
-
string | ObjectCallArg | TransactionArgument
|
|
2910
|
+
string | TransactionArgument
|
|
3129
2911
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3130
2912
|
function flush<T0 = any>(client: SuiClient, args: [
|
|
3131
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3132
2913
|
string | ObjectCallArg | TransactionArgument,
|
|
3133
2914
|
string | ObjectCallArg | TransactionArgument
|
|
3134
2915
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3135
|
-
function fromCoin<T0 = any>(client: SuiClient, args: [
|
|
3136
|
-
coin.Coin<T0> | TransactionArgument,
|
|
3137
|
-
string | ObjectCallArg | TransactionArgument
|
|
3138
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
|
2916
|
+
function fromCoin<T0 = any>(client: SuiClient, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
|
3139
2917
|
function fromCoinAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3140
2918
|
function hasRuleConfig<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
3141
2919
|
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [
|
|
@@ -3151,29 +2929,20 @@ export declare namespace token {
|
|
|
3151
2929
|
string | ObjectCallArg | TransactionArgument,
|
|
3152
2930
|
token.Token<T0> | TransactionArgument
|
|
3153
2931
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3154
|
-
function keep<T0 = any>(client: SuiClient, args: [
|
|
3155
|
-
token.Token<T0> | TransactionArgument,
|
|
3156
|
-
string | ObjectCallArg | TransactionArgument
|
|
3157
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2932
|
+
function keep<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3158
2933
|
function mint<T0 = any>(client: SuiClient, args: [
|
|
3159
2934
|
string | ObjectCallArg | TransactionArgument,
|
|
3160
|
-
bigint | TransactionArgument
|
|
3161
|
-
string | ObjectCallArg | TransactionArgument
|
|
2935
|
+
bigint | TransactionArgument
|
|
3162
2936
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3163
|
-
function newPolicy<T0 = any>(client: SuiClient, args: [
|
|
3164
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3165
|
-
string | ObjectCallArg | TransactionArgument
|
|
3166
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
|
2937
|
+
function newPolicy<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
|
3167
2938
|
function newRequest<T0 = any>(client: SuiClient, args: [
|
|
3168
2939
|
string | TransactionArgument,
|
|
3169
2940
|
bigint | TransactionArgument,
|
|
3170
2941
|
_0x1.option.Option<string> | TransactionArgument,
|
|
3171
|
-
_0x1.option.Option<balance.Balance<T0>> | TransactionArgument
|
|
3172
|
-
string | ObjectCallArg | TransactionArgument
|
|
2942
|
+
_0x1.option.Option<balance.Balance<T0>> | TransactionArgument
|
|
3173
2943
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3174
2944
|
function recipient<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
3175
2945
|
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
3176
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3177
2946
|
string | ObjectCallArg | TransactionArgument,
|
|
3178
2947
|
string | ObjectCallArg | TransactionArgument
|
|
3179
2948
|
], typeArguments: [
|
|
@@ -3184,8 +2953,7 @@ export declare namespace token {
|
|
|
3184
2953
|
function removeRuleForAction<T0 = any, T1 = any>(client: SuiClient, args: [
|
|
3185
2954
|
string | ObjectCallArg | TransactionArgument,
|
|
3186
2955
|
string | ObjectCallArg | TransactionArgument,
|
|
3187
|
-
string | TransactionArgument
|
|
3188
|
-
string | ObjectCallArg | TransactionArgument
|
|
2956
|
+
string | TransactionArgument
|
|
3189
2957
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3190
2958
|
function ruleConfig<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
3191
2959
|
T1 | TransactionArgument,
|
|
@@ -3210,31 +2978,23 @@ export declare namespace token {
|
|
|
3210
2978
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
3211
2979
|
function sender<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3212
2980
|
function sharePolicy<T0 = any>(client: SuiClient, args: [token.TokenPolicy<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3213
|
-
function spend<T0 = any>(client: SuiClient, args: [
|
|
3214
|
-
token.Token<T0> | TransactionArgument,
|
|
3215
|
-
string | ObjectCallArg | TransactionArgument
|
|
3216
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
2981
|
+
function spend<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3217
2982
|
function spendAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3218
2983
|
function spent<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
3219
2984
|
function spentBalance<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3220
2985
|
function split<T0 = any>(client: SuiClient, args: [
|
|
3221
2986
|
string | ObjectCallArg | TransactionArgument,
|
|
3222
|
-
bigint | TransactionArgument
|
|
3223
|
-
string | ObjectCallArg | TransactionArgument
|
|
2987
|
+
bigint | TransactionArgument
|
|
3224
2988
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3225
|
-
function toCoin<T0 = any>(client: SuiClient, args: [
|
|
3226
|
-
token.Token<T0> | TransactionArgument,
|
|
3227
|
-
string | ObjectCallArg | TransactionArgument
|
|
3228
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
|
2989
|
+
function toCoin<T0 = any>(client: SuiClient, args: [token.Token<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
|
3229
2990
|
function toCoinAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3230
2991
|
function transfer<T0 = any>(client: SuiClient, args: [
|
|
3231
2992
|
token.Token<T0> | TransactionArgument,
|
|
3232
|
-
string | TransactionArgument
|
|
3233
|
-
string | ObjectCallArg | TransactionArgument
|
|
2993
|
+
string | TransactionArgument
|
|
3234
2994
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3235
2995
|
function transferAction(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3236
2996
|
function value<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3237
|
-
function zero<T0 = any>(client: SuiClient, args: [
|
|
2997
|
+
function zero<T0 = any>(client: SuiClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3238
2998
|
}
|
|
3239
2999
|
}
|
|
3240
3000
|
export declare namespace transfer {
|
|
@@ -3375,19 +3135,11 @@ export declare namespace transfer_policy {
|
|
|
3375
3135
|
string | ObjectCallArg | TransactionArgument,
|
|
3376
3136
|
transfer_policy.TransferRequest<T0> | TransactionArgument
|
|
3377
3137
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3378
|
-
function default_<T0 = any>(tx: TransactionBlock, args: [
|
|
3379
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3380
|
-
string | ObjectCallArg | TransactionArgument
|
|
3381
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3138
|
+
function default_<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3382
3139
|
function destroyAndWithdraw<T0 = any>(tx: TransactionBlock, args: [
|
|
3383
3140
|
transfer_policy.TransferPolicy<T0> | TransactionArgument,
|
|
3384
|
-
transfer_policy.TransferPolicyCap<T0> | TransactionArgument
|
|
3385
|
-
|
|
3386
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
3387
|
-
TransactionArgument,
|
|
3388
|
-
TransactionArgument,
|
|
3389
|
-
TransactionArgument
|
|
3390
|
-
];
|
|
3141
|
+
transfer_policy.TransferPolicyCap<T0> | TransactionArgument
|
|
3142
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3391
3143
|
function from<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3392
3144
|
function getRule<T0 = any, T1 = any, T2 = any>(tx: TransactionBlock, args: [
|
|
3393
3145
|
T1 | TransactionArgument,
|
|
@@ -3399,10 +3151,7 @@ export declare namespace transfer_policy {
|
|
|
3399
3151
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3400
3152
|
function hasRule<T0 = any, T1 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument];
|
|
3401
3153
|
function item<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3402
|
-
function new_<T0 = any>(tx: TransactionBlock, args: [
|
|
3403
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3404
|
-
string | ObjectCallArg | TransactionArgument
|
|
3405
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3154
|
+
function new_<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3406
3155
|
function newRequest<T0 = any>(tx: TransactionBlock, args: [
|
|
3407
3156
|
object_.ID | TransactionArgument,
|
|
3408
3157
|
bigint | TransactionArgument,
|
|
@@ -3430,10 +3179,8 @@ export declare namespace transfer_policy {
|
|
|
3430
3179
|
function withdraw<T0 = any>(tx: TransactionBlock, args: [
|
|
3431
3180
|
string | ObjectCallArg | TransactionArgument,
|
|
3432
3181
|
string | ObjectCallArg | TransactionArgument,
|
|
3433
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
|
3434
|
-
string | ObjectCallArg | TransactionArgument
|
|
3182
|
+
_0x1.option.Option<bigint> | TransactionArgument
|
|
3435
3183
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
3436
|
-
TransactionArgument,
|
|
3437
3184
|
TransactionArgument,
|
|
3438
3185
|
TransactionArgument,
|
|
3439
3186
|
TransactionArgument
|
|
@@ -3465,8 +3212,7 @@ export declare namespace transfer_policy {
|
|
|
3465
3212
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID, bigint, object_.ID]>>;
|
|
3466
3213
|
function destroyAndWithdraw<T0 = any>(client: SuiClient, args: [
|
|
3467
3214
|
transfer_policy.TransferPolicy<T0> | TransactionArgument,
|
|
3468
|
-
transfer_policy.TransferPolicyCap<T0> | TransactionArgument
|
|
3469
|
-
string | ObjectCallArg | TransactionArgument
|
|
3215
|
+
transfer_policy.TransferPolicyCap<T0> | TransactionArgument
|
|
3470
3216
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
3471
3217
|
function from<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
|
3472
3218
|
function getRule<T0 = any, T1 = any, T2 = any>(client: SuiClient, args: [
|
|
@@ -3479,10 +3225,7 @@ export declare namespace transfer_policy {
|
|
|
3479
3225
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3480
3226
|
function hasRule<T0 = any, T1 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[Boolean]>>;
|
|
3481
3227
|
function item<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object_.ID]>>;
|
|
3482
|
-
function new_<T0 = any>(client: SuiClient, args: [
|
|
3483
|
-
string | ObjectCallArg | TransactionArgument,
|
|
3484
|
-
string | ObjectCallArg | TransactionArgument
|
|
3485
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3228
|
+
function new_<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3486
3229
|
transfer_policy.TransferPolicy<T0>,
|
|
3487
3230
|
transfer_policy.TransferPolicyCap<T0>
|
|
3488
3231
|
]>>;
|
|
@@ -3509,8 +3252,7 @@ export declare namespace transfer_policy {
|
|
|
3509
3252
|
function withdraw<T0 = any>(client: SuiClient, args: [
|
|
3510
3253
|
string | ObjectCallArg | TransactionArgument,
|
|
3511
3254
|
string | ObjectCallArg | TransactionArgument,
|
|
3512
|
-
_0x1.option.Option<bigint> | TransactionArgument
|
|
3513
|
-
string | ObjectCallArg | TransactionArgument
|
|
3255
|
+
_0x1.option.Option<bigint> | TransactionArgument
|
|
3514
3256
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
3515
3257
|
}
|
|
3516
3258
|
}
|
|
@@ -3527,18 +3269,18 @@ export declare namespace tx_context {
|
|
|
3527
3269
|
function type(): TypeDescriptor<TxContext>;
|
|
3528
3270
|
}
|
|
3529
3271
|
namespace builder {
|
|
3530
|
-
function digest(tx: TransactionBlock, args: [
|
|
3531
|
-
function epoch(tx: TransactionBlock, args: [
|
|
3532
|
-
function epochTimestampMs(tx: TransactionBlock, args: [
|
|
3533
|
-
function freshObjectAddress(tx: TransactionBlock, args: [
|
|
3534
|
-
function sender(tx: TransactionBlock, args: [
|
|
3272
|
+
function digest(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3273
|
+
function epoch(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3274
|
+
function epochTimestampMs(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3275
|
+
function freshObjectAddress(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3276
|
+
function sender(tx: TransactionBlock, args: []): TransactionArgument & [];
|
|
3535
3277
|
}
|
|
3536
3278
|
namespace view {
|
|
3537
|
-
function digest(client: SuiClient, args: [
|
|
3538
|
-
function epoch(client: SuiClient, args: [
|
|
3539
|
-
function epochTimestampMs(client: SuiClient, args: [
|
|
3540
|
-
function freshObjectAddress(client: SuiClient, args: [
|
|
3541
|
-
function sender(client: SuiClient, args: [
|
|
3279
|
+
function digest(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3280
|
+
function epoch(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3281
|
+
function epochTimestampMs(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3282
|
+
function freshObjectAddress(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3283
|
+
function sender(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3542
3284
|
}
|
|
3543
3285
|
}
|
|
3544
3286
|
export declare namespace types {
|
|
@@ -3788,15 +3530,7 @@ export declare namespace versioned {
|
|
|
3788
3530
|
function type(): TypeDescriptor<Versioned>;
|
|
3789
3531
|
}
|
|
3790
3532
|
namespace builder {
|
|
3791
|
-
function create<T0 = any>(tx: TransactionBlock, args: [
|
|
3792
|
-
bigint | TransactionArgument,
|
|
3793
|
-
T0 | TransactionArgument,
|
|
3794
|
-
string | ObjectCallArg | TransactionArgument
|
|
3795
|
-
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
3796
|
-
TransactionArgument,
|
|
3797
|
-
TransactionArgument,
|
|
3798
|
-
TransactionArgument
|
|
3799
|
-
];
|
|
3533
|
+
function create<T0 = any>(tx: TransactionBlock, args: [bigint | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3800
3534
|
function destroy<T0 = any>(tx: TransactionBlock, args: [versioned.Versioned | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3801
3535
|
function loadValue<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3802
3536
|
function loadValueMut<T0 = any>(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -3815,11 +3549,7 @@ export declare namespace versioned {
|
|
|
3815
3549
|
function version(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3816
3550
|
}
|
|
3817
3551
|
namespace view {
|
|
3818
|
-
function create<T0 = any>(client: SuiClient, args: [
|
|
3819
|
-
bigint | TransactionArgument,
|
|
3820
|
-
T0 | TransactionArgument,
|
|
3821
|
-
string | ObjectCallArg | TransactionArgument
|
|
3822
|
-
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[versioned.Versioned]>>;
|
|
3552
|
+
function create<T0 = any>(client: SuiClient, args: [bigint | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[versioned.Versioned]>>;
|
|
3823
3553
|
function destroy<T0 = any>(client: SuiClient, args: [versioned.Versioned | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3824
3554
|
function loadValue<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3825
3555
|
function loadValueMut<T0 = any>(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
@@ -3873,14 +3603,12 @@ export declare namespace zklogin_verified_id {
|
|
|
3873
3603
|
string | TransactionArgument,
|
|
3874
3604
|
string | TransactionArgument,
|
|
3875
3605
|
string | TransactionArgument,
|
|
3876
|
-
bigint | TransactionArgument
|
|
3877
|
-
string | ObjectCallArg | TransactionArgument
|
|
3606
|
+
bigint | TransactionArgument
|
|
3878
3607
|
]): TransactionArgument & [
|
|
3879
3608
|
TransactionArgument,
|
|
3880
3609
|
TransactionArgument,
|
|
3881
3610
|
TransactionArgument,
|
|
3882
3611
|
TransactionArgument,
|
|
3883
|
-
TransactionArgument,
|
|
3884
3612
|
TransactionArgument
|
|
3885
3613
|
];
|
|
3886
3614
|
}
|
|
@@ -3904,8 +3632,7 @@ export declare namespace zklogin_verified_id {
|
|
|
3904
3632
|
string | TransactionArgument,
|
|
3905
3633
|
string | TransactionArgument,
|
|
3906
3634
|
string | TransactionArgument,
|
|
3907
|
-
bigint | TransactionArgument
|
|
3908
|
-
string | ObjectCallArg | TransactionArgument
|
|
3635
|
+
bigint | TransactionArgument
|
|
3909
3636
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3910
3637
|
}
|
|
3911
3638
|
}
|
|
@@ -3932,15 +3659,7 @@ export declare namespace zklogin_verified_issuer {
|
|
|
3932
3659
|
function delete_(tx: TransactionBlock, args: [zklogin_verified_issuer.VerifiedIssuer | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3933
3660
|
function issuer(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3934
3661
|
function owner(tx: TransactionBlock, args: [string | ObjectCallArg | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3935
|
-
function verifyZkloginIssuer(tx: TransactionBlock, args: [
|
|
3936
|
-
bigint | TransactionArgument,
|
|
3937
|
-
string | TransactionArgument,
|
|
3938
|
-
string | ObjectCallArg | TransactionArgument
|
|
3939
|
-
]): TransactionArgument & [
|
|
3940
|
-
TransactionArgument,
|
|
3941
|
-
TransactionArgument,
|
|
3942
|
-
TransactionArgument
|
|
3943
|
-
];
|
|
3662
|
+
function verifyZkloginIssuer(tx: TransactionBlock, args: [bigint | TransactionArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3944
3663
|
}
|
|
3945
3664
|
namespace view {
|
|
3946
3665
|
function checkZkloginIssuer(client: SuiClient, args: [
|
|
@@ -3951,11 +3670,7 @@ export declare namespace zklogin_verified_issuer {
|
|
|
3951
3670
|
function delete_(client: SuiClient, args: [zklogin_verified_issuer.VerifiedIssuer | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
3952
3671
|
function issuer(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
3953
3672
|
function owner(client: SuiClient, args: [string | ObjectCallArg | TransactionArgument]): Promise<TypedDevInspectResults<[string]>>;
|
|
3954
|
-
function verifyZkloginIssuer(client: SuiClient, args: [
|
|
3955
|
-
bigint | TransactionArgument,
|
|
3956
|
-
string | TransactionArgument,
|
|
3957
|
-
string | ObjectCallArg | TransactionArgument
|
|
3958
|
-
]): Promise<TypedDevInspectResults<[]>>;
|
|
3673
|
+
function verifyZkloginIssuer(client: SuiClient, args: [bigint | TransactionArgument, string | TransactionArgument]): Promise<TypedDevInspectResults<[]>>;
|
|
3959
3674
|
}
|
|
3960
3675
|
}
|
|
3961
3676
|
export declare function loadAllTypes(coder: MoveCoder): void;
|