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

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
- args?: Uint8Array[] | undefined;
482
+ maxFee?: AlgoAmount | undefined;
483
483
  sender: SendingAddress;
484
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
484
+ lease?: string | Uint8Array | undefined;
485
485
  rekeyTo?: ReadableAddress | undefined;
486
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
487
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
486
488
  note?: string | Uint8Array | undefined;
487
- lease?: string | Uint8Array | undefined;
488
489
  staticFee?: AlgoAmount | undefined;
489
490
  extraFee?: AlgoAmount | undefined;
490
- maxFee?: AlgoAmount | undefined;
491
491
  validityWindow?: number | bigint | undefined;
492
492
  firstValidRound?: bigint | undefined;
493
493
  lastValidRound?: bigint | undefined;
494
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
494
+ args?: Uint8Array[] | undefined;
495
495
  accountReferences?: ReadableAddress[] | undefined;
496
496
  appReferences?: bigint[] | undefined;
497
497
  assetReferences?: bigint[] | undefined;
498
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
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?: (BoxReference | BoxIdentifier)[] | undefined;
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?: (BoxReference | BoxIdentifier)[] | undefined;
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?: (BoxReference | BoxIdentifier)[] | undefined;
684
+ boxReferences?: (BoxIdentifier | BoxReference)[] | 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
- appId?: 0 | undefined;
755
+ maxFee?: AlgoAmount | undefined;
756
+ schema?: {
757
+ globalInts: number;
758
+ globalByteSlices: number;
759
+ localInts: number;
760
+ localByteSlices: number;
761
+ } | undefined;
756
762
  sender: SendingAddress;
757
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
763
+ lease?: string | Uint8Array | undefined;
758
764
  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;
759
770
  note?: string | Uint8Array | undefined;
760
- lease?: string | Uint8Array | undefined;
761
771
  staticFee?: AlgoAmount | undefined;
762
772
  extraFee?: AlgoAmount | undefined;
763
- maxFee?: AlgoAmount | undefined;
764
773
  validityWindow?: number | bigint | undefined;
765
774
  firstValidRound?: bigint | undefined;
766
775
  lastValidRound?: bigint | undefined;
767
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
768
776
  accountReferences?: ReadableAddress[] | undefined;
769
777
  appReferences?: bigint[] | undefined;
770
778
  assetReferences?: bigint[] | undefined;
771
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
779
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
772
780
  accessReferences?: ResourceReference[] | undefined;
773
781
  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?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
785
- args?: Uint8Array[] | undefined;
784
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
785
+ maxFee?: AlgoAmount | undefined;
786
786
  sender: SendingAddress;
787
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
787
+ lease?: string | Uint8Array | undefined;
788
788
  rekeyTo?: ReadableAddress | undefined;
789
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
790
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
789
791
  note?: string | Uint8Array | undefined;
790
- lease?: string | Uint8Array | undefined;
791
792
  staticFee?: AlgoAmount | undefined;
792
793
  extraFee?: AlgoAmount | undefined;
793
- maxFee?: AlgoAmount | undefined;
794
794
  validityWindow?: number | bigint | undefined;
795
795
  firstValidRound?: bigint | undefined;
796
796
  lastValidRound?: bigint | undefined;
797
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
797
+ args?: Uint8Array[] | undefined;
798
798
  accountReferences?: ReadableAddress[] | undefined;
799
799
  appReferences?: bigint[] | undefined;
800
800
  assetReferences?: bigint[] | undefined;
801
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
801
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
802
802
  accessReferences?: ResourceReference[] | undefined;
803
803
  rejectVersion?: number | undefined;
804
804
  appId?: 0 | undefined;
@@ -829,12 +829,12 @@ declare class AlgorandClientTransactionSender {
829
829
  accountReferences?: ReadableAddress[] | undefined;
830
830
  appReferences?: bigint[] | undefined;
831
831
  assetReferences?: bigint[] | undefined;
832
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
832
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
833
833
  accessReferences?: ResourceReference[] | undefined;
834
834
  rejectVersion?: number | undefined;
835
835
  approvalProgram: string | Uint8Array;
836
836
  clearStateProgram: string | Uint8Array;
837
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
837
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
838
838
  } & SendParams) => Promise<SendAppCreateTransactionResult>;
