@algorandfoundation/algokit-utils 10.0.0-alpha.28 → 10.0.0-alpha.29
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/common/src/address.d.ts +0 -1
- package/packages/common/src/address.js +4 -3
- package/packages/common/src/address.js.map +1 -1
- package/packages/common/src/address.mjs +4 -3
- package/packages/common/src/address.mjs.map +1 -1
- package/packages/transact/src/transactions/transaction.d.ts +0 -1
- package/packages/transact/src/transactions/transaction.js +4 -3
- package/packages/transact/src/transactions/transaction.js.map +1 -1
- package/packages/transact/src/transactions/transaction.mjs +4 -3
- package/packages/transact/src/transactions/transaction.mjs.map +1 -1
- package/types/algorand-client-transaction-creator.d.ts +27 -27
- package/types/algorand-client-transaction-sender.d.ts +29 -29
- package/types/app-client.d.ts +59 -59
- package/types/app-factory.d.ts +30 -30
|
@@ -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?: (BoxReference | BoxIdentifier)[] | 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?: (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?: (
|
|
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?: (
|
|
684
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
685
685
|
accessReferences?: ResourceReference[] | undefined;
|
|
686
686
|
rejectVersion?: number | undefined;
|
|
687
687
|
} & {
|
|
@@ -763,15 +763,12 @@ 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;
|
|
768
766
|
appId?: 0 | undefined;
|
|
769
|
-
extraProgramPages?: number | undefined;
|
|
770
767
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
771
768
|
accountReferences?: ReadableAddress[] | undefined;
|
|
772
769
|
appReferences?: bigint[] | undefined;
|
|
773
770
|
assetReferences?: bigint[] | undefined;
|
|
774
|
-
boxReferences?: (
|
|
771
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
775
772
|
accessReferences?: ResourceReference[] | undefined;
|
|
776
773
|
rejectVersion?: number | undefined;
|
|
777
774
|
schema?: {
|
|
@@ -780,8 +777,11 @@ declare class AlgorandClientTransactionSender {
|
|
|
780
777
|
localInts: number;
|
|
781
778
|
localByteSlices: number;
|
|
782
779
|
} | undefined;
|
|
780
|
+
extraProgramPages?: number | undefined;
|
|
781
|
+
approvalProgram: string | Uint8Array;
|
|
782
|
+
clearStateProgram: string | Uint8Array;
|
|
783
783
|
method: ABIMethod;
|
|
784
|
-
args?: (Transaction | ABIValue |
|
|
784
|
+
args?: (Transaction | ABIValue | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
802
802
|
accessReferences?: ResourceReference[] | undefined;
|
|
803
803
|
rejectVersion?: number | undefined;
|
|
804
804
|
appId?: 0 | undefined;
|
|
@@ -811,7 +811,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
811
811
|
localByteSlices: number;
|
|
812
812
|
} | undefined;
|
|
813
813
|
extraProgramPages?: number | undefined;
|
|
814
|
-
}> | AppMethodCall<{
|
|
814
|
+
}> | Promise<Transaction> | AppMethodCall<{
|
|
815
815
|
sender: SendingAddress;
|
|
816
816
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
817
817
|
rekeyTo?: ReadableAddress | 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?: (BoxReference | BoxIdentifier)[] | 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;
|
|
909
907
|
appId: bigint;
|
|
910
908
|
onComplete?: OnApplicationComplete.UpdateApplication | undefined;
|
|
911
909
|
accountReferences?: ReadableAddress[] | undefined;
|
|
912
910
|
appReferences?: bigint[] | undefined;
|
|
913
911
|
assetReferences?: bigint[] | undefined;
|
|
914
|
-
boxReferences?: (
|
|
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?: (Transaction | ABIValue |
|
|
918
|
+
args?: (Transaction | ABIValue | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
936
936
|
accessReferences?: ResourceReference[] | undefined;
|
|
937
937
|
rejectVersion?: number | undefined;
|
|
938
938
|
appId?: 0 | undefined;
|
|
@@ -945,7 +945,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
945
945
|
localByteSlices: number;
|
|
946
946
|
} | undefined;
|
|
947
947
|
extraProgramPages?: number | undefined;
|
|
948
|
-
}> | AppMethodCall<{
|
|
948
|
+
}> | Promise<Transaction> | AppMethodCall<{
|
|
949
949
|
sender: SendingAddress;
|
|
950
950
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
951
951
|
rekeyTo?: ReadableAddress | 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?: (BoxReference | BoxIdentifier)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1045
1045
|
accessReferences?: ResourceReference[] | undefined;
|
|
1046
1046
|
rejectVersion?: number | undefined;
|
|
1047
1047
|
method: ABIMethod;
|
|
1048
|
-
args?: (Transaction | ABIValue |
|
|
1048
|
+
args?: (Transaction | ABIValue | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1066
1066
|
accessReferences?: ResourceReference[] | undefined;
|
|
1067
1067
|
rejectVersion?: number | undefined;
|
|
1068
1068
|
appId?: 0 | undefined;
|
|
@@ -1075,7 +1075,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1075
1075
|
localByteSlices: number;
|
|
1076
1076
|
} | undefined;
|
|
1077
1077
|
extraProgramPages?: number | undefined;
|
|
1078
|
-
}> | AppMethodCall<{
|
|
1078
|
+
}> | Promise<Transaction> | AppMethodCall<{
|
|
1079
1079
|
sender: SendingAddress;
|
|
1080
1080
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1081
1081
|
rekeyTo?: ReadableAddress | 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?: (BoxReference | BoxIdentifier)[] | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1175
1175
|
accessReferences?: ResourceReference[] | undefined;
|
|
1176
1176
|
rejectVersion?: number | undefined;
|
|
1177
1177
|
method: ABIMethod;
|
|
1178
|
-
args?: (Transaction | ABIValue |
|
|
1178
|
+
args?: (Transaction | ABIValue | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1196
1196
|
accessReferences?: ResourceReference[] | undefined;
|
|
1197
1197
|
rejectVersion?: number | undefined;
|
|
1198
1198
|
appId?: 0 | undefined;
|
|
@@ -1205,7 +1205,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1205
1205
|
localByteSlices: number;
|
|
1206
1206
|
} | undefined;
|
|
1207
1207
|
extraProgramPages?: number | undefined;
|
|
1208
|
-
}> | AppMethodCall<{
|
|
1208
|
+
}> | Promise<Transaction> | AppMethodCall<{
|
|
1209
1209
|
sender: SendingAddress;
|
|
1210
1210
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1211
1211
|
rekeyTo?: ReadableAddress | 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?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1227
1227
|
accessReferences?: ResourceReference[] | undefined;
|
|
1228
1228
|
rejectVersion?: number | undefined;
|
|
1229
1229
|
approvalProgram: string | Uint8Array;
|