@algorandfoundation/algokit-utils 10.0.0-alpha.26 → 10.0.0-alpha.28
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/indexer_client/src/models/transaction-state-proof.d.ts +1 -1
- package/packages/indexer_client/src/models/transaction-state-proof.js +2 -2
- package/packages/indexer_client/src/models/transaction-state-proof.js.map +1 -1
- package/packages/indexer_client/src/models/transaction-state-proof.mjs +2 -2
- package/packages/indexer_client/src/models/transaction-state-proof.mjs.map +1 -1
- package/packages/transact/src/logicsig.js +1 -0
- package/packages/transact/src/logicsig.js.map +1 -1
- package/packages/transact/src/logicsig.mjs +2 -1
- package/packages/transact/src/logicsig.mjs.map +1 -1
- package/packages/transact/src/multisig.js +4 -1
- package/packages/transact/src/multisig.js.map +1 -1
- package/packages/transact/src/multisig.mjs +5 -2
- package/packages/transact/src/multisig.mjs.map +1 -1
- package/packages/transact/src/signer.js +5 -1
- package/packages/transact/src/signer.js.map +1 -1
- package/packages/transact/src/signer.mjs +6 -2
- package/packages/transact/src/signer.mjs.map +1 -1
- package/packages/transact/src/transactions/state-proof.d.ts +1 -1
- package/types/algorand-client-transaction-creator.d.ts +23 -23
- package/types/algorand-client-transaction-sender.d.ts +25 -25
- package/types/app-client.d.ts +54 -54
- package/types/app-factory.d.ts +23 -23
- package/types/composer.d.ts +2 -2
- package/types/composer.js +9 -19
- package/types/composer.js.map +1 -1
- package/types/composer.mjs +10 -20
- package/types/composer.mjs.map +1 -1
|
@@ -364,7 +364,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
364
364
|
accountReferences?: ReadableAddress[] | undefined;
|
|
365
365
|
appReferences?: bigint[] | undefined;
|
|
366
366
|
assetReferences?: bigint[] | undefined;
|
|
367
|
-
boxReferences?: (
|
|
367
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
368
368
|
accessReferences?: ResourceReference[] | undefined;
|
|
369
369
|
rejectVersion?: number | undefined;
|
|
370
370
|
appId?: 0 | undefined;
|
|
@@ -433,7 +433,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
433
433
|
accountReferences?: ReadableAddress[] | undefined;
|
|
434
434
|
appReferences?: bigint[] | undefined;
|
|
435
435
|
assetReferences?: bigint[] | undefined;
|
|
436
|
-
boxReferences?: (
|
|
436
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
437
437
|
accessReferences?: ResourceReference[] | undefined;
|
|
438
438
|
rejectVersion?: number | undefined;
|
|
439
439
|
approvalProgram: string | Uint8Array;
|
|
@@ -579,25 +579,25 @@ declare class AlgorandClientTransactionCreator {
|
|
|
579
579
|
validityWindow?: number | bigint | undefined;
|
|
580
580
|
firstValidRound?: bigint | undefined;
|
|
581
581
|
lastValidRound?: bigint | undefined;
|
|
582
|
+
approvalProgram: string | Uint8Array;
|
|
583
|
+
clearStateProgram: string | Uint8Array;
|
|
582
584
|
appId?: 0 | undefined;
|
|
585
|
+
extraProgramPages?: number | undefined;
|
|
583
586
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
584
587
|
accountReferences?: ReadableAddress[] | undefined;
|
|
585
588
|
appReferences?: bigint[] | undefined;
|
|
586
589
|
assetReferences?: bigint[] | undefined;
|
|
587
|
-
boxReferences?: (
|
|
590
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
588
591
|
accessReferences?: ResourceReference[] | undefined;
|
|
589
592
|
rejectVersion?: number | undefined;
|
|
590
|
-
approvalProgram: string | Uint8Array;
|
|
591
|
-
clearStateProgram: string | Uint8Array;
|
|
592
593
|
schema?: {
|
|
593
594
|
globalInts: number;
|
|
594
595
|
globalByteSlices: number;
|
|
595
596
|
localInts: number;
|
|
596
597
|
localByteSlices: number;
|
|
597
598
|
} | undefined;
|
|
598
|
-
extraProgramPages?: number | undefined;
|
|
599
599
|
method: ABIMethod;
|
|
600
|
-
args?: (Transaction | Promise<Transaction> |
|
|
600
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
601
601
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
602
602
|
sender: SendingAddress;
|
|
603
603
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -614,7 +614,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
614
614
|
accountReferences?: ReadableAddress[] | undefined;
|
|
615
615
|
appReferences?: bigint[] | undefined;
|
|
616
616
|
assetReferences?: bigint[] | undefined;
|
|
617
|
-
boxReferences?: (
|
|
617
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
618
618
|
accessReferences?: ResourceReference[] | undefined;
|
|
619
619
|
rejectVersion?: number | undefined;
|
|
620
620
|
appId?: 0 | undefined;
|
|
@@ -645,7 +645,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
645
645
|
accountReferences?: ReadableAddress[] | undefined;
|
|
646
646
|
appReferences?: bigint[] | undefined;
|
|
647
647
|
assetReferences?: bigint[] | undefined;
|
|
648
|
-
boxReferences?: (
|
|
648
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
649
649
|
accessReferences?: ResourceReference[] | undefined;
|
|
650
650
|
rejectVersion?: number | undefined;
|
|
651
651
|
approvalProgram: string | Uint8Array;
|
|
@@ -713,18 +713,18 @@ declare class AlgorandClientTransactionCreator {
|
|
|
713
713
|
validityWindow?: number | bigint | undefined;
|
|
714
714
|
firstValidRound?: bigint | undefined;
|
|
715
715
|
lastValidRound?: bigint | undefined;
|
|
716
|
+
approvalProgram: string | Uint8Array;
|
|
717
|
+
clearStateProgram: string | Uint8Array;
|
|
716
718
|
appId: bigint;
|
|
717
719
|
onComplete?: OnApplicationComplete.UpdateApplication | undefined;
|
|
718
720
|
accountReferences?: ReadableAddress[] | undefined;
|
|
719
721
|
appReferences?: bigint[] | undefined;
|
|
720
722
|
assetReferences?: bigint[] | undefined;
|
|
721
|
-
boxReferences?: (
|
|
723
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
722
724
|
accessReferences?: ResourceReference[] | undefined;
|
|
723
725
|
rejectVersion?: number | undefined;
|
|
724
|
-
approvalProgram: string | Uint8Array;
|
|
725
|
-
clearStateProgram: string | Uint8Array;
|
|
726
726
|
method: ABIMethod;
|
|
727
|
-
args?: (Transaction | Promise<Transaction> |
|
|
727
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
728
728
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
729
729
|
sender: SendingAddress;
|
|
730
730
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -741,7 +741,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
741
741
|
accountReferences?: ReadableAddress[] | undefined;
|
|
742
742
|
appReferences?: bigint[] | undefined;
|
|
743
743
|
assetReferences?: bigint[] | undefined;
|
|
744
|
-
boxReferences?: (
|
|
744
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
745
745
|
accessReferences?: ResourceReference[] | undefined;
|
|
746
746
|
rejectVersion?: number | undefined;
|
|
747
747
|
appId?: 0 | undefined;
|
|
@@ -772,7 +772,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
772
772
|
accountReferences?: ReadableAddress[] | undefined;
|
|
773
773
|
appReferences?: bigint[] | undefined;
|
|
774
774
|
assetReferences?: bigint[] | undefined;
|
|
775
|
-
boxReferences?: (
|
|
775
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
776
776
|
accessReferences?: ResourceReference[] | undefined;
|
|
777
777
|
rejectVersion?: number | undefined;
|
|
778
778
|
approvalProgram: string | Uint8Array;
|
|
@@ -843,11 +843,11 @@ declare class AlgorandClientTransactionCreator {
|
|
|
843
843
|
accountReferences?: ReadableAddress[] | undefined;
|
|
844
844
|
appReferences?: bigint[] | undefined;
|
|
845
845
|
assetReferences?: bigint[] | undefined;
|
|
846
|
-
boxReferences?: (
|
|
846
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
847
847
|
accessReferences?: ResourceReference[] | undefined;
|
|
848
848
|
rejectVersion?: number | undefined;
|
|
849
849
|
method: ABIMethod;
|
|
850
|
-
args?: (Transaction | Promise<Transaction> |
|
|
850
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
851
851
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
852
852
|
sender: SendingAddress;
|
|
853
853
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -864,7 +864,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
864
864
|
accountReferences?: ReadableAddress[] | undefined;
|
|
865
865
|
appReferences?: bigint[] | undefined;
|
|
866
866
|
assetReferences?: bigint[] | undefined;
|
|
867
|
-
boxReferences?: (
|
|
867
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
868
868
|
accessReferences?: ResourceReference[] | undefined;
|
|
869
869
|
rejectVersion?: number | undefined;
|
|
870
870
|
appId?: 0 | undefined;
|
|
@@ -895,7 +895,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
895
895
|
accountReferences?: ReadableAddress[] | undefined;
|
|
896
896
|
appReferences?: bigint[] | undefined;
|
|
897
897
|
assetReferences?: bigint[] | undefined;
|
|
898
|
-
boxReferences?: (
|
|
898
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
899
899
|
accessReferences?: ResourceReference[] | undefined;
|
|
900
900
|
rejectVersion?: number | undefined;
|
|
901
901
|
approvalProgram: string | Uint8Array;
|
|
@@ -966,11 +966,11 @@ declare class AlgorandClientTransactionCreator {
|
|
|
966
966
|
accountReferences?: ReadableAddress[] | undefined;
|
|
967
967
|
appReferences?: bigint[] | undefined;
|
|
968
968
|
assetReferences?: bigint[] | undefined;
|
|
969
|
-
boxReferences?: (
|
|
969
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
970
970
|
accessReferences?: ResourceReference[] | undefined;
|
|
971
971
|
rejectVersion?: number | undefined;
|
|
972
972
|
method: ABIMethod;
|
|
973
|
-
args?: (Transaction | Promise<Transaction> |
|
|
973
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
974
974
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
975
975
|
sender: SendingAddress;
|
|
976
976
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -987,7 +987,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
987
987
|
accountReferences?: ReadableAddress[] | undefined;
|
|
988
988
|
appReferences?: bigint[] | undefined;
|
|
989
989
|
assetReferences?: bigint[] | undefined;
|
|
990
|
-
boxReferences?: (
|
|
990
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
991
991
|
accessReferences?: ResourceReference[] | undefined;
|
|
992
992
|
rejectVersion?: number | undefined;
|
|
993
993
|
appId?: 0 | undefined;
|
|
@@ -1018,7 +1018,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
1018
1018
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1019
1019
|
appReferences?: bigint[] | undefined;
|
|
1020
1020
|
assetReferences?: bigint[] | undefined;
|
|
1021
|
-
boxReferences?: (
|
|
1021
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1022
1022
|
accessReferences?: ResourceReference[] | undefined;
|
|
1023
1023
|
rejectVersion?: number | undefined;
|
|
1024
1024
|
approvalProgram: string | Uint8Array;
|
|
@@ -495,7 +495,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
495
495
|
accountReferences?: ReadableAddress[] | undefined;
|
|
496
496
|
appReferences?: bigint[] | undefined;
|
|
497
497
|
assetReferences?: bigint[] | undefined;
|
|
498
|
-
boxReferences?: (
|
|
498
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
499
499
|
accessReferences?: ResourceReference[] | undefined;
|
|
500
500
|
rejectVersion?: number | undefined;
|
|
501
501
|
appId?: 0 | undefined;
|
|
@@ -571,7 +571,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
571
571
|
accountReferences?: ReadableAddress[] | undefined;
|
|
572
572
|
appReferences?: bigint[] | undefined;
|
|
573
573
|
assetReferences?: bigint[] | undefined;
|
|
574
|
-
boxReferences?: (
|
|
574
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
575
575
|
accessReferences?: ResourceReference[] | undefined;
|
|
576
576
|
rejectVersion?: number | undefined;
|
|
577
577
|
approvalProgram: string | Uint8Array;
|
|
@@ -626,7 +626,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
626
626
|
accountReferences?: ReadableAddress[] | undefined;
|
|
627
627
|
appReferences?: bigint[] | undefined;
|
|
628
628
|
assetReferences?: bigint[] | undefined;
|
|
629
|
-
boxReferences?: (
|
|
629
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
630
630
|
accessReferences?: ResourceReference[] | undefined;
|
|
631
631
|
rejectVersion?: number | undefined;
|
|
632
632
|
} & {
|
|
@@ -681,7 +681,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
681
681
|
accountReferences?: ReadableAddress[] | undefined;
|
|
682
682
|
appReferences?: bigint[] | undefined;
|
|
683
683
|
assetReferences?: bigint[] | undefined;
|
|
684
|
-
boxReferences?: (
|
|
684
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
685
685
|
accessReferences?: ResourceReference[] | undefined;
|
|
686
686
|
rejectVersion?: number | undefined;
|
|
687
687
|
} & {
|
|
@@ -763,25 +763,25 @@ declare class AlgorandClientTransactionSender {
|
|
|
763
763
|
validityWindow?: number | bigint | undefined;
|
|
764
764
|
firstValidRound?: bigint | undefined;
|
|
765
765
|
lastValidRound?: bigint | undefined;
|
|
766
|
+
approvalProgram: string | Uint8Array;
|
|
767
|
+
clearStateProgram: string | Uint8Array;
|
|
766
768
|
appId?: 0 | undefined;
|
|
769
|
+
extraProgramPages?: number | undefined;
|
|
767
770
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
768
771
|
accountReferences?: ReadableAddress[] | undefined;
|
|
769
772
|
appReferences?: bigint[] | undefined;
|
|
770
773
|
assetReferences?: bigint[] | undefined;
|
|
771
|
-
boxReferences?: (
|
|
774
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
772
775
|
accessReferences?: ResourceReference[] | undefined;
|
|
773
776
|
rejectVersion?: number | undefined;
|
|
774
|
-
approvalProgram: string | Uint8Array;
|
|
775
|
-
clearStateProgram: string | Uint8Array;
|
|
776
777
|
schema?: {
|
|
777
778
|
globalInts: number;
|
|
778
779
|
globalByteSlices: number;
|
|
779
780
|
localInts: number;
|
|
780
781
|
localByteSlices: number;
|
|
781
782
|
} | undefined;
|
|
782
|
-
extraProgramPages?: number | undefined;
|
|
783
783
|
method: ABIMethod;
|
|
784
|
-
args?: (Transaction | Promise<Transaction> |
|
|
784
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
785
785
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
786
786
|
sender: SendingAddress;
|
|
787
787
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -798,7 +798,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
798
798
|
accountReferences?: ReadableAddress[] | undefined;
|
|
799
799
|
appReferences?: bigint[] | undefined;
|
|
800
800
|
assetReferences?: bigint[] | undefined;
|
|
801
|
-
boxReferences?: (
|
|
801
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
802
802
|
accessReferences?: ResourceReference[] | undefined;
|
|
803
803
|
rejectVersion?: number | undefined;
|
|
804
804
|
appId?: 0 | undefined;
|
|
@@ -829,7 +829,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
829
829
|
accountReferences?: ReadableAddress[] | undefined;
|
|
830
830
|
appReferences?: bigint[] | undefined;
|
|
831
831
|
assetReferences?: bigint[] | undefined;
|
|
832
|
-
boxReferences?: (
|
|
832
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
833
833
|
accessReferences?: ResourceReference[] | undefined;
|
|
834
834
|
rejectVersion?: number | undefined;
|
|
835
835
|
approvalProgram: string | Uint8Array;
|
|
@@ -904,18 +904,18 @@ declare class AlgorandClientTransactionSender {
|
|
|
904
904
|
validityWindow?: number | bigint | undefined;
|
|
905
905
|
firstValidRound?: bigint | undefined;
|
|
906
906
|
lastValidRound?: bigint | undefined;
|
|
907
|
+
approvalProgram: string | Uint8Array;
|
|
908
|
+
clearStateProgram: string | Uint8Array;
|
|
907
909
|
appId: bigint;
|
|
908
910
|
onComplete?: OnApplicationComplete.UpdateApplication | undefined;
|
|
909
911
|
accountReferences?: ReadableAddress[] | undefined;
|
|
910
912
|
appReferences?: bigint[] | undefined;
|
|
911
913
|
assetReferences?: bigint[] | undefined;
|
|
912
|
-
boxReferences?: (
|
|
914
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
913
915
|
accessReferences?: ResourceReference[] | undefined;
|
|
914
916
|
rejectVersion?: number | undefined;
|
|
915
|
-
approvalProgram: string | Uint8Array;
|
|
916
|
-
clearStateProgram: string | Uint8Array;
|
|
917
917
|
method: ABIMethod;
|
|
918
|
-
args?: (Transaction | Promise<Transaction> |
|
|
918
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
919
919
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
920
920
|
sender: SendingAddress;
|
|
921
921
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -932,7 +932,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
932
932
|
accountReferences?: ReadableAddress[] | undefined;
|
|
933
933
|
appReferences?: bigint[] | undefined;
|
|
934
934
|
assetReferences?: bigint[] | undefined;
|
|
935
|
-
boxReferences?: (
|
|
935
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
936
936
|
accessReferences?: ResourceReference[] | undefined;
|
|
937
937
|
rejectVersion?: number | undefined;
|
|
938
938
|
appId?: 0 | undefined;
|
|
@@ -963,7 +963,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
963
963
|
accountReferences?: ReadableAddress[] | undefined;
|
|
964
964
|
appReferences?: bigint[] | undefined;
|
|
965
965
|
assetReferences?: bigint[] | undefined;
|
|
966
|
-
boxReferences?: (
|
|
966
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
967
967
|
accessReferences?: ResourceReference[] | undefined;
|
|
968
968
|
rejectVersion?: number | undefined;
|
|
969
969
|
approvalProgram: string | Uint8Array;
|
|
@@ -1041,11 +1041,11 @@ declare class AlgorandClientTransactionSender {
|
|
|
1041
1041
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1042
1042
|
appReferences?: bigint[] | undefined;
|
|
1043
1043
|
assetReferences?: bigint[] | undefined;
|
|
1044
|
-
boxReferences?: (
|
|
1044
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1045
1045
|
accessReferences?: ResourceReference[] | undefined;
|
|
1046
1046
|
rejectVersion?: number | undefined;
|
|
1047
1047
|
method: ABIMethod;
|
|
1048
|
-
args?: (Transaction | Promise<Transaction> |
|
|
1048
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
1049
1049
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1050
1050
|
sender: SendingAddress;
|
|
1051
1051
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1062,7 +1062,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1062
1062
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1063
1063
|
appReferences?: bigint[] | undefined;
|
|
1064
1064
|
assetReferences?: bigint[] | undefined;
|
|
1065
|
-
boxReferences?: (
|
|
1065
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1066
1066
|
accessReferences?: ResourceReference[] | undefined;
|
|
1067
1067
|
rejectVersion?: number | undefined;
|
|
1068
1068
|
appId?: 0 | undefined;
|
|
@@ -1093,7 +1093,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1093
1093
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1094
1094
|
appReferences?: bigint[] | undefined;
|
|
1095
1095
|
assetReferences?: bigint[] | undefined;
|
|
1096
|
-
boxReferences?: (
|
|
1096
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1097
1097
|
accessReferences?: ResourceReference[] | undefined;
|
|
1098
1098
|
rejectVersion?: number | undefined;
|
|
1099
1099
|
approvalProgram: string | Uint8Array;
|
|
@@ -1171,11 +1171,11 @@ declare class AlgorandClientTransactionSender {
|
|
|
1171
1171
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1172
1172
|
appReferences?: bigint[] | undefined;
|
|
1173
1173
|
assetReferences?: bigint[] | undefined;
|
|
1174
|
-
boxReferences?: (
|
|
1174
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1175
1175
|
accessReferences?: ResourceReference[] | undefined;
|
|
1176
1176
|
rejectVersion?: number | undefined;
|
|
1177
1177
|
method: ABIMethod;
|
|
1178
|
-
args?: (Transaction | Promise<Transaction> |
|
|
1178
|
+
args?: (Transaction | ABIValue | Promise<Transaction> | TransactionWithSigner | AppMethodCall<{
|
|
1179
1179
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1180
1180
|
sender: SendingAddress;
|
|
1181
1181
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1192,7 +1192,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1192
1192
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1193
1193
|
appReferences?: bigint[] | undefined;
|
|
1194
1194
|
assetReferences?: bigint[] | undefined;
|
|
1195
|
-
boxReferences?: (
|
|
1195
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1196
1196
|
accessReferences?: ResourceReference[] | undefined;
|
|
1197
1197
|
rejectVersion?: number | undefined;
|
|
1198
1198
|
appId?: 0 | undefined;
|
|
@@ -1223,7 +1223,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1223
1223
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1224
1224
|
appReferences?: bigint[] | undefined;
|
|
1225
1225
|
assetReferences?: bigint[] | undefined;
|
|
1226
|
-
boxReferences?: (
|
|
1226
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
1227
1227
|
accessReferences?: ResourceReference[] | undefined;
|
|
1228
1228
|
rejectVersion?: number | undefined;
|
|
1229
1229
|
approvalProgram: string | Uint8Array;
|