@algorandfoundation/algokit-utils 10.0.0-alpha.16 → 10.0.0-alpha.18

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.
@@ -479,23 +479,23 @@ declare class AlgorandClientTransactionSender {
479
479
  * @returns The result of the app create transaction and the transaction that was sent
480
480
  */
481
481
  appCreate: (params: {
482
- maxFee?: AlgoAmount | undefined;
483
482
  sender: SendingAddress;
484
- lease?: string | Uint8Array | undefined;
483
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
485
484
  rekeyTo?: ReadableAddress | undefined;
486
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
487
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
488
485
  note?: string | Uint8Array | undefined;
486
+ lease?: string | Uint8Array | undefined;
489
487
  staticFee?: AlgoAmount | undefined;
490
488
  extraFee?: AlgoAmount | undefined;
489
+ maxFee?: AlgoAmount | undefined;
491
490
  validityWindow?: number | bigint | undefined;
492
491
  firstValidRound?: bigint | undefined;
493
492
  lastValidRound?: bigint | undefined;
493
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
494
494
  args?: Uint8Array[] | undefined;
495
495
  accountReferences?: ReadableAddress[] | undefined;
496
496
  appReferences?: bigint[] | undefined;
497
497
  assetReferences?: bigint[] | undefined;
498
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
498
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
499
499
  accessReferences?: ResourceReference[] | undefined;
500
500
  rejectVersion?: number | undefined;
501
501
  appId?: 0 | undefined;
@@ -555,7 +555,7 @@ declare class AlgorandClientTransactionSender {
555
555
  */
556
556
  appUpdate: (params: {
557
557
  sender: SendingAddress;
558
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
558
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
559
559
  rekeyTo?: ReadableAddress | undefined;
560
560
  note?: string | Uint8Array | undefined;
561
561
  lease?: string | Uint8Array | 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?: (BoxIdentifier | BoxReference)[] | undefined;
574
+ boxReferences?: (BoxReference | BoxIdentifier)[] | 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?: (BoxIdentifier | BoxReference)[] | undefined;
629
+ boxReferences?: (BoxReference | BoxIdentifier)[] | 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?: (BoxIdentifier | BoxReference)[] | undefined;
684
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
685
685
  accessReferences?: ResourceReference[] | undefined;
686
686
  rejectVersion?: number | undefined;
687
687
  } & {
@@ -752,53 +752,53 @@ declare class AlgorandClientTransactionSender {
752
752
  * @returns The result of the application ABI method create transaction and the transaction that was sent
753
753
  */
754
754
  appCreateMethodCall: (params: {
755
- maxFee?: AlgoAmount | undefined;
756
- schema?: {
757
- globalInts: number;
758
- globalByteSlices: number;
759
- localInts: number;
760
- localByteSlices: number;
761
- } | undefined;
755
+ appId?: 0 | undefined;
762
756
  sender: SendingAddress;
763
- lease?: string | Uint8Array | undefined;
757
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
764
758
  rekeyTo?: ReadableAddress | undefined;
765
- approvalProgram: string | Uint8Array;
766
- clearStateProgram: string | Uint8Array;
767
- appId?: 0 | undefined;
768
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
769
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
770
759
  note?: string | Uint8Array | undefined;
760
+ lease?: string | Uint8Array | undefined;
771
761
  staticFee?: AlgoAmount | undefined;
772
762
  extraFee?: AlgoAmount | undefined;
763
+ maxFee?: AlgoAmount | undefined;
773
764
  validityWindow?: number | bigint | undefined;
774
765
  firstValidRound?: bigint | undefined;
775
766
  lastValidRound?: bigint | undefined;
767
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
776
768
  accountReferences?: ReadableAddress[] | undefined;
777
769
  appReferences?: bigint[] | undefined;
778
770
  assetReferences?: bigint[] | undefined;
779
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
771
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
780
772
  accessReferences?: ResourceReference[] | undefined;
781
773
  rejectVersion?: number | undefined;
774
+ approvalProgram: string | Uint8Array;
775
+ clearStateProgram: string | Uint8Array;
776
+ schema?: {
777
+ globalInts: number;
778
+ globalByteSlices: number;
779
+ localInts: number;
780
+ localByteSlices: number;
781
+ } | undefined;
782
782
  extraProgramPages?: number | undefined;
783
783
  method: ABIMethod;
784
- args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
785
- maxFee?: AlgoAmount | undefined;
784
+ args?: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
786
785
  sender: SendingAddress;
787
- lease?: string | Uint8Array | undefined;
786
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
788
787
  rekeyTo?: ReadableAddress | undefined;
789
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
790
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
791
788
  note?: string | Uint8Array | undefined;
789
+ lease?: string | Uint8Array | undefined;
792
790
  staticFee?: AlgoAmount | undefined;
793
791
  extraFee?: AlgoAmount | undefined;
792
+ maxFee?: AlgoAmount | undefined;
794
793
  validityWindow?: number | bigint | undefined;
795
794
  firstValidRound?: bigint | undefined;
796
795
  lastValidRound?: bigint | undefined;
796
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
797
797
  args?: Uint8Array[] | undefined;
798
798
  accountReferences?: ReadableAddress[] | undefined;
799
799
  appReferences?: bigint[] | undefined;
800
800
  assetReferences?: bigint[] | undefined;
801
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
801
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
802
802
  accessReferences?: ResourceReference[] | undefined;
803
803
  rejectVersion?: number | undefined;
804
804
  appId?: 0 | undefined;
@@ -813,7 +813,7 @@ declare class AlgorandClientTransactionSender {
813
813
  extraProgramPages?: number | undefined;
814
814
  }> | AppMethodCall<{
815
815
  sender: SendingAddress;
816
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
816
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
817
817
  rekeyTo?: ReadableAddress | undefined;
818
818
  note?: string | Uint8Array | undefined;
819
819
  lease?: string | Uint8Array | 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?: (BoxIdentifier | BoxReference)[] | undefined;
832
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
833
833
  accessReferences?: ResourceReference[] | undefined;
834
834
  rejectVersion?: number | undefined;
835
835
  approvalProgram: string | Uint8Array;
@@ -893,46 +893,46 @@ declare class AlgorandClientTransactionSender {
893
893
  * @returns The result of the application ABI method update transaction and the transaction that was sent
894
894
  */
895
895
  appUpdateMethodCall: (params: {
896
- maxFee?: AlgoAmount | undefined;
896
+ appId: bigint;
897
897
  sender: SendingAddress;
898
- lease?: string | Uint8Array | undefined;
898
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
899
899
  rekeyTo?: ReadableAddress | undefined;
900
- approvalProgram: string | Uint8Array;
901
- clearStateProgram: string | Uint8Array;
902
- appId: bigint;
903
- onComplete?: OnApplicationComplete.UpdateApplication | undefined;
904
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
905
900
  note?: string | Uint8Array | undefined;
901
+ lease?: string | Uint8Array | undefined;
906
902
  staticFee?: AlgoAmount | undefined;
907
903
  extraFee?: AlgoAmount | undefined;
904
+ maxFee?: AlgoAmount | undefined;
908
905
  validityWindow?: number | bigint | undefined;
909
906
  firstValidRound?: bigint | undefined;
910
907
  lastValidRound?: bigint | undefined;
908
+ onComplete?: OnApplicationComplete.UpdateApplication | undefined;
911
909
  accountReferences?: ReadableAddress[] | undefined;
912
910
  appReferences?: bigint[] | undefined;
913
911
  assetReferences?: bigint[] | undefined;
914
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
912
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
915
913
  accessReferences?: ResourceReference[] | undefined;
916
914
  rejectVersion?: number | undefined;
915
+ approvalProgram: string | Uint8Array;
916
+ clearStateProgram: string | Uint8Array;
917
917
  method: ABIMethod;
918
- args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
919
- maxFee?: AlgoAmount | undefined;
918
+ args?: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
920
919
  sender: SendingAddress;
921
- lease?: string | Uint8Array | undefined;
920
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
922
921
  rekeyTo?: ReadableAddress | undefined;
923
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
924
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
925
922
  note?: string | Uint8Array | undefined;
923
+ lease?: string | Uint8Array | undefined;
926
924
  staticFee?: AlgoAmount | undefined;
927
925
  extraFee?: AlgoAmount | undefined;
926
+ maxFee?: AlgoAmount | undefined;
928
927
  validityWindow?: number | bigint | undefined;
929
928
  firstValidRound?: bigint | undefined;
930
929
  lastValidRound?: bigint | undefined;
930
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
931
931
  args?: Uint8Array[] | undefined;
932
932
  accountReferences?: ReadableAddress[] | undefined;
933
933
  appReferences?: bigint[] | undefined;
934
934
  assetReferences?: bigint[] | undefined;
935
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
935
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
936
936
  accessReferences?: ResourceReference[] | undefined;
937
937
  rejectVersion?: number | undefined;
938
938
  appId?: 0 | undefined;
@@ -947,7 +947,7 @@ declare class AlgorandClientTransactionSender {
947
947
  extraProgramPages?: number | undefined;
948
948
  }> | AppMethodCall<{
949
949
  sender: SendingAddress;
950
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
950
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
951
951
  rekeyTo?: ReadableAddress | undefined;
952
952
  note?: string | Uint8Array | undefined;
953
953
  lease?: string | Uint8Array | 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?: (BoxIdentifier | BoxReference)[] | undefined;
966
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
967
967
  accessReferences?: ResourceReference[] | undefined;
968
968
  rejectVersion?: number | undefined;
969
969
  approvalProgram: string | Uint8Array;
@@ -1025,44 +1025,44 @@ declare class AlgorandClientTransactionSender {
1025
1025
  * @returns The result of the application ABI method delete transaction and the transaction that was sent
1026
1026
  */
1027
1027
  appDeleteMethodCall: (params: {
1028
- maxFee?: AlgoAmount | undefined;
1028
+ appId: bigint;
1029
1029
  sender: SendingAddress;
1030
- lease?: string | Uint8Array | undefined;
1030
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1031
1031
  rekeyTo?: ReadableAddress | undefined;
1032
- appId: bigint;
1033
- onComplete?: OnApplicationComplete.DeleteApplication | undefined;
1034
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1035
1032
  note?: string | Uint8Array | undefined;
1033
+ lease?: string | Uint8Array | undefined;
1036
1034
  staticFee?: AlgoAmount | undefined;
1037
1035
  extraFee?: AlgoAmount | undefined;
1036
+ maxFee?: AlgoAmount | undefined;
1038
1037
  validityWindow?: number | bigint | undefined;
1039
1038
  firstValidRound?: bigint | undefined;
1040
1039
  lastValidRound?: bigint | undefined;
1040
+ onComplete?: OnApplicationComplete.DeleteApplication | undefined;
1041
1041
  accountReferences?: ReadableAddress[] | undefined;
1042
1042
  appReferences?: bigint[] | undefined;
1043
1043
  assetReferences?: bigint[] | undefined;
1044
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1044
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1045
1045
  accessReferences?: ResourceReference[] | undefined;
1046
1046
  rejectVersion?: number | undefined;
1047
1047
  method: ABIMethod;
1048
- args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
1049
- maxFee?: AlgoAmount | undefined;
1048
+ args?: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
1050
1049
  sender: SendingAddress;
1051
- lease?: string | Uint8Array | undefined;
1050
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1052
1051
  rekeyTo?: ReadableAddress | undefined;
1053
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1054
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1055
1052
  note?: string | Uint8Array | undefined;
1053
+ lease?: string | Uint8Array | undefined;
1056
1054
  staticFee?: AlgoAmount | undefined;
1057
1055
  extraFee?: AlgoAmount | undefined;
1056
+ maxFee?: AlgoAmount | undefined;
1058
1057
  validityWindow?: number | bigint | undefined;
1059
1058
  firstValidRound?: bigint | undefined;
1060
1059
  lastValidRound?: bigint | undefined;
1060
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1061
1061
  args?: Uint8Array[] | undefined;
1062
1062
  accountReferences?: ReadableAddress[] | undefined;
1063
1063
  appReferences?: bigint[] | undefined;
1064
1064
  assetReferences?: bigint[] | undefined;
1065
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1065
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1066
1066
  accessReferences?: ResourceReference[] | undefined;
1067
1067
  rejectVersion?: number | undefined;
1068
1068
  appId?: 0 | undefined;
@@ -1077,7 +1077,7 @@ declare class AlgorandClientTransactionSender {
1077
1077
  extraProgramPages?: number | undefined;
1078
1078
  }> | AppMethodCall<{
1079
1079
  sender: SendingAddress;
1080
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1080
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1081
1081
  rekeyTo?: ReadableAddress | undefined;
1082
1082
  note?: string | Uint8Array | undefined;
1083
1083
  lease?: string | Uint8Array | 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?: (BoxIdentifier | BoxReference)[] | undefined;
1096
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1097
1097
  accessReferences?: ResourceReference[] | undefined;
1098
1098
  rejectVersion?: number | undefined;
1099
1099
  approvalProgram: string | Uint8Array;
@@ -1155,44 +1155,44 @@ declare class AlgorandClientTransactionSender {
1155
1155
  * @returns The result of the application ABI method call transaction and the transaction that was sent
1156
1156
  */
1157
1157
  appCallMethodCall: (params: {
1158
- maxFee?: AlgoAmount | undefined;
1158
+ appId: bigint;
1159
1159
  sender: SendingAddress;
1160
- lease?: string | Uint8Array | undefined;
1160
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1161
1161
  rekeyTo?: ReadableAddress | undefined;
1162
- appId: bigint;
1163
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
1164
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1165
1162
  note?: string | Uint8Array | undefined;
1163
+ lease?: string | Uint8Array | undefined;
1166
1164
  staticFee?: AlgoAmount | undefined;
1167
1165
  extraFee?: AlgoAmount | undefined;
1166
+ maxFee?: AlgoAmount | undefined;
1168
1167
  validityWindow?: number | bigint | undefined;
1169
1168
  firstValidRound?: bigint | undefined;
1170
1169
  lastValidRound?: bigint | undefined;
1170
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
1171
1171
  accountReferences?: ReadableAddress[] | undefined;
1172
1172
  appReferences?: bigint[] | undefined;
1173
1173
  assetReferences?: bigint[] | undefined;
1174
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1174
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1175
1175
  accessReferences?: ResourceReference[] | undefined;
1176
1176
  rejectVersion?: number | undefined;
1177
1177
  method: ABIMethod;
1178
- args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
1179
- maxFee?: AlgoAmount | undefined;
1178
+ args?: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
1180
1179
  sender: SendingAddress;
1181
- lease?: string | Uint8Array | undefined;
1180
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1182
1181
  rekeyTo?: ReadableAddress | undefined;
1183
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1184
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1185
1182
  note?: string | Uint8Array | undefined;
1183
+ lease?: string | Uint8Array | undefined;
1186
1184
  staticFee?: AlgoAmount | undefined;
1187
1185
  extraFee?: AlgoAmount | undefined;
1186
+ maxFee?: AlgoAmount | undefined;
1188
1187
  validityWindow?: number | bigint | undefined;
1189
1188
  firstValidRound?: bigint | undefined;
1190
1189
  lastValidRound?: bigint | undefined;
1190
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1191
1191
  args?: Uint8Array[] | undefined;
1192
1192
  accountReferences?: ReadableAddress[] | undefined;
1193
1193
  appReferences?: bigint[] | undefined;
1194
1194
  assetReferences?: bigint[] | undefined;
1195
- boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1195
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1196
1196
  accessReferences?: ResourceReference[] | undefined;
1197
1197
  rejectVersion?: number | undefined;
1198
1198
  appId?: 0 | undefined;
@@ -1207,7 +1207,7 @@ declare class AlgorandClientTransactionSender {
1207
1207
  extraProgramPages?: number | undefined;
1208
1208
  }> | AppMethodCall<{
1209
1209
  sender: SendingAddress;
1210
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1210
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1211
1211
  rekeyTo?: ReadableAddress | undefined;
1212
1212
  note?: string | Uint8Array | undefined;
1213
1213
  lease?: string | Uint8Array | 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?: (BoxIdentifier | BoxReference)[] | undefined;
1226
+ boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1227
1227
  accessReferences?: ResourceReference[] | undefined;
1228
1228
  rejectVersion?: number | undefined;
1229
1229
  approvalProgram: string | Uint8Array;