@algorandfoundation/algokit-utils 9.1.2 → 9.2.0-beta.10
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/app.d.ts +1 -1
- package/package.json +2 -2
- package/testing/fixtures/algorand-fixture.d.ts +3 -3
- package/testing/fixtures/algorand-fixture.js.map +1 -1
- package/testing/fixtures/algorand-fixture.mjs.map +1 -1
- package/transaction/legacy-bridge.d.ts +1 -1
- package/transaction/transaction.d.ts +1 -1
- package/transaction/transaction.js +66 -26
- package/transaction/transaction.js.map +1 -1
- package/transaction/transaction.mjs +66 -26
- package/transaction/transaction.mjs.map +1 -1
- package/types/algorand-client-transaction-creator.d.ts +20 -0
- package/types/algorand-client-transaction-creator.js +16 -0
- package/types/algorand-client-transaction-creator.js.map +1 -1
- package/types/algorand-client-transaction-creator.mjs +16 -0
- package/types/algorand-client-transaction-creator.mjs.map +1 -1
- package/types/algorand-client-transaction-sender.d.ts +116 -0
- package/types/algorand-client-transaction-sender.js +16 -0
- package/types/algorand-client-transaction-sender.js.map +1 -1
- package/types/algorand-client-transaction-sender.mjs +16 -0
- package/types/algorand-client-transaction-sender.mjs.map +1 -1
- package/types/app-client.d.ts +74 -0
- package/types/app-client.js +4 -1
- package/types/app-client.js.map +1 -1
- package/types/app-client.mjs +4 -1
- package/types/app-client.mjs.map +1 -1
- package/types/app-deployer.js +3 -3
- package/types/app-deployer.js.map +1 -1
- package/types/app-deployer.mjs +3 -3
- package/types/app-deployer.mjs.map +1 -1
- package/types/app-factory.d.ts +36 -0
- package/types/app-manager.d.ts +37 -0
- package/types/app-manager.js +1 -0
- package/types/app-manager.js.map +1 -1
- package/types/app-manager.mjs +1 -0
- package/types/app-manager.mjs.map +1 -1
- package/types/composer.d.ts +21 -1
- package/types/composer.js +53 -2
- package/types/composer.js.map +1 -1
- package/types/composer.mjs +53 -2
- package/types/composer.mjs.map +1 -1
- package/types/kmd-account-manager.d.ts +1 -0
- package/types/kmd-account-manager.js +33 -14
- package/types/kmd-account-manager.js.map +1 -1
- package/types/kmd-account-manager.mjs +33 -14
- package/types/kmd-account-manager.mjs.map +1 -1
- package/types/testing.d.ts +2 -2
package/types/app-client.d.ts
CHANGED
|
@@ -429,6 +429,7 @@ export declare class AppClient {
|
|
|
429
429
|
note?: string | Uint8Array | undefined;
|
|
430
430
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
431
431
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
432
|
+
rejectVersion?: number | undefined;
|
|
432
433
|
lease?: string | Uint8Array | undefined;
|
|
433
434
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
434
435
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -440,6 +441,7 @@ export declare class AppClient {
|
|
|
440
441
|
appReferences?: bigint[] | undefined;
|
|
441
442
|
assetReferences?: bigint[] | undefined;
|
|
442
443
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
444
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
443
445
|
sender?: string | algosdk.Address | undefined;
|
|
444
446
|
method: string;
|
|
445
447
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -454,6 +456,7 @@ export declare class AppClient {
|
|
|
454
456
|
note?: string | Uint8Array | undefined;
|
|
455
457
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
456
458
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
459
|
+
rejectVersion?: number | undefined;
|
|
457
460
|
lease?: string | Uint8Array | undefined;
|
|
458
461
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
459
462
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -465,6 +468,7 @@ export declare class AppClient {
|
|
|
465
468
|
appReferences?: bigint[] | undefined;
|
|
466
469
|
assetReferences?: bigint[] | undefined;
|
|
467
470
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
471
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
468
472
|
sender?: string | algosdk.Address | undefined;
|
|
469
473
|
method: string;
|
|
470
474
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -487,6 +491,7 @@ export declare class AppClient {
|
|
|
487
491
|
args?: Uint8Array[] | undefined;
|
|
488
492
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
489
493
|
onComplete?: algosdk.OnApplicationComplete.NoOpOC | algosdk.OnApplicationComplete.OptInOC | algosdk.OnApplicationComplete.CloseOutOC | algosdk.OnApplicationComplete.UpdateApplicationOC | algosdk.OnApplicationComplete.DeleteApplicationOC | undefined;
|
|
494
|
+
rejectVersion?: number | undefined;
|
|
490
495
|
lease?: string | Uint8Array | undefined;
|
|
491
496
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
492
497
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -498,6 +503,7 @@ export declare class AppClient {
|
|
|
498
503
|
appReferences?: bigint[] | undefined;
|
|
499
504
|
assetReferences?: bigint[] | undefined;
|
|
500
505
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
506
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
501
507
|
approvalProgram: string | Uint8Array;
|
|
502
508
|
clearStateProgram: string | Uint8Array;
|
|
503
509
|
schema?: {
|
|
@@ -526,6 +532,8 @@ export declare class AppClient {
|
|
|
526
532
|
appReferences?: bigint[] | undefined;
|
|
527
533
|
assetReferences?: bigint[] | undefined;
|
|
528
534
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
535
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
536
|
+
rejectVersion?: number | undefined;
|
|
529
537
|
approvalProgram: string | Uint8Array;
|
|
530
538
|
clearStateProgram: string | Uint8Array;
|
|
531
539
|
}> | AppMethodCall<import("./composer").AppMethodCallParams> | undefined)[] | undefined;
|
|
@@ -540,6 +548,7 @@ export declare class AppClient {
|
|
|
540
548
|
note?: string | Uint8Array | undefined;
|
|
541
549
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
542
550
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
551
|
+
rejectVersion?: number | undefined;
|
|
543
552
|
lease?: string | Uint8Array | undefined;
|
|
544
553
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
545
554
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -551,6 +560,7 @@ export declare class AppClient {
|
|
|
551
560
|
appReferences?: bigint[] | undefined;
|
|
552
561
|
assetReferences?: bigint[] | undefined;
|
|
553
562
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
563
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
554
564
|
sender?: string | algosdk.Address | undefined;
|
|
555
565
|
method: string;
|
|
556
566
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -565,6 +575,7 @@ export declare class AppClient {
|
|
|
565
575
|
note?: string | Uint8Array | undefined;
|
|
566
576
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
567
577
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
578
|
+
rejectVersion?: number | undefined;
|
|
568
579
|
lease?: string | Uint8Array | undefined;
|
|
569
580
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
570
581
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -576,6 +587,7 @@ export declare class AppClient {
|
|
|
576
587
|
appReferences?: bigint[] | undefined;
|
|
577
588
|
assetReferences?: bigint[] | undefined;
|
|
578
589
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
590
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
579
591
|
sender?: string | algosdk.Address | undefined;
|
|
580
592
|
method: string;
|
|
581
593
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -589,6 +601,7 @@ export declare class AppClient {
|
|
|
589
601
|
note?: string | Uint8Array | undefined;
|
|
590
602
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
591
603
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
604
|
+
rejectVersion?: number | undefined;
|
|
592
605
|
lease?: string | Uint8Array | undefined;
|
|
593
606
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
594
607
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -600,6 +613,7 @@ export declare class AppClient {
|
|
|
600
613
|
appReferences?: bigint[] | undefined;
|
|
601
614
|
assetReferences?: bigint[] | undefined;
|
|
602
615
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
616
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
603
617
|
sender?: string | algosdk.Address | undefined;
|
|
604
618
|
method: string;
|
|
605
619
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -613,6 +627,7 @@ export declare class AppClient {
|
|
|
613
627
|
note?: string | Uint8Array | undefined;
|
|
614
628
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
615
629
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
630
|
+
rejectVersion?: number | undefined;
|
|
616
631
|
lease?: string | Uint8Array | undefined;
|
|
617
632
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
618
633
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -624,6 +639,7 @@ export declare class AppClient {
|
|
|
624
639
|
appReferences?: bigint[] | undefined;
|
|
625
640
|
assetReferences?: bigint[] | undefined;
|
|
626
641
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
642
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
627
643
|
sender?: string | algosdk.Address | undefined;
|
|
628
644
|
method: string;
|
|
629
645
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -636,6 +652,7 @@ export declare class AppClient {
|
|
|
636
652
|
note?: string | Uint8Array | undefined;
|
|
637
653
|
args?: Uint8Array[] | undefined;
|
|
638
654
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
655
|
+
rejectVersion?: number | undefined;
|
|
639
656
|
lease?: string | Uint8Array | undefined;
|
|
640
657
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
641
658
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -647,6 +664,7 @@ export declare class AppClient {
|
|
|
647
664
|
appReferences?: bigint[] | undefined;
|
|
648
665
|
assetReferences?: bigint[] | undefined;
|
|
649
666
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
667
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
650
668
|
sender?: string | algosdk.Address | undefined;
|
|
651
669
|
} & AppClientCompilationParams) | undefined) => Promise<{
|
|
652
670
|
sender: string | algosdk.Address;
|
|
@@ -667,6 +685,8 @@ export declare class AppClient {
|
|
|
667
685
|
appReferences?: bigint[] | undefined;
|
|
668
686
|
assetReferences?: bigint[] | undefined;
|
|
669
687
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
688
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
689
|
+
rejectVersion?: number | undefined;
|
|
670
690
|
approvalProgram: string | Uint8Array;
|
|
671
691
|
clearStateProgram: string | Uint8Array;
|
|
672
692
|
}>;
|
|
@@ -676,6 +696,7 @@ export declare class AppClient {
|
|
|
676
696
|
note?: string | Uint8Array | undefined;
|
|
677
697
|
args?: Uint8Array[] | undefined;
|
|
678
698
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
699
|
+
rejectVersion?: number | undefined;
|
|
679
700
|
lease?: string | Uint8Array | undefined;
|
|
680
701
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
681
702
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -687,6 +708,7 @@ export declare class AppClient {
|
|
|
687
708
|
appReferences?: bigint[] | undefined;
|
|
688
709
|
assetReferences?: bigint[] | undefined;
|
|
689
710
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
711
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
690
712
|
sender?: string | algosdk.Address | undefined;
|
|
691
713
|
} | undefined) => AppCallParams;
|
|
692
714
|
/** Return params for a delete call */
|
|
@@ -695,6 +717,7 @@ export declare class AppClient {
|
|
|
695
717
|
note?: string | Uint8Array | undefined;
|
|
696
718
|
args?: Uint8Array[] | undefined;
|
|
697
719
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
720
|
+
rejectVersion?: number | undefined;
|
|
698
721
|
lease?: string | Uint8Array | undefined;
|
|
699
722
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
700
723
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -706,6 +729,7 @@ export declare class AppClient {
|
|
|
706
729
|
appReferences?: bigint[] | undefined;
|
|
707
730
|
assetReferences?: bigint[] | undefined;
|
|
708
731
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
732
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
709
733
|
sender?: string | algosdk.Address | undefined;
|
|
710
734
|
} | undefined) => AppDeleteParams;
|
|
711
735
|
/** Return params for a clear state call */
|
|
@@ -714,6 +738,7 @@ export declare class AppClient {
|
|
|
714
738
|
note?: string | Uint8Array | undefined;
|
|
715
739
|
args?: Uint8Array[] | undefined;
|
|
716
740
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
741
|
+
rejectVersion?: number | undefined;
|
|
717
742
|
lease?: string | Uint8Array | undefined;
|
|
718
743
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
719
744
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -725,6 +750,7 @@ export declare class AppClient {
|
|
|
725
750
|
appReferences?: bigint[] | undefined;
|
|
726
751
|
assetReferences?: bigint[] | undefined;
|
|
727
752
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
753
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
728
754
|
sender?: string | algosdk.Address | undefined;
|
|
729
755
|
} | undefined) => AppCallParams;
|
|
730
756
|
/** Return params for a close out call */
|
|
@@ -733,6 +759,7 @@ export declare class AppClient {
|
|
|
733
759
|
note?: string | Uint8Array | undefined;
|
|
734
760
|
args?: Uint8Array[] | undefined;
|
|
735
761
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
762
|
+
rejectVersion?: number | undefined;
|
|
736
763
|
lease?: string | Uint8Array | undefined;
|
|
737
764
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
738
765
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -744,6 +771,7 @@ export declare class AppClient {
|
|
|
744
771
|
appReferences?: bigint[] | undefined;
|
|
745
772
|
assetReferences?: bigint[] | undefined;
|
|
746
773
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
774
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
747
775
|
sender?: string | algosdk.Address | undefined;
|
|
748
776
|
} | undefined) => AppCallParams;
|
|
749
777
|
/** Return params for a call (defaults to no-op) */
|
|
@@ -752,6 +780,7 @@ export declare class AppClient {
|
|
|
752
780
|
note?: string | Uint8Array | undefined;
|
|
753
781
|
args?: Uint8Array[] | undefined;
|
|
754
782
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
783
|
+
rejectVersion?: number | undefined;
|
|
755
784
|
lease?: string | Uint8Array | undefined;
|
|
756
785
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
757
786
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -763,6 +792,7 @@ export declare class AppClient {
|
|
|
763
792
|
appReferences?: bigint[] | undefined;
|
|
764
793
|
assetReferences?: bigint[] | undefined;
|
|
765
794
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
795
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
766
796
|
sender?: string | algosdk.Address | undefined;
|
|
767
797
|
} & CallOnComplete) | undefined) => AppCallParams;
|
|
768
798
|
};
|
|
@@ -802,6 +832,7 @@ export declare class AppClient {
|
|
|
802
832
|
note?: string | Uint8Array | undefined;
|
|
803
833
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
804
834
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
835
|
+
rejectVersion?: number | undefined;
|
|
805
836
|
lease?: string | Uint8Array | undefined;
|
|
806
837
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
807
838
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -813,6 +844,7 @@ export declare class AppClient {
|
|
|
813
844
|
appReferences?: bigint[] | undefined;
|
|
814
845
|
assetReferences?: bigint[] | undefined;
|
|
815
846
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
847
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
816
848
|
sender?: string | algosdk.Address | undefined;
|
|
817
849
|
method: string;
|
|
818
850
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -831,6 +863,7 @@ export declare class AppClient {
|
|
|
831
863
|
note?: string | Uint8Array | undefined;
|
|
832
864
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
833
865
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
866
|
+
rejectVersion?: number | undefined;
|
|
834
867
|
lease?: string | Uint8Array | undefined;
|
|
835
868
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
836
869
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -842,6 +875,7 @@ export declare class AppClient {
|
|
|
842
875
|
appReferences?: bigint[] | undefined;
|
|
843
876
|
assetReferences?: bigint[] | undefined;
|
|
844
877
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
878
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
845
879
|
sender?: string | algosdk.Address | undefined;
|
|
846
880
|
method: string;
|
|
847
881
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -860,6 +894,7 @@ export declare class AppClient {
|
|
|
860
894
|
note?: string | Uint8Array | undefined;
|
|
861
895
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
862
896
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
897
|
+
rejectVersion?: number | undefined;
|
|
863
898
|
lease?: string | Uint8Array | undefined;
|
|
864
899
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
865
900
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -871,6 +906,7 @@ export declare class AppClient {
|
|
|
871
906
|
appReferences?: bigint[] | undefined;
|
|
872
907
|
assetReferences?: bigint[] | undefined;
|
|
873
908
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
909
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
874
910
|
sender?: string | algosdk.Address | undefined;
|
|
875
911
|
method: string;
|
|
876
912
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -889,6 +925,7 @@ export declare class AppClient {
|
|
|
889
925
|
note?: string | Uint8Array | undefined;
|
|
890
926
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
891
927
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
928
|
+
rejectVersion?: number | undefined;
|
|
892
929
|
lease?: string | Uint8Array | undefined;
|
|
893
930
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
894
931
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -900,6 +937,7 @@ export declare class AppClient {
|
|
|
900
937
|
appReferences?: bigint[] | undefined;
|
|
901
938
|
assetReferences?: bigint[] | undefined;
|
|
902
939
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
940
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
903
941
|
sender?: string | algosdk.Address | undefined;
|
|
904
942
|
method: string;
|
|
905
943
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -918,6 +956,7 @@ export declare class AppClient {
|
|
|
918
956
|
note?: string | Uint8Array | undefined;
|
|
919
957
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
920
958
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
959
|
+
rejectVersion?: number | undefined;
|
|
921
960
|
lease?: string | Uint8Array | undefined;
|
|
922
961
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
923
962
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -929,6 +968,7 @@ export declare class AppClient {
|
|
|
929
968
|
appReferences?: bigint[] | undefined;
|
|
930
969
|
assetReferences?: bigint[] | undefined;
|
|
931
970
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
971
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
932
972
|
sender?: string | algosdk.Address | undefined;
|
|
933
973
|
method: string;
|
|
934
974
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -945,6 +985,7 @@ export declare class AppClient {
|
|
|
945
985
|
note?: string | Uint8Array | undefined;
|
|
946
986
|
args?: Uint8Array[] | undefined;
|
|
947
987
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
988
|
+
rejectVersion?: number | undefined;
|
|
948
989
|
lease?: string | Uint8Array | undefined;
|
|
949
990
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
950
991
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -956,6 +997,7 @@ export declare class AppClient {
|
|
|
956
997
|
appReferences?: bigint[] | undefined;
|
|
957
998
|
assetReferences?: bigint[] | undefined;
|
|
958
999
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1000
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
959
1001
|
sender?: string | algosdk.Address | undefined;
|
|
960
1002
|
} & AppClientCompilationParams) | undefined) => Promise<algosdk.Transaction>;
|
|
961
1003
|
/** Returns a transaction for an opt-in call */
|
|
@@ -964,6 +1006,7 @@ export declare class AppClient {
|
|
|
964
1006
|
note?: string | Uint8Array | undefined;
|
|
965
1007
|
args?: Uint8Array[] | undefined;
|
|
966
1008
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1009
|
+
rejectVersion?: number | undefined;
|
|
967
1010
|
lease?: string | Uint8Array | undefined;
|
|
968
1011
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
969
1012
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -975,6 +1018,7 @@ export declare class AppClient {
|
|
|
975
1018
|
appReferences?: bigint[] | undefined;
|
|
976
1019
|
assetReferences?: bigint[] | undefined;
|
|
977
1020
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1021
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
978
1022
|
sender?: string | algosdk.Address | undefined;
|
|
979
1023
|
} | undefined) => Promise<algosdk.Transaction>;
|
|
980
1024
|
/** Returns a transaction for a delete call */
|
|
@@ -983,6 +1027,7 @@ export declare class AppClient {
|
|
|
983
1027
|
note?: string | Uint8Array | undefined;
|
|
984
1028
|
args?: Uint8Array[] | undefined;
|
|
985
1029
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1030
|
+
rejectVersion?: number | undefined;
|
|
986
1031
|
lease?: string | Uint8Array | undefined;
|
|
987
1032
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
988
1033
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -994,6 +1039,7 @@ export declare class AppClient {
|
|
|
994
1039
|
appReferences?: bigint[] | undefined;
|
|
995
1040
|
assetReferences?: bigint[] | undefined;
|
|
996
1041
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1042
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
997
1043
|
sender?: string | algosdk.Address | undefined;
|
|
998
1044
|
} | undefined) => Promise<algosdk.Transaction>;
|
|
999
1045
|
/** Returns a transaction for a clear state call */
|
|
@@ -1002,6 +1048,7 @@ export declare class AppClient {
|
|
|
1002
1048
|
note?: string | Uint8Array | undefined;
|
|
1003
1049
|
args?: Uint8Array[] | undefined;
|
|
1004
1050
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1051
|
+
rejectVersion?: number | undefined;
|
|
1005
1052
|
lease?: string | Uint8Array | undefined;
|
|
1006
1053
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1007
1054
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1013,6 +1060,7 @@ export declare class AppClient {
|
|
|
1013
1060
|
appReferences?: bigint[] | undefined;
|
|
1014
1061
|
assetReferences?: bigint[] | undefined;
|
|
1015
1062
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1063
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1016
1064
|
sender?: string | algosdk.Address | undefined;
|
|
1017
1065
|
} | undefined) => Promise<algosdk.Transaction>;
|
|
1018
1066
|
/** Returns a transaction for a close out call */
|
|
@@ -1021,6 +1069,7 @@ export declare class AppClient {
|
|
|
1021
1069
|
note?: string | Uint8Array | undefined;
|
|
1022
1070
|
args?: Uint8Array[] | undefined;
|
|
1023
1071
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1072
|
+
rejectVersion?: number | undefined;
|
|
1024
1073
|
lease?: string | Uint8Array | undefined;
|
|
1025
1074
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1026
1075
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1032,6 +1081,7 @@ export declare class AppClient {
|
|
|
1032
1081
|
appReferences?: bigint[] | undefined;
|
|
1033
1082
|
assetReferences?: bigint[] | undefined;
|
|
1034
1083
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1084
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1035
1085
|
sender?: string | algosdk.Address | undefined;
|
|
1036
1086
|
} | undefined) => Promise<algosdk.Transaction>;
|
|
1037
1087
|
/** Returns a transaction for a call (defaults to no-op) */
|
|
@@ -1040,6 +1090,7 @@ export declare class AppClient {
|
|
|
1040
1090
|
note?: string | Uint8Array | undefined;
|
|
1041
1091
|
args?: Uint8Array[] | undefined;
|
|
1042
1092
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1093
|
+
rejectVersion?: number | undefined;
|
|
1043
1094
|
lease?: string | Uint8Array | undefined;
|
|
1044
1095
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1045
1096
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1051,6 +1102,7 @@ export declare class AppClient {
|
|
|
1051
1102
|
appReferences?: bigint[] | undefined;
|
|
1052
1103
|
assetReferences?: bigint[] | undefined;
|
|
1053
1104
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1105
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1054
1106
|
sender?: string | algosdk.Address | undefined;
|
|
1055
1107
|
} & CallOnComplete) | undefined) => Promise<algosdk.Transaction>;
|
|
1056
1108
|
};
|
|
@@ -1098,6 +1150,7 @@ export declare class AppClient {
|
|
|
1098
1150
|
note?: string | Uint8Array | undefined;
|
|
1099
1151
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1100
1152
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
1153
|
+
rejectVersion?: number | undefined;
|
|
1101
1154
|
lease?: string | Uint8Array | undefined;
|
|
1102
1155
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1103
1156
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1109,6 +1162,7 @@ export declare class AppClient {
|
|
|
1109
1162
|
appReferences?: bigint[] | undefined;
|
|
1110
1163
|
assetReferences?: bigint[] | undefined;
|
|
1111
1164
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1165
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1112
1166
|
sender?: string | algosdk.Address | undefined;
|
|
1113
1167
|
method: string;
|
|
1114
1168
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -1134,6 +1188,7 @@ export declare class AppClient {
|
|
|
1134
1188
|
note?: string | Uint8Array | undefined;
|
|
1135
1189
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1136
1190
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
1191
|
+
rejectVersion?: number | undefined;
|
|
1137
1192
|
lease?: string | Uint8Array | undefined;
|
|
1138
1193
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1139
1194
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1145,6 +1200,7 @@ export declare class AppClient {
|
|
|
1145
1200
|
appReferences?: bigint[] | undefined;
|
|
1146
1201
|
assetReferences?: bigint[] | undefined;
|
|
1147
1202
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1203
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1148
1204
|
sender?: string | algosdk.Address | undefined;
|
|
1149
1205
|
method: string;
|
|
1150
1206
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -1168,6 +1224,7 @@ export declare class AppClient {
|
|
|
1168
1224
|
note?: string | Uint8Array | undefined;
|
|
1169
1225
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1170
1226
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
1227
|
+
rejectVersion?: number | undefined;
|
|
1171
1228
|
lease?: string | Uint8Array | undefined;
|
|
1172
1229
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1173
1230
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1179,6 +1236,7 @@ export declare class AppClient {
|
|
|
1179
1236
|
appReferences?: bigint[] | undefined;
|
|
1180
1237
|
assetReferences?: bigint[] | undefined;
|
|
1181
1238
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1239
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1182
1240
|
sender?: string | algosdk.Address | undefined;
|
|
1183
1241
|
method: string;
|
|
1184
1242
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -1202,6 +1260,7 @@ export declare class AppClient {
|
|
|
1202
1260
|
note?: string | Uint8Array | undefined;
|
|
1203
1261
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1204
1262
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
1263
|
+
rejectVersion?: number | undefined;
|
|
1205
1264
|
lease?: string | Uint8Array | undefined;
|
|
1206
1265
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1207
1266
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1213,6 +1272,7 @@ export declare class AppClient {
|
|
|
1213
1272
|
appReferences?: bigint[] | undefined;
|
|
1214
1273
|
assetReferences?: bigint[] | undefined;
|
|
1215
1274
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1275
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1216
1276
|
sender?: string | algosdk.Address | undefined;
|
|
1217
1277
|
method: string;
|
|
1218
1278
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -1236,6 +1296,7 @@ export declare class AppClient {
|
|
|
1236
1296
|
note?: string | Uint8Array | undefined;
|
|
1237
1297
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1238
1298
|
onComplete?: algosdk.OnApplicationComplete | undefined;
|
|
1299
|
+
rejectVersion?: number | undefined;
|
|
1239
1300
|
lease?: string | Uint8Array | undefined;
|
|
1240
1301
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1241
1302
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1247,6 +1308,7 @@ export declare class AppClient {
|
|
|
1247
1308
|
appReferences?: bigint[] | undefined;
|
|
1248
1309
|
assetReferences?: bigint[] | undefined;
|
|
1249
1310
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1311
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1250
1312
|
sender?: string | algosdk.Address | undefined;
|
|
1251
1313
|
method: string;
|
|
1252
1314
|
args?: (algosdk.ABIValue | AppMethodCallTransactionArgument | ABIStruct | undefined)[] | undefined;
|
|
@@ -1268,6 +1330,7 @@ export declare class AppClient {
|
|
|
1268
1330
|
note?: string | Uint8Array | undefined;
|
|
1269
1331
|
args?: Uint8Array[] | undefined;
|
|
1270
1332
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1333
|
+
rejectVersion?: number | undefined;
|
|
1271
1334
|
lease?: string | Uint8Array | undefined;
|
|
1272
1335
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1273
1336
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1279,6 +1342,7 @@ export declare class AppClient {
|
|
|
1279
1342
|
appReferences?: bigint[] | undefined;
|
|
1280
1343
|
assetReferences?: bigint[] | undefined;
|
|
1281
1344
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1345
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1282
1346
|
sender?: string | algosdk.Address | undefined;
|
|
1283
1347
|
} & AppClientCompilationParams & SendParams) | undefined) => Promise<{
|
|
1284
1348
|
compiledApproval?: import("./app").CompiledTeal | undefined;
|
|
@@ -1298,6 +1362,7 @@ export declare class AppClient {
|
|
|
1298
1362
|
note?: string | Uint8Array | undefined;
|
|
1299
1363
|
args?: Uint8Array[] | undefined;
|
|
1300
1364
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1365
|
+
rejectVersion?: number | undefined;
|
|
1301
1366
|
lease?: string | Uint8Array | undefined;
|
|
1302
1367
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1303
1368
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1309,6 +1374,7 @@ export declare class AppClient {
|
|
|
1309
1374
|
appReferences?: bigint[] | undefined;
|
|
1310
1375
|
assetReferences?: bigint[] | undefined;
|
|
1311
1376
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1377
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1312
1378
|
sender?: string | algosdk.Address | undefined;
|
|
1313
1379
|
} & SendParams) | undefined) => Promise<{
|
|
1314
1380
|
groupId: string;
|
|
@@ -1326,6 +1392,7 @@ export declare class AppClient {
|
|
|
1326
1392
|
note?: string | Uint8Array | undefined;
|
|
1327
1393
|
args?: Uint8Array[] | undefined;
|
|
1328
1394
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1395
|
+
rejectVersion?: number | undefined;
|
|
1329
1396
|
lease?: string | Uint8Array | undefined;
|
|
1330
1397
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1331
1398
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1337,6 +1404,7 @@ export declare class AppClient {
|
|
|
1337
1404
|
appReferences?: bigint[] | undefined;
|
|
1338
1405
|
assetReferences?: bigint[] | undefined;
|
|
1339
1406
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1407
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1340
1408
|
sender?: string | algosdk.Address | undefined;
|
|
1341
1409
|
} & SendParams) | undefined) => Promise<{
|
|
1342
1410
|
groupId: string;
|
|
@@ -1354,6 +1422,7 @@ export declare class AppClient {
|
|
|
1354
1422
|
note?: string | Uint8Array | undefined;
|
|
1355
1423
|
args?: Uint8Array[] | undefined;
|
|
1356
1424
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1425
|
+
rejectVersion?: number | undefined;
|
|
1357
1426
|
lease?: string | Uint8Array | undefined;
|
|
1358
1427
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1359
1428
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1365,6 +1434,7 @@ export declare class AppClient {
|
|
|
1365
1434
|
appReferences?: bigint[] | undefined;
|
|
1366
1435
|
assetReferences?: bigint[] | undefined;
|
|
1367
1436
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1437
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1368
1438
|
sender?: string | algosdk.Address | undefined;
|
|
1369
1439
|
} & SendParams) | undefined) => Promise<{
|
|
1370
1440
|
groupId: string;
|
|
@@ -1382,6 +1452,7 @@ export declare class AppClient {
|
|
|
1382
1452
|
note?: string | Uint8Array | undefined;
|
|
1383
1453
|
args?: Uint8Array[] | undefined;
|
|
1384
1454
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1455
|
+
rejectVersion?: number | undefined;
|
|
1385
1456
|
lease?: string | Uint8Array | undefined;
|
|
1386
1457
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1387
1458
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1393,6 +1464,7 @@ export declare class AppClient {
|
|
|
1393
1464
|
appReferences?: bigint[] | undefined;
|
|
1394
1465
|
assetReferences?: bigint[] | undefined;
|
|
1395
1466
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1467
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1396
1468
|
sender?: string | algosdk.Address | undefined;
|
|
1397
1469
|
} & SendParams) | undefined) => Promise<{
|
|
1398
1470
|
groupId: string;
|
|
@@ -1410,6 +1482,7 @@ export declare class AppClient {
|
|
|
1410
1482
|
note?: string | Uint8Array | undefined;
|
|
1411
1483
|
args?: Uint8Array[] | undefined;
|
|
1412
1484
|
signer?: algosdk.TransactionSigner | TransactionSignerAccount | undefined;
|
|
1485
|
+
rejectVersion?: number | undefined;
|
|
1413
1486
|
lease?: string | Uint8Array | undefined;
|
|
1414
1487
|
rekeyTo?: string | algosdk.Address | undefined;
|
|
1415
1488
|
staticFee?: AlgoAmount | undefined;
|
|
@@ -1421,6 +1494,7 @@ export declare class AppClient {
|
|
|
1421
1494
|
appReferences?: bigint[] | undefined;
|
|
1422
1495
|
assetReferences?: bigint[] | undefined;
|
|
1423
1496
|
boxReferences?: (BoxIdentifier | import("./app-manager").BoxReference)[] | undefined;
|
|
1497
|
+
accessReferences?: import("./app-manager").ResourceReference[] | undefined;
|
|
1424
1498
|
sender?: string | algosdk.Address | undefined;
|
|
1425
1499
|
} & CallOnComplete & SendParams) | undefined) => Promise<{
|
|
1426
1500
|
groupId: string;
|
package/types/app-client.js
CHANGED
|
@@ -683,7 +683,10 @@ class AppClient {
|
|
|
683
683
|
if (result.return === undefined) {
|
|
684
684
|
throw new Error('Default value method call did not return a value');
|
|
685
685
|
}
|
|
686
|
-
if (typeof result.return === 'object' &&
|
|
686
|
+
if (typeof result.return === 'object' &&
|
|
687
|
+
!(result.return instanceof Uint8Array) &&
|
|
688
|
+
!Array.isArray(result.return) &&
|
|
689
|
+
!(result.return instanceof algosdk.Address)) {
|
|
687
690
|
return types_appArc56.getABITupleFromABIStruct(result.return, this._appSpec.structs[method.returns.struct], this._appSpec.structs);
|
|
688
691
|
}
|
|
689
692
|
return result.return;
|