@algorandfoundation/algokit-utils 10.0.0-alpha.25 → 10.0.0-alpha.27
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/transact/src/logicsig.js +1 -0
- package/packages/transact/src/logicsig.js.map +1 -1
- package/packages/transact/src/logicsig.mjs +2 -1
- package/packages/transact/src/logicsig.mjs.map +1 -1
- package/packages/transact/src/multisig.js +4 -1
- package/packages/transact/src/multisig.js.map +1 -1
- package/packages/transact/src/multisig.mjs +5 -2
- package/packages/transact/src/multisig.mjs.map +1 -1
- package/packages/transact/src/signer.js +5 -1
- package/packages/transact/src/signer.js.map +1 -1
- package/packages/transact/src/signer.mjs +6 -2
- package/packages/transact/src/signer.mjs.map +1 -1
- package/types/algorand-client-transaction-creator.d.ts +13 -13
- package/types/algorand-client-transaction-sender.d.ts +13 -13
- package/types/app-client.d.ts +34 -34
- package/types/app-factory.d.ts +17 -17
- package/types/composer.d.ts +2 -2
- package/types/composer.js +9 -12
- package/types/composer.js.map +1 -1
- package/types/composer.mjs +10 -13
- package/types/composer.mjs.map +1 -1
|
@@ -348,6 +348,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
348
348
|
* @returns The application create transaction
|
|
349
349
|
*/
|
|
350
350
|
appCreate: (params: {
|
|
351
|
+
args?: Uint8Array[] | undefined;
|
|
351
352
|
sender: SendingAddress;
|
|
352
353
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
353
354
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -360,7 +361,6 @@ declare class AlgorandClientTransactionCreator {
|
|
|
360
361
|
firstValidRound?: bigint | undefined;
|
|
361
362
|
lastValidRound?: bigint | undefined;
|
|
362
363
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
363
|
-
args?: Uint8Array[] | undefined;
|
|
364
364
|
accountReferences?: ReadableAddress[] | undefined;
|
|
365
365
|
appReferences?: bigint[] | undefined;
|
|
366
366
|
assetReferences?: bigint[] | undefined;
|
|
@@ -597,7 +597,8 @@ declare class AlgorandClientTransactionCreator {
|
|
|
597
597
|
} | undefined;
|
|
598
598
|
extraProgramPages?: number | undefined;
|
|
599
599
|
method: ABIMethod;
|
|
600
|
-
args?: (Transaction |
|
|
600
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
601
|
+
args?: Uint8Array[] | undefined;
|
|
601
602
|
sender: SendingAddress;
|
|
602
603
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
603
604
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -610,7 +611,6 @@ declare class AlgorandClientTransactionCreator {
|
|
|
610
611
|
firstValidRound?: bigint | undefined;
|
|
611
612
|
lastValidRound?: bigint | undefined;
|
|
612
613
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
613
|
-
args?: Uint8Array[] | undefined;
|
|
614
614
|
accountReferences?: ReadableAddress[] | undefined;
|
|
615
615
|
appReferences?: bigint[] | undefined;
|
|
616
616
|
assetReferences?: bigint[] | undefined;
|
|
@@ -650,7 +650,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
650
650
|
rejectVersion?: number | undefined;
|
|
651
651
|
approvalProgram: string | Uint8Array;
|
|
652
652
|
clearStateProgram: string | Uint8Array;
|
|
653
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
653
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
654
654
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
655
655
|
/** Create an application update call with ABI method call transaction.
|
|
656
656
|
*
|
|
@@ -724,7 +724,8 @@ declare class AlgorandClientTransactionCreator {
|
|
|
724
724
|
approvalProgram: string | Uint8Array;
|
|
725
725
|
clearStateProgram: string | Uint8Array;
|
|
726
726
|
method: ABIMethod;
|
|
727
|
-
args?: (Transaction |
|
|
727
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
728
|
+
args?: Uint8Array[] | undefined;
|
|
728
729
|
sender: SendingAddress;
|
|
729
730
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
730
731
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -737,7 +738,6 @@ declare class AlgorandClientTransactionCreator {
|
|
|
737
738
|
firstValidRound?: bigint | undefined;
|
|
738
739
|
lastValidRound?: bigint | undefined;
|
|
739
740
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
740
|
-
args?: Uint8Array[] | undefined;
|
|
741
741
|
accountReferences?: ReadableAddress[] | undefined;
|
|
742
742
|
appReferences?: bigint[] | undefined;
|
|
743
743
|
assetReferences?: bigint[] | undefined;
|
|
@@ -777,7 +777,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
777
777
|
rejectVersion?: number | undefined;
|
|
778
778
|
approvalProgram: string | Uint8Array;
|
|
779
779
|
clearStateProgram: string | Uint8Array;
|
|
780
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
780
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
781
781
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
782
782
|
/** Create an application delete call with ABI method call transaction.
|
|
783
783
|
*
|
|
@@ -847,7 +847,8 @@ declare class AlgorandClientTransactionCreator {
|
|
|
847
847
|
accessReferences?: ResourceReference[] | undefined;
|
|
848
848
|
rejectVersion?: number | undefined;
|
|
849
849
|
method: ABIMethod;
|
|
850
|
-
args?: (Transaction |
|
|
850
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
851
|
+
args?: Uint8Array[] | undefined;
|
|
851
852
|
sender: SendingAddress;
|
|
852
853
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
853
854
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -860,7 +861,6 @@ declare class AlgorandClientTransactionCreator {
|
|
|
860
861
|
firstValidRound?: bigint | undefined;
|
|
861
862
|
lastValidRound?: bigint | undefined;
|
|
862
863
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
863
|
-
args?: Uint8Array[] | undefined;
|
|
864
864
|
accountReferences?: ReadableAddress[] | undefined;
|
|
865
865
|
appReferences?: bigint[] | undefined;
|
|
866
866
|
assetReferences?: bigint[] | undefined;
|
|
@@ -900,7 +900,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
900
900
|
rejectVersion?: number | undefined;
|
|
901
901
|
approvalProgram: string | Uint8Array;
|
|
902
902
|
clearStateProgram: string | Uint8Array;
|
|
903
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
903
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
904
904
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
905
905
|
/** Create an application call with ABI method call transaction.
|
|
906
906
|
*
|
|
@@ -970,7 +970,8 @@ declare class AlgorandClientTransactionCreator {
|
|
|
970
970
|
accessReferences?: ResourceReference[] | undefined;
|
|
971
971
|
rejectVersion?: number | undefined;
|
|
972
972
|
method: ABIMethod;
|
|
973
|
-
args?: (Transaction |
|
|
973
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
974
|
+
args?: Uint8Array[] | undefined;
|
|
974
975
|
sender: SendingAddress;
|
|
975
976
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
976
977
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -983,7 +984,6 @@ declare class AlgorandClientTransactionCreator {
|
|
|
983
984
|
firstValidRound?: bigint | undefined;
|
|
984
985
|
lastValidRound?: bigint | undefined;
|
|
985
986
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
986
|
-
args?: Uint8Array[] | undefined;
|
|
987
987
|
accountReferences?: ReadableAddress[] | undefined;
|
|
988
988
|
appReferences?: bigint[] | undefined;
|
|
989
989
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1023,7 +1023,7 @@ declare class AlgorandClientTransactionCreator {
|
|
|
1023
1023
|
rejectVersion?: number | undefined;
|
|
1024
1024
|
approvalProgram: string | Uint8Array;
|
|
1025
1025
|
clearStateProgram: string | Uint8Array;
|
|
1026
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1026
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1027
1027
|
}) => Promise<Expand<BuiltTransactions>>;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* Create an online key registration transaction.
|
|
@@ -479,6 +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
|
+
args?: Uint8Array[] | undefined;
|
|
482
483
|
sender: SendingAddress;
|
|
483
484
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
484
485
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -491,7 +492,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
491
492
|
firstValidRound?: bigint | undefined;
|
|
492
493
|
lastValidRound?: bigint | undefined;
|
|
493
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;
|
|
@@ -781,7 +781,8 @@ declare class AlgorandClientTransactionSender {
|
|
|
781
781
|
} | undefined;
|
|
782
782
|
extraProgramPages?: number | undefined;
|
|
783
783
|
method: ABIMethod;
|
|
784
|
-
args?: (Transaction |
|
|
784
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
785
|
+
args?: Uint8Array[] | undefined;
|
|
785
786
|
sender: SendingAddress;
|
|
786
787
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
787
788
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -794,7 +795,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
794
795
|
firstValidRound?: bigint | undefined;
|
|
795
796
|
lastValidRound?: bigint | undefined;
|
|
796
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;
|
|
@@ -834,7 +834,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
834
834
|
rejectVersion?: number | undefined;
|
|
835
835
|
approvalProgram: string | Uint8Array;
|
|
836
836
|
clearStateProgram: string | Uint8Array;
|
|
837
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
837
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
838
838
|
} & SendParams) => Promise<SendAppCreateTransactionResult>;
|
|
839
839
|
/**
|
|
840
840
|
* Update a smart contract via an ABI method.
|
|
@@ -915,7 +915,8 @@ declare class AlgorandClientTransactionSender {
|
|
|
915
915
|
approvalProgram: string | Uint8Array;
|
|
916
916
|
clearStateProgram: string | Uint8Array;
|
|
917
917
|
method: ABIMethod;
|
|
918
|
-
args?: (Transaction |
|
|
918
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
919
|
+
args?: Uint8Array[] | undefined;
|
|
919
920
|
sender: SendingAddress;
|
|
920
921
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
921
922
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -928,7 +929,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
928
929
|
firstValidRound?: bigint | undefined;
|
|
929
930
|
lastValidRound?: bigint | undefined;
|
|
930
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;
|
|
@@ -968,7 +968,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
968
968
|
rejectVersion?: number | undefined;
|
|
969
969
|
approvalProgram: string | Uint8Array;
|
|
970
970
|
clearStateProgram: string | Uint8Array;
|
|
971
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
971
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
972
972
|
} & SendParams) => Promise<SendAppUpdateTransactionResult>;
|
|
973
973
|
/**
|
|
974
974
|
* Delete a smart contract via an ABI method.
|
|
@@ -1045,7 +1045,8 @@ declare class AlgorandClientTransactionSender {
|
|
|
1045
1045
|
accessReferences?: ResourceReference[] | undefined;
|
|
1046
1046
|
rejectVersion?: number | undefined;
|
|
1047
1047
|
method: ABIMethod;
|
|
1048
|
-
args?: (Transaction |
|
|
1048
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
1049
|
+
args?: Uint8Array[] | undefined;
|
|
1049
1050
|
sender: SendingAddress;
|
|
1050
1051
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1051
1052
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1058,7 +1059,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
1058
1059
|
firstValidRound?: bigint | undefined;
|
|
1059
1060
|
lastValidRound?: bigint | undefined;
|
|
1060
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;
|
|
@@ -1098,7 +1098,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1098
1098
|
rejectVersion?: number | undefined;
|
|
1099
1099
|
approvalProgram: string | Uint8Array;
|
|
1100
1100
|
clearStateProgram: string | Uint8Array;
|
|
1101
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1101
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1102
1102
|
} & SendParams) => Promise<SendAppTransactionResult>;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* Call a smart contract via an ABI method.
|
|
@@ -1175,7 +1175,8 @@ declare class AlgorandClientTransactionSender {
|
|
|
1175
1175
|
accessReferences?: ResourceReference[] | undefined;
|
|
1176
1176
|
rejectVersion?: number | undefined;
|
|
1177
1177
|
method: ABIMethod;
|
|
1178
|
-
args?: (Transaction |
|
|
1178
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
1179
|
+
args?: Uint8Array[] | undefined;
|
|
1179
1180
|
sender: SendingAddress;
|
|
1180
1181
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1181
1182
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -1188,7 +1189,6 @@ declare class AlgorandClientTransactionSender {
|
|
|
1188
1189
|
firstValidRound?: bigint | undefined;
|
|
1189
1190
|
lastValidRound?: bigint | undefined;
|
|
1190
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;
|
|
@@ -1228,7 +1228,7 @@ declare class AlgorandClientTransactionSender {
|
|
|
1228
1228
|
rejectVersion?: number | undefined;
|
|
1229
1229
|
approvalProgram: string | Uint8Array;
|
|
1230
1230
|
clearStateProgram: string | Uint8Array;
|
|
1231
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
1231
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
1232
1232
|
} & SendParams) => Promise<SendAppTransactionResult>;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Register an online key.
|
package/types/app-client.d.ts
CHANGED
|
@@ -488,7 +488,8 @@ declare class AppClient {
|
|
|
488
488
|
signer: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
489
489
|
method: ABIMethod;
|
|
490
490
|
onComplete: OnApplicationComplete.UpdateApplication;
|
|
491
|
-
args: (Transaction |
|
|
491
|
+
args: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
492
|
+
args?: Uint8Array[] | undefined;
|
|
492
493
|
sender: SendingAddress;
|
|
493
494
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
494
495
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -501,7 +502,6 @@ declare class AppClient {
|
|
|
501
502
|
firstValidRound?: bigint | undefined;
|
|
502
503
|
lastValidRound?: bigint | undefined;
|
|
503
504
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
504
|
-
args?: Uint8Array[] | undefined;
|
|
505
505
|
accountReferences?: ReadableAddress[] | undefined;
|
|
506
506
|
appReferences?: bigint[] | undefined;
|
|
507
507
|
assetReferences?: bigint[] | undefined;
|
|
@@ -541,7 +541,7 @@ declare class AppClient {
|
|
|
541
541
|
rejectVersion?: number | undefined;
|
|
542
542
|
approvalProgram: string | Uint8Array;
|
|
543
543
|
clearStateProgram: string | Uint8Array;
|
|
544
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
544
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
545
545
|
}>;
|
|
546
546
|
/**
|
|
547
547
|
* Return params for an opt-in ABI call
|
|
@@ -590,7 +590,8 @@ declare class AppClient {
|
|
|
590
590
|
accessReferences?: ResourceReference[] | undefined;
|
|
591
591
|
rejectVersion?: number | undefined;
|
|
592
592
|
method: ABIMethod;
|
|
593
|
-
args?: (Transaction |
|
|
593
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
594
|
+
args?: Uint8Array[] | undefined;
|
|
594
595
|
sender: SendingAddress;
|
|
595
596
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
596
597
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -603,7 +604,6 @@ declare class AppClient {
|
|
|
603
604
|
firstValidRound?: bigint | undefined;
|
|
604
605
|
lastValidRound?: bigint | undefined;
|
|
605
606
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
606
|
-
args?: Uint8Array[] | undefined;
|
|
607
607
|
accountReferences?: ReadableAddress[] | undefined;
|
|
608
608
|
appReferences?: bigint[] | undefined;
|
|
609
609
|
assetReferences?: bigint[] | undefined;
|
|
@@ -643,7 +643,7 @@ declare class AppClient {
|
|
|
643
643
|
rejectVersion?: number | undefined;
|
|
644
644
|
approvalProgram: string | Uint8Array;
|
|
645
645
|
clearStateProgram: string | Uint8Array;
|
|
646
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
646
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
647
647
|
}>;
|
|
648
648
|
/**
|
|
649
649
|
* Return params for an delete ABI call
|
|
@@ -692,7 +692,8 @@ declare class AppClient {
|
|
|
692
692
|
accessReferences?: ResourceReference[] | undefined;
|
|
693
693
|
rejectVersion?: number | undefined;
|
|
694
694
|
method: ABIMethod;
|
|
695
|
-
args?: (Transaction |
|
|
695
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
696
|
+
args?: Uint8Array[] | undefined;
|
|
696
697
|
sender: SendingAddress;
|
|
697
698
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
698
699
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -705,7 +706,6 @@ declare class AppClient {
|
|
|
705
706
|
firstValidRound?: bigint | undefined;
|
|
706
707
|
lastValidRound?: bigint | undefined;
|
|
707
708
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
708
|
-
args?: Uint8Array[] | undefined;
|
|
709
709
|
accountReferences?: ReadableAddress[] | undefined;
|
|
710
710
|
appReferences?: bigint[] | undefined;
|
|
711
711
|
assetReferences?: bigint[] | undefined;
|
|
@@ -745,7 +745,7 @@ declare class AppClient {
|
|
|
745
745
|
rejectVersion?: number | undefined;
|
|
746
746
|
approvalProgram: string | Uint8Array;
|
|
747
747
|
clearStateProgram: string | Uint8Array;
|
|
748
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
748
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
749
749
|
}>;
|
|
750
750
|
/** Return params for an close out ABI call
|
|
751
751
|
* @param params The parameters for the close out ABI method call
|
|
@@ -793,7 +793,8 @@ declare class AppClient {
|
|
|
793
793
|
accessReferences?: ResourceReference[] | undefined;
|
|
794
794
|
rejectVersion?: number | undefined;
|
|
795
795
|
method: ABIMethod;
|
|
796
|
-
args?: (Transaction |
|
|
796
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
797
|
+
args?: Uint8Array[] | undefined;
|
|
797
798
|
sender: SendingAddress;
|
|
798
799
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
799
800
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -806,7 +807,6 @@ declare class AppClient {
|
|
|
806
807
|
firstValidRound?: bigint | undefined;
|
|
807
808
|
lastValidRound?: bigint | undefined;
|
|
808
809
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
809
|
-
args?: Uint8Array[] | undefined;
|
|
810
810
|
accountReferences?: ReadableAddress[] | undefined;
|
|
811
811
|
appReferences?: bigint[] | undefined;
|
|
812
812
|
assetReferences?: bigint[] | undefined;
|
|
@@ -846,7 +846,7 @@ declare class AppClient {
|
|
|
846
846
|
rejectVersion?: number | undefined;
|
|
847
847
|
approvalProgram: string | Uint8Array;
|
|
848
848
|
clearStateProgram: string | Uint8Array;
|
|
849
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
849
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
850
850
|
}>;
|
|
851
851
|
/** Return params for an ABI call
|
|
852
852
|
* @param params The parameters for the ABI method call
|
|
@@ -894,7 +894,8 @@ declare class AppClient {
|
|
|
894
894
|
accessReferences?: ResourceReference[] | undefined;
|
|
895
895
|
rejectVersion?: number | undefined;
|
|
896
896
|
method: ABIMethod;
|
|
897
|
-
args?: (Transaction |
|
|
897
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
898
|
+
args?: Uint8Array[] | undefined;
|
|
898
899
|
sender: SendingAddress;
|
|
899
900
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
900
901
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -907,7 +908,6 @@ declare class AppClient {
|
|
|
907
908
|
firstValidRound?: bigint | undefined;
|
|
908
909
|
lastValidRound?: bigint | undefined;
|
|
909
910
|
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
910
|
-
args?: Uint8Array[] | undefined;
|
|
911
911
|
accountReferences?: ReadableAddress[] | undefined;
|
|
912
912
|
appReferences?: bigint[] | undefined;
|
|
913
913
|
assetReferences?: bigint[] | undefined;
|
|
@@ -947,12 +947,13 @@ declare class AppClient {
|
|
|
947
947
|
rejectVersion?: number | undefined;
|
|
948
948
|
approvalProgram: string | Uint8Array;
|
|
949
949
|
clearStateProgram: string | Uint8Array;
|
|
950
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
950
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
951
951
|
}>;
|
|
952
952
|
} & {
|
|
953
953
|
/** Interact with bare (raw) call parameters */bare: {
|
|
954
954
|
/** Return params for an update call, including deploy-time TEAL template replacements and compilation if provided */
|
|
955
955
|
update: (params?: ({
|
|
956
|
+
args?: Uint8Array[] | undefined;
|
|
956
957
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
957
958
|
rekeyTo?: ReadableAddress | undefined;
|
|
958
959
|
note?: string | Uint8Array | undefined;
|
|
@@ -963,7 +964,6 @@ declare class AppClient {
|
|
|
963
964
|
validityWindow?: number | bigint | undefined;
|
|
964
965
|
firstValidRound?: bigint | undefined;
|
|
965
966
|
lastValidRound?: bigint | undefined;
|
|
966
|
-
args?: Uint8Array[] | undefined;
|
|
967
967
|
accountReferences?: ReadableAddress[] | undefined;
|
|
968
968
|
appReferences?: bigint[] | undefined;
|
|
969
969
|
assetReferences?: bigint[] | undefined;
|
|
@@ -997,6 +997,7 @@ declare class AppClient {
|
|
|
997
997
|
}>;
|
|
998
998
|
/** Return params for an opt-in call */
|
|
999
999
|
optIn: (params?: {
|
|
1000
|
+
args?: Uint8Array[] | undefined;
|
|
1000
1001
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1001
1002
|
rekeyTo?: ReadableAddress | undefined;
|
|
1002
1003
|
note?: string | Uint8Array | undefined;
|
|
@@ -1007,7 +1008,6 @@ declare class AppClient {
|
|
|
1007
1008
|
validityWindow?: number | bigint | undefined;
|
|
1008
1009
|
firstValidRound?: bigint | undefined;
|
|
1009
1010
|
lastValidRound?: bigint | undefined;
|
|
1010
|
-
args?: Uint8Array[] | undefined;
|
|
1011
1011
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1012
1012
|
appReferences?: bigint[] | undefined;
|
|
1013
1013
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1018,6 +1018,7 @@ declare class AppClient {
|
|
|
1018
1018
|
} | undefined) => AppCallParams;
|
|
1019
1019
|
/** Return params for a delete call */
|
|
1020
1020
|
delete: (params?: {
|
|
1021
|
+
args?: Uint8Array[] | undefined;
|
|
1021
1022
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1022
1023
|
rekeyTo?: ReadableAddress | undefined;
|
|
1023
1024
|
note?: string | Uint8Array | undefined;
|
|
@@ -1028,7 +1029,6 @@ declare class AppClient {
|
|
|
1028
1029
|
validityWindow?: number | bigint | undefined;
|
|
1029
1030
|
firstValidRound?: bigint | undefined;
|
|
1030
1031
|
lastValidRound?: bigint | undefined;
|
|
1031
|
-
args?: Uint8Array[] | undefined;
|
|
1032
1032
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1033
1033
|
appReferences?: bigint[] | undefined;
|
|
1034
1034
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1039,6 +1039,7 @@ declare class AppClient {
|
|
|
1039
1039
|
} | undefined) => AppDeleteParams;
|
|
1040
1040
|
/** Return params for a clear state call */
|
|
1041
1041
|
clearState: (params?: {
|
|
1042
|
+
args?: Uint8Array[] | undefined;
|
|
1042
1043
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1043
1044
|
rekeyTo?: ReadableAddress | undefined;
|
|
1044
1045
|
note?: string | Uint8Array | undefined;
|
|
@@ -1049,7 +1050,6 @@ declare class AppClient {
|
|
|
1049
1050
|
validityWindow?: number | bigint | undefined;
|
|
1050
1051
|
firstValidRound?: bigint | undefined;
|
|
1051
1052
|
lastValidRound?: bigint | undefined;
|
|
1052
|
-
args?: Uint8Array[] | undefined;
|
|
1053
1053
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1054
1054
|
appReferences?: bigint[] | undefined;
|
|
1055
1055
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1060,6 +1060,7 @@ declare class AppClient {
|
|
|
1060
1060
|
} | undefined) => AppCallParams;
|
|
1061
1061
|
/** Return params for a close out call */
|
|
1062
1062
|
closeOut: (params?: {
|
|
1063
|
+
args?: Uint8Array[] | undefined;
|
|
1063
1064
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1064
1065
|
rekeyTo?: ReadableAddress | undefined;
|
|
1065
1066
|
note?: string | Uint8Array | undefined;
|
|
@@ -1070,7 +1071,6 @@ declare class AppClient {
|
|
|
1070
1071
|
validityWindow?: number | bigint | undefined;
|
|
1071
1072
|
firstValidRound?: bigint | undefined;
|
|
1072
1073
|
lastValidRound?: bigint | undefined;
|
|
1073
|
-
args?: Uint8Array[] | undefined;
|
|
1074
1074
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1075
1075
|
appReferences?: bigint[] | undefined;
|
|
1076
1076
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1081,6 +1081,7 @@ declare class AppClient {
|
|
|
1081
1081
|
} | undefined) => AppCallParams;
|
|
1082
1082
|
/** Return params for a call (defaults to no-op) */
|
|
1083
1083
|
call: (params?: ({
|
|
1084
|
+
args?: Uint8Array[] | undefined;
|
|
1084
1085
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1085
1086
|
rekeyTo?: ReadableAddress | undefined;
|
|
1086
1087
|
note?: string | Uint8Array | undefined;
|
|
@@ -1091,7 +1092,6 @@ declare class AppClient {
|
|
|
1091
1092
|
validityWindow?: number | bigint | undefined;
|
|
1092
1093
|
firstValidRound?: bigint | undefined;
|
|
1093
1094
|
lastValidRound?: bigint | undefined;
|
|
1094
|
-
args?: Uint8Array[] | undefined;
|
|
1095
1095
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1096
1096
|
appReferences?: bigint[] | undefined;
|
|
1097
1097
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1286,6 +1286,7 @@ declare class AppClient {
|
|
|
1286
1286
|
/** Interact with bare (raw) call transactions */bare: {
|
|
1287
1287
|
/** Returns a transaction for an update call, including deploy-time TEAL template replacements and compilation if provided */
|
|
1288
1288
|
update: (params?: ({
|
|
1289
|
+
args?: Uint8Array[] | undefined;
|
|
1289
1290
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1290
1291
|
rekeyTo?: ReadableAddress | undefined;
|
|
1291
1292
|
note?: string | Uint8Array | undefined;
|
|
@@ -1296,7 +1297,6 @@ declare class AppClient {
|
|
|
1296
1297
|
validityWindow?: number | bigint | undefined;
|
|
1297
1298
|
firstValidRound?: bigint | undefined;
|
|
1298
1299
|
lastValidRound?: bigint | undefined;
|
|
1299
|
-
args?: Uint8Array[] | undefined;
|
|
1300
1300
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1301
1301
|
appReferences?: bigint[] | undefined;
|
|
1302
1302
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1307,6 +1307,7 @@ declare class AppClient {
|
|
|
1307
1307
|
} & AppClientCompilationParams) | undefined) => Promise<Transaction>;
|
|
1308
1308
|
/** Returns a transaction for an opt-in call */
|
|
1309
1309
|
optIn: (params?: {
|
|
1310
|
+
args?: Uint8Array[] | undefined;
|
|
1310
1311
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1311
1312
|
rekeyTo?: ReadableAddress | undefined;
|
|
1312
1313
|
note?: string | Uint8Array | undefined;
|
|
@@ -1317,7 +1318,6 @@ declare class AppClient {
|
|
|
1317
1318
|
validityWindow?: number | bigint | undefined;
|
|
1318
1319
|
firstValidRound?: bigint | undefined;
|
|
1319
1320
|
lastValidRound?: bigint | undefined;
|
|
1320
|
-
args?: Uint8Array[] | undefined;
|
|
1321
1321
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1322
1322
|
appReferences?: bigint[] | undefined;
|
|
1323
1323
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1328,6 +1328,7 @@ declare class AppClient {
|
|
|
1328
1328
|
} | undefined) => Promise<Transaction>;
|
|
1329
1329
|
/** Returns a transaction for a delete call */
|
|
1330
1330
|
delete: (params?: {
|
|
1331
|
+
args?: Uint8Array[] | undefined;
|
|
1331
1332
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1332
1333
|
rekeyTo?: ReadableAddress | undefined;
|
|
1333
1334
|
note?: string | Uint8Array | undefined;
|
|
@@ -1338,7 +1339,6 @@ declare class AppClient {
|
|
|
1338
1339
|
validityWindow?: number | bigint | undefined;
|
|
1339
1340
|
firstValidRound?: bigint | undefined;
|
|
1340
1341
|
lastValidRound?: bigint | undefined;
|
|
1341
|
-
args?: Uint8Array[] | undefined;
|
|
1342
1342
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1343
1343
|
appReferences?: bigint[] | undefined;
|
|
1344
1344
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1349,6 +1349,7 @@ declare class AppClient {
|
|
|
1349
1349
|
} | undefined) => Promise<Transaction>;
|
|
1350
1350
|
/** Returns a transaction for a clear state call */
|
|
1351
1351
|
clearState: (params?: {
|
|
1352
|
+
args?: Uint8Array[] | undefined;
|
|
1352
1353
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1353
1354
|
rekeyTo?: ReadableAddress | undefined;
|
|
1354
1355
|
note?: string | Uint8Array | undefined;
|
|
@@ -1359,7 +1360,6 @@ declare class AppClient {
|
|
|
1359
1360
|
validityWindow?: number | bigint | undefined;
|
|
1360
1361
|
firstValidRound?: bigint | undefined;
|
|
1361
1362
|
lastValidRound?: bigint | undefined;
|
|
1362
|
-
args?: Uint8Array[] | undefined;
|
|
1363
1363
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1364
1364
|
appReferences?: bigint[] | undefined;
|
|
1365
1365
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1370,6 +1370,7 @@ declare class AppClient {
|
|
|
1370
1370
|
} | undefined) => Promise<Transaction>;
|
|
1371
1371
|
/** Returns a transaction for a close out call */
|
|
1372
1372
|
closeOut: (params?: {
|
|
1373
|
+
args?: Uint8Array[] | undefined;
|
|
1373
1374
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1374
1375
|
rekeyTo?: ReadableAddress | undefined;
|
|
1375
1376
|
note?: string | Uint8Array | undefined;
|
|
@@ -1380,7 +1381,6 @@ declare class AppClient {
|
|
|
1380
1381
|
validityWindow?: number | bigint | undefined;
|
|
1381
1382
|
firstValidRound?: bigint | undefined;
|
|
1382
1383
|
lastValidRound?: bigint | undefined;
|
|
1383
|
-
args?: Uint8Array[] | undefined;
|
|
1384
1384
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1385
1385
|
appReferences?: bigint[] | undefined;
|
|
1386
1386
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1391,6 +1391,7 @@ declare class AppClient {
|
|
|
1391
1391
|
} | undefined) => Promise<Transaction>;
|
|
1392
1392
|
/** Returns a transaction for a call (defaults to no-op) */
|
|
1393
1393
|
call: (params?: ({
|
|
1394
|
+
args?: Uint8Array[] | undefined;
|
|
1394
1395
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1395
1396
|
rekeyTo?: ReadableAddress | undefined;
|
|
1396
1397
|
note?: string | Uint8Array | undefined;
|
|
@@ -1401,7 +1402,6 @@ declare class AppClient {
|
|
|
1401
1402
|
validityWindow?: number | bigint | undefined;
|
|
1402
1403
|
firstValidRound?: bigint | undefined;
|
|
1403
1404
|
lastValidRound?: bigint | undefined;
|
|
1404
|
-
args?: Uint8Array[] | undefined;
|
|
1405
1405
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1406
1406
|
appReferences?: bigint[] | undefined;
|
|
1407
1407
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1474,8 +1474,8 @@ declare class AppClient {
|
|
|
1474
1474
|
} & AppClientCompilationParams & SendParams) => Promise<{
|
|
1475
1475
|
compiledApproval?: CompiledTeal | undefined;
|
|
1476
1476
|
compiledClear?: CompiledTeal | undefined;
|
|
1477
|
-
transactions: Transaction[];
|
|
1478
1477
|
confirmations: PendingTransactionResponse[];
|
|
1478
|
+
transactions: Transaction[];
|
|
1479
1479
|
groupId: string | undefined;
|
|
1480
1480
|
txIds: string[];
|
|
1481
1481
|
returns?: ABIReturn[] | undefined;
|
|
@@ -1631,6 +1631,7 @@ declare class AppClient {
|
|
|
1631
1631
|
/** Interact with bare (raw) calls */bare: {
|
|
1632
1632
|
/** Signs and sends an update call, including deploy-time TEAL template replacements and compilation if provided */
|
|
1633
1633
|
update: (params?: ({
|
|
1634
|
+
args?: Uint8Array[] | undefined;
|
|
1634
1635
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1635
1636
|
rekeyTo?: ReadableAddress | undefined;
|
|
1636
1637
|
note?: string | Uint8Array | undefined;
|
|
@@ -1641,7 +1642,6 @@ declare class AppClient {
|
|
|
1641
1642
|
validityWindow?: number | bigint | undefined;
|
|
1642
1643
|
firstValidRound?: bigint | undefined;
|
|
1643
1644
|
lastValidRound?: bigint | undefined;
|
|
1644
|
-
args?: Uint8Array[] | undefined;
|
|
1645
1645
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1646
1646
|
appReferences?: bigint[] | undefined;
|
|
1647
1647
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1663,6 +1663,7 @@ declare class AppClient {
|
|
|
1663
1663
|
}>;
|
|
1664
1664
|
/** Signs and sends an opt-in call */
|
|
1665
1665
|
optIn: (params?: ({
|
|
1666
|
+
args?: Uint8Array[] | undefined;
|
|
1666
1667
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1667
1668
|
rekeyTo?: ReadableAddress | undefined;
|
|
1668
1669
|
note?: string | Uint8Array | undefined;
|
|
@@ -1673,7 +1674,6 @@ declare class AppClient {
|
|
|
1673
1674
|
validityWindow?: number | bigint | undefined;
|
|
1674
1675
|
firstValidRound?: bigint | undefined;
|
|
1675
1676
|
lastValidRound?: bigint | undefined;
|
|
1676
|
-
args?: Uint8Array[] | undefined;
|
|
1677
1677
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1678
1678
|
appReferences?: bigint[] | undefined;
|
|
1679
1679
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1693,6 +1693,7 @@ declare class AppClient {
|
|
|
1693
1693
|
}>;
|
|
1694
1694
|
/** Signs and sends a delete call */
|
|
1695
1695
|
delete: (params?: ({
|
|
1696
|
+
args?: Uint8Array[] | undefined;
|
|
1696
1697
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1697
1698
|
rekeyTo?: ReadableAddress | undefined;
|
|
1698
1699
|
note?: string | Uint8Array | undefined;
|
|
@@ -1703,7 +1704,6 @@ declare class AppClient {
|
|
|
1703
1704
|
validityWindow?: number | bigint | undefined;
|
|
1704
1705
|
firstValidRound?: bigint | undefined;
|
|
1705
1706
|
lastValidRound?: bigint | undefined;
|
|
1706
|
-
args?: Uint8Array[] | undefined;
|
|
1707
1707
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1708
1708
|
appReferences?: bigint[] | undefined;
|
|
1709
1709
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1723,6 +1723,7 @@ declare class AppClient {
|
|
|
1723
1723
|
}>;
|
|
1724
1724
|
/** Signs and sends a clear state call */
|
|
1725
1725
|
clearState: (params?: ({
|
|
1726
|
+
args?: Uint8Array[] | undefined;
|
|
1726
1727
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1727
1728
|
rekeyTo?: ReadableAddress | undefined;
|
|
1728
1729
|
note?: string | Uint8Array | undefined;
|
|
@@ -1733,7 +1734,6 @@ declare class AppClient {
|
|
|
1733
1734
|
validityWindow?: number | bigint | undefined;
|
|
1734
1735
|
firstValidRound?: bigint | undefined;
|
|
1735
1736
|
lastValidRound?: bigint | undefined;
|
|
1736
|
-
args?: Uint8Array[] | undefined;
|
|
1737
1737
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1738
1738
|
appReferences?: bigint[] | undefined;
|
|
1739
1739
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1753,6 +1753,7 @@ declare class AppClient {
|
|
|
1753
1753
|
}>;
|
|
1754
1754
|
/** Signs and sends a close out call */
|
|
1755
1755
|
closeOut: (params?: ({
|
|
1756
|
+
args?: Uint8Array[] | undefined;
|
|
1756
1757
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1757
1758
|
rekeyTo?: ReadableAddress | undefined;
|
|
1758
1759
|
note?: string | Uint8Array | undefined;
|
|
@@ -1763,7 +1764,6 @@ declare class AppClient {
|
|
|
1763
1764
|
validityWindow?: number | bigint | undefined;
|
|
1764
1765
|
firstValidRound?: bigint | undefined;
|
|
1765
1766
|
lastValidRound?: bigint | undefined;
|
|
1766
|
-
args?: Uint8Array[] | undefined;
|
|
1767
1767
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1768
1768
|
appReferences?: bigint[] | undefined;
|
|
1769
1769
|
assetReferences?: bigint[] | undefined;
|
|
@@ -1783,6 +1783,7 @@ declare class AppClient {
|
|
|
1783
1783
|
}>;
|
|
1784
1784
|
/** Signs and sends a call (defaults to no-op) */
|
|
1785
1785
|
call: (params?: ({
|
|
1786
|
+
args?: Uint8Array[] | undefined;
|
|
1786
1787
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
1787
1788
|
rekeyTo?: ReadableAddress | undefined;
|
|
1788
1789
|
note?: string | Uint8Array | undefined;
|
|
@@ -1793,7 +1794,6 @@ declare class AppClient {
|
|
|
1793
1794
|
validityWindow?: number | bigint | undefined;
|
|
1794
1795
|
firstValidRound?: bigint | undefined;
|
|
1795
1796
|
lastValidRound?: bigint | undefined;
|
|
1796
|
-
args?: Uint8Array[] | undefined;
|
|
1797
1797
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1798
1798
|
appReferences?: bigint[] | undefined;
|
|
1799
1799
|
assetReferences?: bigint[] | undefined;
|