@algorandfoundation/algokit-utils 10.0.0-alpha.11 → 10.0.0-alpha.12

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,7 +479,7 @@ 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
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
482
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
483
483
  sender: SendingAddress;
484
484
  rekeyTo?: ReadableAddress | undefined;
485
485
  note?: string | Uint8Array | undefined;
@@ -495,7 +495,7 @@ declare class AlgorandClientTransactionSender {
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;
@@ -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?: (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,7 +752,7 @@ 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
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
755
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
756
756
  sender: SendingAddress;
757
757
  rekeyTo?: ReadableAddress | undefined;
758
758
  note?: string | Uint8Array | undefined;
@@ -763,26 +763,26 @@ declare class AlgorandClientTransactionSender {
763
763
  validityWindow?: number | bigint | undefined;
764
764
  firstValidRound?: bigint | undefined;
765
765
  lastValidRound?: bigint | undefined;
766
+ schema?: {
767
+ globalInts: number;
768
+ globalByteSlices: number;
769
+ localInts: number;
770
+ localByteSlices: number;
771
+ } | undefined;
772
+ approvalProgram: string | Uint8Array;
773
+ clearStateProgram: string | Uint8Array;
766
774
  appId?: 0 | undefined;
767
775
  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 | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
785
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
784
+ args?: (Transaction | ABIValue | TransactionWithSigner | Promise<Transaction> | AppMethodCall<{
785
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
786
786
  sender: SendingAddress;
787
787
  rekeyTo?: ReadableAddress | undefined;
788
788
  note?: string | Uint8Array | 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?: (BoxReference | BoxIdentifier)[] | undefined;
801
+ boxReferences?: (BoxIdentifier | BoxReference)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
832
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
833
833
  accessReferences?: ResourceReference[] | undefined;
834
834
  rejectVersion?: number | undefined;
835
835
  approvalProgram: string | Uint8Array;
@@ -893,7 +893,7 @@ 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
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
896
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
897
897
  sender: SendingAddress;
898
898
  rekeyTo?: ReadableAddress | undefined;
899
899
  note?: string | Uint8Array | undefined;
@@ -904,19 +904,19 @@ 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?: (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 | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
919
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
918
+ args?: (Transaction | ABIValue | TransactionWithSigner | Promise<Transaction> | AppMethodCall<{
919
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
920
920
  sender: SendingAddress;
921
921
  rekeyTo?: ReadableAddress | undefined;
922
922
  note?: string | Uint8Array | 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?: (BoxReference | BoxIdentifier)[] | undefined;
935
+ boxReferences?: (BoxIdentifier | BoxReference)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
966
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
967
967
  accessReferences?: ResourceReference[] | undefined;
968
968
  rejectVersion?: number | undefined;
969
969
  approvalProgram: string | Uint8Array;
@@ -1025,7 +1025,7 @@ 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
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1028
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1029
1029
  sender: SendingAddress;
1030
1030
  rekeyTo?: ReadableAddress | undefined;
1031
1031
  note?: string | Uint8Array | undefined;
@@ -1041,12 +1041,12 @@ declare class AlgorandClientTransactionSender {
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 | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
1049
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1048
+ args?: (Transaction | ABIValue | TransactionWithSigner | Promise<Transaction> | AppMethodCall<{
1049
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1050
1050
  sender: SendingAddress;
1051
1051
  rekeyTo?: ReadableAddress | undefined;
1052
1052
  note?: string | Uint8Array | 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?: (BoxReference | BoxIdentifier)[] | undefined;
1065
+ boxReferences?: (BoxIdentifier | BoxReference)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
1096
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1097
1097
  accessReferences?: ResourceReference[] | undefined;
1098
1098
  rejectVersion?: number | undefined;
1099
1099
  approvalProgram: string | Uint8Array;
@@ -1155,7 +1155,7 @@ 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
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1158
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1159
1159
  sender: SendingAddress;
1160
1160
  rekeyTo?: ReadableAddress | undefined;
1161
1161
  note?: string | Uint8Array | undefined;
@@ -1171,12 +1171,12 @@ declare class AlgorandClientTransactionSender {
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 | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
1179
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1178
+ args?: (Transaction | ABIValue | TransactionWithSigner | Promise<Transaction> | AppMethodCall<{
1179
+ signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
1180
1180
  sender: SendingAddress;
1181
1181
  rekeyTo?: ReadableAddress | undefined;
1182
1182
  note?: string | Uint8Array | 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?: (BoxReference | BoxIdentifier)[] | undefined;
1195
+ boxReferences?: (BoxIdentifier | BoxReference)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
1226
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1227
1227
  accessReferences?: ResourceReference[] | undefined;
1228
1228
  rejectVersion?: number | undefined;
1229
1229
  approvalProgram: string | Uint8Array;