@algorandfoundation/algokit-utils 9.2.1-beta.3 → 9.2.1
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
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"**"
|
|
7
7
|
],
|
|
8
8
|
"name": "@algorandfoundation/algokit-utils",
|
|
9
|
-
"version": "9.2.1
|
|
9
|
+
"version": "9.2.1",
|
|
10
10
|
"private": false,
|
|
11
11
|
"description": "A set of core Algorand utilities written in TypeScript and released via npm that make it easier to build solutions on Algorand.",
|
|
12
12
|
"author": "Algorand Foundation",
|
|
@@ -828,7 +828,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
828
828
|
*/
|
|
829
829
|
appUpdateMethodCall: (params: {
|
|
830
830
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
831
|
-
appId: bigint;
|
|
832
831
|
sender: string | Address;
|
|
833
832
|
rekeyTo?: (string | Address) | undefined;
|
|
834
833
|
note?: (Uint8Array | string) | undefined;
|
|
@@ -839,6 +838,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
839
838
|
validityWindow?: number | bigint | undefined;
|
|
840
839
|
firstValidRound?: bigint | undefined;
|
|
841
840
|
lastValidRound?: bigint | undefined;
|
|
841
|
+
appId: bigint;
|
|
842
842
|
onComplete?: algosdk.OnApplicationComplete.UpdateApplicationOC | undefined;
|
|
843
843
|
accountReferences?: (string | Address)[] | undefined;
|
|
844
844
|
appReferences?: bigint[] | undefined;
|
|
@@ -908,7 +908,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
908
908
|
*/
|
|
909
909
|
appDeleteMethodCall: (params: {
|
|
910
910
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
911
|
-
appId: bigint;
|
|
912
911
|
sender: string | Address;
|
|
913
912
|
rekeyTo?: (string | Address) | undefined;
|
|
914
913
|
note?: (Uint8Array | string) | undefined;
|
|
@@ -919,6 +918,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
919
918
|
validityWindow?: number | bigint | undefined;
|
|
920
919
|
firstValidRound?: bigint | undefined;
|
|
921
920
|
lastValidRound?: bigint | undefined;
|
|
921
|
+
appId: bigint;
|
|
922
922
|
onComplete?: algosdk.OnApplicationComplete.DeleteApplicationOC | undefined;
|
|
923
923
|
accountReferences?: (string | Address)[] | undefined;
|
|
924
924
|
appReferences?: bigint[] | undefined;
|
|
@@ -986,7 +986,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
986
986
|
*/
|
|
987
987
|
appCallMethodCall: (params: {
|
|
988
988
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
989
|
-
appId: bigint;
|
|
990
989
|
sender: string | Address;
|
|
991
990
|
rekeyTo?: (string | Address) | undefined;
|
|
992
991
|
note?: (Uint8Array | string) | undefined;
|
|
@@ -997,6 +996,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
997
996
|
validityWindow?: number | bigint | undefined;
|
|
998
997
|
firstValidRound?: bigint | undefined;
|
|
999
998
|
lastValidRound?: bigint | undefined;
|
|
999
|
+
appId: bigint;
|
|
1000
1000
|
onComplete?: algosdk.OnApplicationComplete.NoOpOC | algosdk.OnApplicationComplete.OptInOC | algosdk.OnApplicationComplete.CloseOutOC | algosdk.OnApplicationComplete.DeleteApplicationOC | undefined;
|
|
1001
1001
|
accountReferences?: (string | Address)[] | undefined;
|
|
1002
1002
|
appReferences?: bigint[] | undefined;
|
package/types/app-client.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ declare class AppClient {
|
|
|
419
419
|
signer: TransactionSignerAccount | algosdk.TransactionSigner | undefined;
|
|
420
420
|
method: Arc56Method;
|
|
421
421
|
onComplete: algosdk.OnApplicationComplete.UpdateApplicationOC;
|
|
422
|
-
args: (algosdk.Transaction |
|
|
422
|
+
args: (algosdk.Transaction | algosdk.ABIValue | algosdk.TransactionWithSigner | Promise<algosdk.Transaction> | AppMethodCall<{
|
|
423
423
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
424
424
|
sender: string | Address;
|
|
425
425
|
rekeyTo?: (string | Address) | undefined;
|
package/types/app-factory.d.ts
CHANGED
|
@@ -190,7 +190,7 @@ declare class AppFactory {
|
|
|
190
190
|
sender: algosdk.Address;
|
|
191
191
|
signer: TransactionSignerAccount | algosdk.TransactionSigner | undefined;
|
|
192
192
|
method: Arc56Method;
|
|
193
|
-
args: (algosdk.Transaction |
|
|
193
|
+
args: (algosdk.Transaction | algosdk.ABIValue | algosdk.TransactionWithSigner | Promise<algosdk.Transaction> | AppMethodCall<{
|
|
194
194
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
195
195
|
sender: string | Address;
|
|
196
196
|
rekeyTo?: (string | Address) | undefined;
|
|
@@ -270,7 +270,7 @@ declare class AppFactory {
|
|
|
270
270
|
sender: algosdk.Address;
|
|
271
271
|
signer: TransactionSignerAccount | algosdk.TransactionSigner | undefined;
|
|
272
272
|
method: Arc56Method;
|
|
273
|
-
args: (algosdk.Transaction |
|
|
273
|
+
args: (algosdk.Transaction | algosdk.ABIValue | algosdk.TransactionWithSigner | Promise<algosdk.Transaction> | AppMethodCall<{
|
|
274
274
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
275
275
|
sender: string | Address;
|
|
276
276
|
rekeyTo?: (string | Address) | undefined;
|
|
@@ -350,7 +350,7 @@ declare class AppFactory {
|
|
|
350
350
|
sender: algosdk.Address;
|
|
351
351
|
signer: TransactionSignerAccount | algosdk.TransactionSigner | undefined;
|
|
352
352
|
method: Arc56Method;
|
|
353
|
-
args: (algosdk.Transaction |
|
|
353
|
+
args: (algosdk.Transaction | algosdk.ABIValue | algosdk.TransactionWithSigner | Promise<algosdk.Transaction> | AppMethodCall<{
|
|
354
354
|
signer?: (algosdk.TransactionSigner | TransactionSignerAccount) | undefined;
|
|
355
355
|
sender: string | Address;
|
|
356
356
|
rekeyTo?: (string | Address) | undefined;
|
|
@@ -562,7 +562,6 @@ declare class AppFactory {
|
|
|
562
562
|
result: {
|
|
563
563
|
compiledApproval?: CompiledTeal | undefined;
|
|
564
564
|
compiledClear?: CompiledTeal | undefined;
|
|
565
|
-
appId: bigint;
|
|
566
565
|
groupId: string;
|
|
567
566
|
txIds: string[];
|
|
568
567
|
returns?: ABIReturn[] | undefined;
|
|
@@ -570,6 +569,7 @@ declare class AppFactory {
|
|
|
570
569
|
transactions: algosdk.Transaction[];
|
|
571
570
|
confirmation: algosdk.modelsv2.PendingTransactionResponse;
|
|
572
571
|
transaction: algosdk.Transaction;
|
|
572
|
+
appId: bigint;
|
|
573
573
|
appAddress: Address;
|
|
574
574
|
return?: Uint8Array<ArrayBufferLike> | algosdk.ABIValue | ABIStruct | undefined;
|
|
575
575
|
};
|
|
@@ -619,9 +619,9 @@ declare class AppFactory {
|
|
|
619
619
|
compiledApproval?: CompiledTeal | undefined;
|
|
620
620
|
compiledClear?: CompiledTeal | undefined;
|
|
621
621
|
operationPerformed: "create";
|
|
622
|
-
name: string;
|
|
623
622
|
updatable?: boolean | undefined;
|
|
624
623
|
deletable?: boolean | undefined;
|
|
624
|
+
name: string;
|
|
625
625
|
createdRound: bigint;
|
|
626
626
|
updatedRound: bigint;
|
|
627
627
|
createdMetadata: AppDeployMetadata;
|
|
@@ -665,9 +665,9 @@ declare class AppFactory {
|
|
|
665
665
|
compiledApproval?: CompiledTeal | undefined;
|
|
666
666
|
compiledClear?: CompiledTeal | undefined;
|
|
667
667
|
operationPerformed: "replace";
|
|
668
|
-
name: string;
|
|
669
668
|
updatable?: boolean | undefined;
|
|
670
669
|
deletable?: boolean | undefined;
|
|
670
|
+
name: string;
|
|
671
671
|
createdRound: bigint;
|
|
672
672
|
updatedRound: bigint;
|
|
673
673
|
createdMetadata: AppDeployMetadata;
|