@algorandfoundation/algokit-utils 10.0.0-alpha.3 → 10.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/abi/src/abi-method.d.ts +1 -1
- package/packages/abi/src/abi-method.js.map +1 -1
- package/packages/abi/src/abi-method.mjs.map +1 -1
- package/transactions/method-call.js +12 -12
- package/transactions/method-call.js.map +1 -1
- package/transactions/method-call.mjs +12 -12
- package/transactions/method-call.mjs.map +1 -1
- package/types/algorand-client-transaction-creator.d.ts +32 -32
- package/types/algorand-client-transaction-sender.d.ts +34 -34
- package/types/app-client.d.ts +64 -64
- package/types/app-factory.d.ts +27 -27
- package/types/app-manager.d.ts +1 -1
- package/types/app-manager.js +6 -1
- package/types/app-manager.js.map +1 -1
- package/types/app-manager.mjs +6 -1
- package/types/app-manager.mjs.map +1 -1
- package/types/composer.js +3 -6
- package/types/composer.js.map +1 -1
- package/types/composer.mjs +3 -6
- package/types/composer.mjs.map +1 -1
|
@@ -358,12 +358,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
358
358
|
validityWindow?: number | bigint | undefined;
|
|
359
359
|
firstValidRound?: bigint | undefined;
|
|
360
360
|
lastValidRound?: bigint | undefined;
|
|
361
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
362
361
|
args?: Uint8Array[] | undefined;
|
|
362
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
363
363
|
accountReferences?: ReadableAddress[] | undefined;
|
|
364
364
|
appReferences?: bigint[] | undefined;
|
|
365
365
|
assetReferences?: bigint[] | undefined;
|
|
366
|
-
boxReferences?: (
|
|
366
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
367
367
|
accessReferences?: AccessReference[] | undefined;
|
|
368
368
|
rejectVersion?: number | undefined;
|
|
369
369
|
approvalProgram: string | Uint8Array;
|
|
@@ -430,7 +430,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
430
430
|
accountReferences?: ReadableAddress[] | undefined;
|
|
431
431
|
appReferences?: bigint[] | undefined;
|
|
432
432
|
assetReferences?: bigint[] | undefined;
|
|
433
|
-
boxReferences?: (
|
|
433
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
434
434
|
accessReferences?: AccessReference[] | undefined;
|
|
435
435
|
rejectVersion?: number | undefined;
|
|
436
436
|
approvalProgram: string | Uint8Array;
|
|
@@ -573,24 +573,24 @@ declare class AlgorandClientTransactionCreator {
|
|
|
573
573
|
validityWindow?: number | bigint | undefined;
|
|
574
574
|
firstValidRound?: bigint | undefined;
|
|
575
575
|
lastValidRound?: bigint | undefined;
|
|
576
|
-
approvalProgram: string | Uint8Array;
|
|
577
|
-
clearStateProgram: string | Uint8Array;
|
|
578
|
-
extraProgramPages?: number | undefined;
|
|
579
576
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
580
577
|
accountReferences?: ReadableAddress[] | undefined;
|
|
581
578
|
appReferences?: bigint[] | undefined;
|
|
582
579
|
assetReferences?: bigint[] | undefined;
|
|
583
|
-
boxReferences?: (
|
|
580
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
584
581
|
accessReferences?: AccessReference[] | undefined;
|
|
585
582
|
rejectVersion?: number | undefined;
|
|
583
|
+
approvalProgram: string | Uint8Array;
|
|
584
|
+
clearStateProgram: string | Uint8Array;
|
|
586
585
|
schema?: {
|
|
587
586
|
globalInts: number;
|
|
588
587
|
globalByteSlices: number;
|
|
589
588
|
localInts: number;
|
|
590
589
|
localByteSlices: number;
|
|
591
590
|
} | undefined;
|
|
591
|
+
extraProgramPages?: number | undefined;
|
|
592
592
|
method: ABIMethod;
|
|
593
|
-
args?: (Transaction | ABIValue |
|
|
593
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
594
594
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
595
595
|
sender: SendingAddress;
|
|
596
596
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -602,12 +602,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
602
602
|
validityWindow?: number | bigint | undefined;
|
|
603
603
|
firstValidRound?: bigint | undefined;
|
|
604
604
|
lastValidRound?: bigint | undefined;
|
|
605
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
606
605
|
args?: Uint8Array[] | undefined;
|
|
606
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
607
607
|
accountReferences?: ReadableAddress[] | undefined;
|
|
608
608
|
appReferences?: bigint[] | undefined;
|
|
609
609
|
assetReferences?: bigint[] | undefined;
|
|
610
|
-
boxReferences?: (
|
|
610
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
611
611
|
accessReferences?: AccessReference[] | undefined;
|
|
612
612
|
rejectVersion?: number | undefined;
|
|
613
613
|
approvalProgram: string | Uint8Array;
|
|
@@ -637,12 +637,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
637
637
|
accountReferences?: ReadableAddress[] | undefined;
|
|
638
638
|
appReferences?: bigint[] | undefined;
|
|
639
639
|
assetReferences?: bigint[] | undefined;
|
|
640
|
-
boxReferences?: (
|
|
640
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
641
641
|
accessReferences?: AccessReference[] | undefined;
|
|
642
642
|
rejectVersion?: number | undefined;
|
|
643
643
|
approvalProgram: string | Uint8Array;
|
|
644
644
|
clearStateProgram: string | Uint8Array;
|
|
645
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
645
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
646
646
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
647
647
|
/** Create an application update call with ABI method call transaction.
|
|
648
648
|
*
|
|
@@ -704,18 +704,18 @@ declare class AlgorandClientTransactionCreator {
|
|
|
704
704
|
validityWindow?: number | bigint | undefined;
|
|
705
705
|
firstValidRound?: bigint | undefined;
|
|
706
706
|
lastValidRound?: bigint | undefined;
|
|
707
|
-
approvalProgram: string | Uint8Array;
|
|
708
|
-
clearStateProgram: string | Uint8Array;
|
|
709
707
|
appId: bigint;
|
|
710
708
|
onComplete?: OnApplicationComplete.UpdateApplication | undefined;
|
|
711
709
|
accountReferences?: ReadableAddress[] | undefined;
|
|
712
710
|
appReferences?: bigint[] | undefined;
|
|
713
711
|
assetReferences?: bigint[] | undefined;
|
|
714
|
-
boxReferences?: (
|
|
712
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
715
713
|
accessReferences?: AccessReference[] | undefined;
|
|
716
714
|
rejectVersion?: number | undefined;
|
|
715
|
+
approvalProgram: string | Uint8Array;
|
|
716
|
+
clearStateProgram: string | Uint8Array;
|
|
717
717
|
method: ABIMethod;
|
|
718
|
-
args?: (Transaction | ABIValue |
|
|
718
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
719
719
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
720
720
|
sender: SendingAddress;
|
|
721
721
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -727,12 +727,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
727
727
|
validityWindow?: number | bigint | undefined;
|
|
728
728
|
firstValidRound?: bigint | undefined;
|
|
729
729
|
lastValidRound?: bigint | undefined;
|
|
730
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
731
730
|
args?: Uint8Array[] | undefined;
|
|
731
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
732
732
|
accountReferences?: ReadableAddress[] | undefined;
|
|
733
733
|
appReferences?: bigint[] | undefined;
|
|
734
734
|
assetReferences?: bigint[] | undefined;
|
|
735
|
-
boxReferences?: (
|
|
735
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
736
736
|
accessReferences?: AccessReference[] | undefined;
|
|
737
737
|
rejectVersion?: number | undefined;
|
|
738
738
|
approvalProgram: string | Uint8Array;
|
|
@@ -762,12 +762,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
762
762
|
accountReferences?: ReadableAddress[] | undefined;
|
|
763
763
|
appReferences?: bigint[] | undefined;
|
|
764
764
|
assetReferences?: bigint[] | undefined;
|
|
765
|
-
boxReferences?: (
|
|
765
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
766
766
|
accessReferences?: AccessReference[] | undefined;
|
|
767
767
|
rejectVersion?: number | undefined;
|
|
768
768
|
approvalProgram: string | Uint8Array;
|
|
769
769
|
clearStateProgram: string | Uint8Array;
|
|
770
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
770
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
771
771
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
772
772
|
/** Create an application delete call with ABI method call transaction.
|
|
773
773
|
*
|
|
@@ -832,11 +832,11 @@ declare class AlgorandClientTransactionCreator {
|
|
|
832
832
|
accountReferences?: ReadableAddress[] | undefined;
|
|
833
833
|
appReferences?: bigint[] | undefined;
|
|
834
834
|
assetReferences?: bigint[] | undefined;
|
|
835
|
-
boxReferences?: (
|
|
835
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
836
836
|
accessReferences?: AccessReference[] | undefined;
|
|
837
837
|
rejectVersion?: number | undefined;
|
|
838
838
|
method: ABIMethod;
|
|
839
|
-
args?: (Transaction | ABIValue |
|
|
839
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
840
840
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
841
841
|
sender: SendingAddress;
|
|
842
842
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -848,12 +848,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
848
848
|
validityWindow?: number | bigint | undefined;
|
|
849
849
|
firstValidRound?: bigint | undefined;
|
|
850
850
|
lastValidRound?: bigint | undefined;
|
|
851
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
852
851
|
args?: Uint8Array[] | undefined;
|
|
852
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
853
853
|
accountReferences?: ReadableAddress[] | undefined;
|
|
854
854
|
appReferences?: bigint[] | undefined;
|
|
855
855
|
assetReferences?: bigint[] | undefined;
|
|
856
|
-
boxReferences?: (
|
|
856
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
857
857
|
accessReferences?: AccessReference[] | undefined;
|
|
858
858
|
rejectVersion?: number | undefined;
|
|
859
859
|
approvalProgram: string | Uint8Array;
|
|
@@ -883,12 +883,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
883
883
|
accountReferences?: ReadableAddress[] | undefined;
|
|
884
884
|
appReferences?: bigint[] | undefined;
|
|
885
885
|
assetReferences?: bigint[] | undefined;
|
|
886
|
-
boxReferences?: (
|
|
886
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
887
887
|
accessReferences?: AccessReference[] | undefined;
|
|
888
888
|
rejectVersion?: number | undefined;
|
|
889
889
|
approvalProgram: string | Uint8Array;
|
|
890
890
|
clearStateProgram: string | Uint8Array;
|
|
891
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
891
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
892
892
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
893
893
|
/** Create an application call with ABI method call transaction.
|
|
894
894
|
*
|
|
@@ -953,11 +953,11 @@ declare class AlgorandClientTransactionCreator {
|
|
|
953
953
|
accountReferences?: ReadableAddress[] | undefined;
|
|
954
954
|
appReferences?: bigint[] | undefined;
|
|
955
955
|
assetReferences?: bigint[] | undefined;
|
|
956
|
-
boxReferences?: (
|
|
956
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
957
957
|
accessReferences?: AccessReference[] | undefined;
|
|
958
958
|
rejectVersion?: number | undefined;
|
|
959
959
|
method: ABIMethod;
|
|
960
|
-
args?: (Transaction | ABIValue |
|
|
960
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
961
961
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
962
962
|
sender: SendingAddress;
|
|
963
963
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -969,12 +969,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
969
969
|
validityWindow?: number | bigint | undefined;
|
|
970
970
|
firstValidRound?: bigint | undefined;
|
|
971
971
|
lastValidRound?: bigint | undefined;
|
|
972
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
973
972
|
args?: Uint8Array[] | undefined;
|
|
973
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
974
974
|
accountReferences?: ReadableAddress[] | undefined;
|
|
975
975
|
appReferences?: bigint[] | undefined;
|
|
976
976
|
assetReferences?: bigint[] | undefined;
|
|
977
|
-
boxReferences?: (
|
|
977
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
978
978
|
accessReferences?: AccessReference[] | undefined;
|
|
979
979
|
rejectVersion?: number | undefined;
|
|
980
980
|
approvalProgram: string | Uint8Array;
|
|
@@ -1004,12 +1004,12 @@ declare class AlgorandClientTransactionCreator {
|
|
|
1004
1004
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1005
1005
|
appReferences?: bigint[] | undefined;
|
|
1006
1006
|
assetReferences?: bigint[] | undefined;
|
|
1007
|
-
boxReferences?: (
|
|
1007
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1008
1008
|
accessReferences?: AccessReference[] | undefined;
|
|
1009
1009
|
rejectVersion?: number | undefined;
|
|
1010
1010
|
approvalProgram: string | Uint8Array;
|
|
1011
1011
|
clearStateProgram: string | Uint8Array;
|
|
1012
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1012
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1013
1013
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* Create an online key registration transaction.
|
|
@@ -489,12 +489,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
489
489
|
validityWindow?: number | bigint | undefined;
|
|
490
490
|
firstValidRound?: bigint | undefined;
|
|
491
491
|
lastValidRound?: bigint | undefined;
|
|
492
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
493
492
|
args?: Uint8Array[] | undefined;
|
|
493
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
494
494
|
accountReferences?: ReadableAddress[] | undefined;
|
|
495
495
|
appReferences?: bigint[] | undefined;
|
|
496
496
|
assetReferences?: bigint[] | undefined;
|
|
497
|
-
boxReferences?: (
|
|
497
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
498
498
|
accessReferences?: AccessReference[] | undefined;
|
|
499
499
|
rejectVersion?: number | undefined;
|
|
500
500
|
approvalProgram: string | Uint8Array;
|
|
@@ -568,7 +568,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
568
568
|
accountReferences?: ReadableAddress[] | undefined;
|
|
569
569
|
appReferences?: bigint[] | undefined;
|
|
570
570
|
assetReferences?: bigint[] | undefined;
|
|
571
|
-
boxReferences?: (
|
|
571
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
572
572
|
accessReferences?: AccessReference[] | undefined;
|
|
573
573
|
rejectVersion?: number | undefined;
|
|
574
574
|
approvalProgram: string | Uint8Array;
|
|
@@ -622,7 +622,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
622
622
|
accountReferences?: ReadableAddress[] | undefined;
|
|
623
623
|
appReferences?: bigint[] | undefined;
|
|
624
624
|
assetReferences?: bigint[] | undefined;
|
|
625
|
-
boxReferences?: (
|
|
625
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
626
626
|
accessReferences?: AccessReference[] | undefined;
|
|
627
627
|
rejectVersion?: number | undefined;
|
|
628
628
|
} & {
|
|
@@ -676,7 +676,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
676
676
|
accountReferences?: ReadableAddress[] | undefined;
|
|
677
677
|
appReferences?: bigint[] | undefined;
|
|
678
678
|
assetReferences?: bigint[] | undefined;
|
|
679
|
-
boxReferences?: (
|
|
679
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
680
680
|
accessReferences?: AccessReference[] | undefined;
|
|
681
681
|
rejectVersion?: number | undefined;
|
|
682
682
|
} & {
|
|
@@ -757,24 +757,24 @@ declare class AlgorandClientTransactionSender {
|
|
|
757
757
|
validityWindow?: number | bigint | undefined;
|
|
758
758
|
firstValidRound?: bigint | undefined;
|
|
759
759
|
lastValidRound?: bigint | undefined;
|
|
760
|
-
approvalProgram: string | Uint8Array;
|
|
761
|
-
clearStateProgram: string | Uint8Array;
|
|
762
|
-
extraProgramPages?: number | undefined;
|
|
763
760
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
764
761
|
accountReferences?: ReadableAddress[] | undefined;
|
|
765
762
|
appReferences?: bigint[] | undefined;
|
|
766
763
|
assetReferences?: bigint[] | undefined;
|
|
767
|
-
boxReferences?: (
|
|
764
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
768
765
|
accessReferences?: AccessReference[] | undefined;
|
|
769
766
|
rejectVersion?: number | undefined;
|
|
767
|
+
approvalProgram: string | Uint8Array;
|
|
768
|
+
clearStateProgram: string | Uint8Array;
|
|
770
769
|
schema?: {
|
|
771
770
|
globalInts: number;
|
|
772
771
|
globalByteSlices: number;
|
|
773
772
|
localInts: number;
|
|
774
773
|
localByteSlices: number;
|
|
775
774
|
} | undefined;
|
|
775
|
+
extraProgramPages?: number | undefined;
|
|
776
776
|
method: ABIMethod;
|
|
777
|
-
args?: (Transaction | ABIValue |
|
|
777
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
778
778
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
779
779
|
sender: SendingAddress;
|
|
780
780
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -786,12 +786,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
786
786
|
validityWindow?: number | bigint | undefined;
|
|
787
787
|
firstValidRound?: bigint | undefined;
|
|
788
788
|
lastValidRound?: bigint | undefined;
|
|
789
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
790
789
|
args?: Uint8Array[] | undefined;
|
|
790
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
791
791
|
accountReferences?: ReadableAddress[] | undefined;
|
|
792
792
|
appReferences?: bigint[] | undefined;
|
|
793
793
|
assetReferences?: bigint[] | undefined;
|
|
794
|
-
boxReferences?: (
|
|
794
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
795
795
|
accessReferences?: AccessReference[] | undefined;
|
|
796
796
|
rejectVersion?: number | undefined;
|
|
797
797
|
approvalProgram: string | Uint8Array;
|
|
@@ -821,12 +821,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
821
821
|
accountReferences?: ReadableAddress[] | undefined;
|
|
822
822
|
appReferences?: bigint[] | undefined;
|
|
823
823
|
assetReferences?: bigint[] | undefined;
|
|
824
|
-
boxReferences?: (
|
|
824
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
825
825
|
accessReferences?: AccessReference[] | undefined;
|
|
826
826
|
rejectVersion?: number | undefined;
|
|
827
827
|
approvalProgram: string | Uint8Array;
|
|
828
828
|
clearStateProgram: string | Uint8Array;
|
|
829
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
829
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
830
830
|
} & SendParams) => Promise<SendAppCreateTransactionResult>;
|
|
831
831
|
/**
|
|
832
832
|
* Update a smart contract via an ABI method.
|
|
@@ -895,18 +895,18 @@ declare class AlgorandClientTransactionSender {
|
|
|
895
895
|
validityWindow?: number | bigint | undefined;
|
|
896
896
|
firstValidRound?: bigint | undefined;
|
|
897
897
|
lastValidRound?: bigint | undefined;
|
|
898
|
-
approvalProgram: string | Uint8Array;
|
|
899
|
-
clearStateProgram: string | Uint8Array;
|
|
900
898
|
appId: bigint;
|
|
901
899
|
onComplete?: OnApplicationComplete.UpdateApplication | undefined;
|
|
902
900
|
accountReferences?: ReadableAddress[] | undefined;
|
|
903
901
|
appReferences?: bigint[] | undefined;
|
|
904
902
|
assetReferences?: bigint[] | undefined;
|
|
905
|
-
boxReferences?: (
|
|
903
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
906
904
|
accessReferences?: AccessReference[] | undefined;
|
|
907
905
|
rejectVersion?: number | undefined;
|
|
906
|
+
approvalProgram: string | Uint8Array;
|
|
907
|
+
clearStateProgram: string | Uint8Array;
|
|
908
908
|
method: ABIMethod;
|
|
909
|
-
args?: (Transaction | ABIValue |
|
|
909
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
910
910
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
911
911
|
sender: SendingAddress;
|
|
912
912
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -918,12 +918,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
918
918
|
validityWindow?: number | bigint | undefined;
|
|
919
919
|
firstValidRound?: bigint | undefined;
|
|
920
920
|
lastValidRound?: bigint | undefined;
|
|
921
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
922
921
|
args?: Uint8Array[] | undefined;
|
|
922
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
923
923
|
accountReferences?: ReadableAddress[] | undefined;
|
|
924
924
|
appReferences?: bigint[] | undefined;
|
|
925
925
|
assetReferences?: bigint[] | undefined;
|
|
926
|
-
boxReferences?: (
|
|
926
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
927
927
|
accessReferences?: AccessReference[] | undefined;
|
|
928
928
|
rejectVersion?: number | undefined;
|
|
929
929
|
approvalProgram: string | Uint8Array;
|
|
@@ -953,12 +953,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
953
953
|
accountReferences?: ReadableAddress[] | undefined;
|
|
954
954
|
appReferences?: bigint[] | undefined;
|
|
955
955
|
assetReferences?: bigint[] | undefined;
|
|
956
|
-
boxReferences?: (
|
|
956
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
957
957
|
accessReferences?: AccessReference[] | undefined;
|
|
958
958
|
rejectVersion?: number | undefined;
|
|
959
959
|
approvalProgram: string | Uint8Array;
|
|
960
960
|
clearStateProgram: string | Uint8Array;
|
|
961
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
961
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
962
962
|
} & SendParams) => Promise<SendAppUpdateTransactionResult>;
|
|
963
963
|
/**
|
|
964
964
|
* Delete a smart contract via an ABI method.
|
|
@@ -1030,11 +1030,11 @@ declare class AlgorandClientTransactionSender {
|
|
|
1030
1030
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1031
1031
|
appReferences?: bigint[] | undefined;
|
|
1032
1032
|
assetReferences?: bigint[] | undefined;
|
|
1033
|
-
boxReferences?: (
|
|
1033
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1034
1034
|
accessReferences?: AccessReference[] | undefined;
|
|
1035
1035
|
rejectVersion?: number | undefined;
|
|
1036
1036
|
method: ABIMethod;
|
|
1037
|
-
args?: (Transaction | ABIValue |
|
|
1037
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
1038
1038
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1039
1039
|
sender: SendingAddress;
|
|
1040
1040
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1046,12 +1046,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
1046
1046
|
validityWindow?: number | bigint | undefined;
|
|
1047
1047
|
firstValidRound?: bigint | undefined;
|
|
1048
1048
|
lastValidRound?: bigint | undefined;
|
|
1049
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
1050
1049
|
args?: Uint8Array[] | undefined;
|
|
1050
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
1051
1051
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1052
1052
|
appReferences?: bigint[] | undefined;
|
|
1053
1053
|
assetReferences?: bigint[] | undefined;
|
|
1054
|
-
boxReferences?: (
|
|
1054
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1055
1055
|
accessReferences?: AccessReference[] | undefined;
|
|
1056
1056
|
rejectVersion?: number | undefined;
|
|
1057
1057
|
approvalProgram: string | Uint8Array;
|
|
@@ -1081,12 +1081,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
1081
1081
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1082
1082
|
appReferences?: bigint[] | undefined;
|
|
1083
1083
|
assetReferences?: bigint[] | undefined;
|
|
1084
|
-
boxReferences?: (
|
|
1084
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1085
1085
|
accessReferences?: AccessReference[] | undefined;
|
|
1086
1086
|
rejectVersion?: number | undefined;
|
|
1087
1087
|
approvalProgram: string | Uint8Array;
|
|
1088
1088
|
clearStateProgram: string | Uint8Array;
|
|
1089
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1089
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1090
1090
|
} & SendParams) => Promise<SendAppTransactionResult>;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Call a smart contract via an ABI method.
|
|
@@ -1158,11 +1158,11 @@ declare class AlgorandClientTransactionSender {
|
|
|
1158
1158
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1159
1159
|
appReferences?: bigint[] | undefined;
|
|
1160
1160
|
assetReferences?: bigint[] | undefined;
|
|
1161
|
-
boxReferences?: (
|
|
1161
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1162
1162
|
accessReferences?: AccessReference[] | undefined;
|
|
1163
1163
|
rejectVersion?: number | undefined;
|
|
1164
1164
|
method: ABIMethod;
|
|
1165
|
-
args?: (Transaction | ABIValue |
|
|
1165
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
1166
1166
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1167
1167
|
sender: SendingAddress;
|
|
1168
1168
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1174,12 +1174,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
1174
1174
|
validityWindow?: number | bigint | undefined;
|
|
1175
1175
|
firstValidRound?: bigint | undefined;
|
|
1176
1176
|
lastValidRound?: bigint | undefined;
|
|
1177
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
1178
1177
|
args?: Uint8Array[] | undefined;
|
|
1178
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
1179
1179
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1180
1180
|
appReferences?: bigint[] | undefined;
|
|
1181
1181
|
assetReferences?: bigint[] | undefined;
|
|
1182
|
-
boxReferences?: (
|
|
1182
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1183
1183
|
accessReferences?: AccessReference[] | undefined;
|
|
1184
1184
|
rejectVersion?: number | undefined;
|
|
1185
1185
|
approvalProgram: string | Uint8Array;
|
|
@@ -1209,12 +1209,12 @@ declare class AlgorandClientTransactionSender {
|
|
|
1209
1209
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1210
1210
|
appReferences?: bigint[] | undefined;
|
|
1211
1211
|
assetReferences?: bigint[] | undefined;
|
|
1212
|
-
boxReferences?: (
|
|
1212
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1213
1213
|
accessReferences?: AccessReference[] | undefined;
|
|
1214
1214
|
rejectVersion?: number | undefined;
|
|
1215
1215
|
approvalProgram: string | Uint8Array;
|
|
1216
1216
|
clearStateProgram: string | Uint8Array;
|
|
1217
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1217
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1218
1218
|
} & SendParams) => Promise<SendAppTransactionResult>;
|
|
1219
1219
|
/**
|
|
1220
1220
|
* Register an online key.
|