839
839
  /**
840
840
  * Update a smart contract via an ABI method.
@@ -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
- appId: bigint;
896
+ maxFee?: AlgoAmount | undefined;
897
897
  sender: SendingAddress;
898
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
898
+ lease?: string | Uint8Array | 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;
900
905
  note?: string | Uint8Array | undefined;
901
- lease?: string | Uint8Array | undefined;
902
906
  staticFee?: AlgoAmount | undefined;
903
907
  extraFee?: AlgoAmount | undefined;
904
- maxFee?: AlgoAmount | undefined;
905
908
  validityWindow?: number | bigint | undefined;
906
909
  firstValidRound?: bigint | undefined;
907
910
  lastValidRound?: bigint | undefined;
908
- onComplete?: OnApplicationComplete.UpdateApplication | undefined;
909
911
  accountReferences?: ReadableAddress[] | undefined;
910
912
  appReferences?: bigint[] | undefined;
911
913
  assetReferences?: bigint[] | undefined;
912
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
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 | ABIValue | TransactionWithSigner | AppMethodCall<{
919
- args?: Uint8Array[] | undefined;
918
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
919
+ maxFee?: AlgoAmount | undefined;
920
920
  sender: SendingAddress;
921
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
921
+ lease?: string | Uint8Array | undefined;
922
922
  rekeyTo?: ReadableAddress | undefined;
923
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
924
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
923
925
  note?: string | Uint8Array | undefined;
924
- lease?: string | Uint8Array | undefined;
925
926
  staticFee?: AlgoAmount | undefined;
926
927
  extraFee?: AlgoAmount | undefined;
927
- maxFee?: AlgoAmount | undefined;
928
928
  validityWindow?: number | bigint | undefined;
929
929
  firstValidRound?: bigint | undefined;
930
930
  lastValidRound?: bigint | undefined;
931
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
931
+ args?: Uint8Array[] | undefined;
932
932
  accountReferences?: ReadableAddress[] | undefined;
933
933
  appReferences?: bigint[] | undefined;
934
934
  assetReferences?: bigint[] | undefined;
935
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
935
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
936
936
  accessReferences?: ResourceReference[] | undefined;
937
937
  rejectVersion?: number | undefined;
938
938
  appId?: 0 | undefined;
@@ -963,12 +963,12 @@ declare class AlgorandClientTransactionSender {
963
963
  accountReferences?: ReadableAddress[] | undefined;
964
964
  appReferences?: bigint[] | undefined;
965
965
  assetReferences?: bigint[] | undefined;
966
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
966
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
967
967
  accessReferences?: ResourceReference[] | undefined;
968
968
  rejectVersion?: number | undefined;
969
969
  approvalProgram: string | Uint8Array;
970
970
  clearStateProgram: string | Uint8Array;
971
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
971
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
972
972
  } & SendParams) => Promise<SendAppUpdateTransactionResult>;
973
973
  /**
974
974
  * Delete a smart contract via an ABI method.
@@ -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
- appId: bigint;
1028
+ maxFee?: AlgoAmount | undefined;
1029
1029
  sender: SendingAddress;
1030
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1030
+ lease?: string | Uint8Array | undefined;
1031
1031
  rekeyTo?: ReadableAddress | undefined;
1032
+ appId: bigint;
1033
+ onComplete?: OnApplicationComplete.DeleteApplication | undefined;
1034
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1032
1035
  note?: string | Uint8Array | undefined;
1033
- lease?: string | Uint8Array | undefined;
1034
1036
  staticFee?: AlgoAmount | undefined;
1035
1037
  extraFee?: AlgoAmount | undefined;
1036
- maxFee?: AlgoAmount | undefined;
1037
1038
  validityWindow?: number | bigint | undefined;
1038
1039
  firstValidRound?: bigint | undefined;
1039
1040
  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?: (BoxReference | BoxIdentifier)[] | undefined;
1044
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1045
1045
  accessReferences?: ResourceReference[] | undefined;
1046
1046
  rejectVersion?: number | undefined;
1047
1047
  method: ABIMethod;
1048
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
1049
- args?: Uint8Array[] | undefined;
1048
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
1049
+ maxFee?: AlgoAmount | undefined;
1050
1050
  sender: SendingAddress;
1051
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1051
+ lease?: string | Uint8Array | undefined;
1052
1052
  rekeyTo?: ReadableAddress | undefined;
1053
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1054
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1053
1055
  note?: string | Uint8Array | undefined;
1054
- lease?: string | Uint8Array | undefined;
1055
1056
  staticFee?: AlgoAmount | undefined;
1056
1057
  extraFee?: AlgoAmount | undefined;
1057
- maxFee?: AlgoAmount | undefined;
1058
1058
  validityWindow?: number | bigint | undefined;
1059
1059
  firstValidRound?: bigint | undefined;
1060
1060
  lastValidRound?: bigint | undefined;
1061
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1061
+ args?: Uint8Array[] | undefined;
1062
1062
  accountReferences?: ReadableAddress[] | undefined;
1063
1063
  appReferences?: bigint[] | undefined;
1064
1064
  assetReferences?: bigint[] | undefined;
1065
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1065
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1066
1066
  accessReferences?: ResourceReference[] | undefined;
1067
1067
  rejectVersion?: number | undefined;
1068
1068
  appId?: 0 | undefined;
@@ -1093,12 +1093,12 @@ declare class AlgorandClientTransactionSender {
1093
1093
  accountReferences?: ReadableAddress[] | undefined;
1094
1094
  appReferences?: bigint[] | undefined;
1095
1095
  assetReferences?: bigint[] | undefined;
1096
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1096
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1097
1097
  accessReferences?: ResourceReference[] | undefined;
1098
1098
  rejectVersion?: number | undefined;
1099
1099
  approvalProgram: string | Uint8Array;
1100
1100
  clearStateProgram: string | Uint8Array;
1101
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
1101
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
1102
1102
  } & SendParams) => Promise<SendAppTransactionResult>;
1103
1103
  /**
1104
1104
  * Call a smart contract via an ABI method.
@@ -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
- appId: bigint;
1158
+ maxFee?: AlgoAmount | undefined;
1159
1159
  sender: SendingAddress;
1160
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1160
+ lease?: string | Uint8Array | 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;
1162
1165
  note?: string | Uint8Array | undefined;
1163
- lease?: string | Uint8Array | undefined;
1164
1166
  staticFee?: AlgoAmount | undefined;
1165
1167
  extraFee?: AlgoAmount | undefined;
1166
- maxFee?: AlgoAmount | undefined;
1167
1168
  validityWindow?: number | bigint | undefined;
1168
1169
  firstValidRound?: bigint | undefined;
1169
1170
  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?: (BoxReference | BoxIdentifier)[] | undefined;
1174
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1175
1175
  accessReferences?: ResourceReference[] | undefined;
1176
1176
  rejectVersion?: number | undefined;
1177
1177
  method: ABIMethod;
1178
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
1179
- args?: Uint8Array[] | undefined;
1178
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
1179
+ maxFee?: AlgoAmount | undefined;
1180
1180
  sender: SendingAddress;
1181
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1181
+ lease?: string | Uint8Array | undefined;
1182
1182
  rekeyTo?: ReadableAddress | undefined;
1183
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1184
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1183
1185
  note?: string | Uint8Array | undefined;
1184
- lease?: string | Uint8Array | undefined;
1185
1186
  staticFee?: AlgoAmount | undefined;
1186
1187
  extraFee?: AlgoAmount | undefined;
1187
- maxFee?: AlgoAmount | undefined;
1188
1188
  validityWindow?: number | bigint | undefined;
1189
1189
  firstValidRound?: bigint | undefined;
1190
1190
  lastValidRound?: bigint | undefined;
1191
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
1191
+ args?: Uint8Array[] | undefined;
1192
1192
  accountReferences?: ReadableAddress[] | undefined;
1193
1193
  appReferences?: bigint[] | undefined;
1194
1194
  assetReferences?: bigint[] | undefined;
1195
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1195
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1196
1196
  accessReferences?: ResourceReference[] | undefined;
1197
1197
  rejectVersion?: number | undefined;
1198
1198
  appId?: 0 | undefined;
@@ -1223,12 +1223,12 @@ declare class AlgorandClientTransactionSender {
1223
1223
  accountReferences?: ReadableAddress[] | undefined;
1224
1224
  appReferences?: bigint[] | undefined;
1225
1225
  assetReferences?: bigint[] | undefined;
1226
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1226
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1227
1227
  accessReferences?: ResourceReference[] | undefined;
1228
1228
  rejectVersion?: number | undefined;
1229
1229
  approvalProgram: string | Uint8Array;
1230
1230
  clearStateProgram: string | Uint8Array;
1231
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
1231
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
1232
1232
  } & SendParams) => Promise<SendAppTransactionResult>;
1233
1233
  /**
1234
1234
  * Register an online key.