@algorandfoundation/algokit-utils 10.0.0-alpha.24 → 10.0.0-alpha.25

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.
Files changed (39) hide show
  1. package/package.json +1 -1
  2. package/packages/transact/src/logicsig.d.ts +36 -22
  3. package/packages/transact/src/logicsig.js +69 -52
  4. package/packages/transact/src/logicsig.js.map +1 -1
  5. package/packages/transact/src/logicsig.mjs +70 -54
  6. package/packages/transact/src/logicsig.mjs.map +1 -1
  7. package/packages/transact/src/multisig.d.ts +4 -1
  8. package/packages/transact/src/multisig.js +17 -0
  9. package/packages/transact/src/multisig.js.map +1 -1
  10. package/packages/transact/src/multisig.mjs +17 -0
  11. package/packages/transact/src/multisig.mjs.map +1 -1
  12. package/packages/transact/src/signer.js +4 -1
  13. package/packages/transact/src/signer.js.map +1 -1
  14. package/packages/transact/src/signer.mjs +4 -1
  15. package/packages/transact/src/signer.mjs.map +1 -1
  16. package/packages/transact/src/transactions/signed-transaction-meta.js +6 -6
  17. package/packages/transact/src/transactions/signed-transaction-meta.js.map +1 -1
  18. package/packages/transact/src/transactions/signed-transaction-meta.mjs +6 -6
  19. package/packages/transact/src/transactions/signed-transaction-meta.mjs.map +1 -1
  20. package/packages/transact/src/transactions/signed-transaction.d.ts +4 -4
  21. package/packages/transact/src/transactions/signed-transaction.js.map +1 -1
  22. package/packages/transact/src/transactions/signed-transaction.mjs.map +1 -1
  23. package/testing/account.js +4 -2
  24. package/testing/account.js.map +1 -1
  25. package/testing/account.mjs +4 -2
  26. package/testing/account.mjs.map +1 -1
  27. package/transact/index.d.ts +3 -3
  28. package/transact/index.js +2 -1
  29. package/transact/index.mjs +2 -2
  30. package/types/account-manager.d.ts +6 -8
  31. package/types/account-manager.js +13 -3
  32. package/types/account-manager.js.map +1 -1
  33. package/types/account-manager.mjs +13 -3
  34. package/types/account-manager.mjs.map +1 -1
  35. package/types/algorand-client-transaction-creator.d.ts +26 -26
  36. package/types/algorand-client-transaction-sender.d.ts +26 -26
  37. package/types/app-client.d.ts +74 -74
  38. package/types/app-factory.d.ts +30 -30
  39. package/types/testing.d.ts +2 -2
@@ -171,7 +171,7 @@ declare class AppFactory {
171
171
  get params(): {
172
172
  /** Return params for a create ABI call, including deploy-time TEAL template replacements and compilation if provided */
173
173
  create: (params: {
174
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
174
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
175
175
  rekeyTo?: ReadableAddress | undefined;
176
176
  note?: string | Uint8Array | undefined;
177
177
  lease?: string | Uint8Array | undefined;
@@ -219,7 +219,7 @@ declare class AppFactory {
219
219
  };
220
220
  approvalProgram: Uint8Array;
221
221
  clearStateProgram: Uint8Array;
222
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
222
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
223
223
  rekeyTo?: ReadableAddress | undefined;
224
224
  note?: string | Uint8Array | undefined;
225
225
  lease?: string | Uint8Array | undefined;
@@ -244,11 +244,11 @@ declare class AppFactory {
244
244
  extraProgramPages?: number | undefined;
245
245
  } & {
246
246
  sender: Address;
247
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
247
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
248
248
  method: ABIMethod;
249
- args: (ABIValue | TransactionWithSigner | Transaction | AppMethodCall<AppMethodCallParams> | AppMethodCall<{
249
+ args: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
250
250
  sender: SendingAddress;
251
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
251
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
252
252
  rekeyTo?: ReadableAddress | undefined;
253
253
  note?: string | Uint8Array | undefined;
254
254
  lease?: string | Uint8Array | undefined;
@@ -278,7 +278,7 @@ declare class AppFactory {
278
278
  extraProgramPages?: number | undefined;
279
279
  }> | AppMethodCall<{
280
280
  sender: SendingAddress;
281
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
281
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
282
282
  rekeyTo?: ReadableAddress | undefined;
283
283
  note?: string | Uint8Array | undefined;
284
284
  lease?: string | Uint8Array | undefined;
@@ -299,12 +299,12 @@ declare class AppFactory {
299
299
  rejectVersion?: number | undefined;
300
300
  approvalProgram: string | Uint8Array;
301
301
  clearStateProgram: string | Uint8Array;
302
- }> | Promise<Transaction> | undefined)[] | undefined;
302
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
303
303
  onComplete: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication;
304
304
  }>;
305
305
  /** Return params for a deployment update ABI call */
306
306
  deployUpdate: (params: {
307
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
307
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
308
308
  rekeyTo?: ReadableAddress | undefined;
309
309
  note?: string | Uint8Array | undefined;
310
310
  lease?: string | Uint8Array | undefined;
@@ -325,7 +325,7 @@ declare class AppFactory {
325
325
  method: string;
326
326
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
327
327
  }) => {
328
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
328
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
329
329
  rekeyTo?: ReadableAddress | undefined;
330
330
  note?: string | Uint8Array | undefined;
331
331
  lease?: string | Uint8Array | undefined;
@@ -347,11 +347,11 @@ declare class AppFactory {
347
347
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
348
348
  } & {
349
349
  sender: Address;
350
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
350
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
351
351
  method: ABIMethod;
352
- args: (ABIValue | TransactionWithSigner | Transaction | AppMethodCall<AppMethodCallParams> | AppMethodCall<{
352
+ args: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
353
353
  sender: SendingAddress;
354
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
354
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
355
355
  rekeyTo?: ReadableAddress | undefined;
356
356
  note?: string | Uint8Array | undefined;
357
357
  lease?: string | Uint8Array | undefined;
@@ -381,7 +381,7 @@ declare class AppFactory {
381
381
  extraProgramPages?: number | undefined;
382
382
  }> | AppMethodCall<{
383
383
  sender: SendingAddress;
384
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
384
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
385
385
  rekeyTo?: ReadableAddress | undefined;
386
386
  note?: string | Uint8Array | undefined;
387
387
  lease?: string | Uint8Array | undefined;
@@ -402,12 +402,12 @@ declare class AppFactory {
402
402
  rejectVersion?: number | undefined;
403
403
  approvalProgram: string | Uint8Array;
404
404
  clearStateProgram: string | Uint8Array;
405
- }> | Promise<Transaction> | undefined)[] | undefined;
405
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
406
406
  onComplete: OnApplicationComplete.UpdateApplication;
407
407
  };
408
408
  /** Return params for a deployment delete ABI call */
409
409
  deployDelete: (params: {
410
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
410
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
411
411
  rekeyTo?: ReadableAddress | undefined;
412
412
  note?: string | Uint8Array | undefined;
413
413
  lease?: string | Uint8Array | undefined;
@@ -428,7 +428,7 @@ declare class AppFactory {
428
428
  method: string;
429
429
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
430
430
  }) => {
431
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
431
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
432
432
  rekeyTo?: ReadableAddress | undefined;
433
433
  note?: string | Uint8Array | undefined;
434
434
  lease?: string | Uint8Array | undefined;
@@ -450,11 +450,11 @@ declare class AppFactory {
450
450
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
451
451
  } & {
452
452
  sender: Address;
453
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
453
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
454
454
  method: ABIMethod;
455
- args: (ABIValue | TransactionWithSigner | Transaction | AppMethodCall<AppMethodCallParams> | AppMethodCall<{
455
+ args: (Transaction | Promise<Transaction> | ABIValue | TransactionWithSigner | AppMethodCall<{
456
456
  sender: SendingAddress;
457
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
457
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
458
458
  rekeyTo?: ReadableAddress | undefined;
459
459
  note?: string | Uint8Array | undefined;
460
460
  lease?: string | Uint8Array | undefined;
@@ -484,7 +484,7 @@ declare class AppFactory {
484
484
  extraProgramPages?: number | undefined;
485
485
  }> | AppMethodCall<{
486
486
  sender: SendingAddress;
487
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
487
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
488
488
  rekeyTo?: ReadableAddress | undefined;
489
489
  note?: string | Uint8Array | undefined;
490
490
  lease?: string | Uint8Array | undefined;
@@ -505,13 +505,13 @@ declare class AppFactory {
505
505
  rejectVersion?: number | undefined;
506
506
  approvalProgram: string | Uint8Array;
507
507
  clearStateProgram: string | Uint8Array;
508
- }> | Promise<Transaction> | undefined)[] | undefined;
508
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
509
509
  onComplete: OnApplicationComplete.DeleteApplication;
510
510
  };
511
511
  bare: {
512
512
  /** Return params for a create bare call, including deploy-time TEAL template replacements and compilation if provided */
513
513
  create: (params?: {
514
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
514
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
515
515
  rekeyTo?: ReadableAddress | undefined;
516
516
  note?: string | Uint8Array | undefined;
517
517
  lease?: string | Uint8Array | undefined;
@@ -560,7 +560,7 @@ declare class AppFactory {
560
560
  /** The number of byte slices saved in local state. */
561
561
  localByteSlices: number;
562
562
  };
563
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
563
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
564
564
  rekeyTo?: ReadableAddress | undefined;
565
565
  note?: string | Uint8Array | undefined;
566
566
  lease?: string | Uint8Array | undefined;
@@ -584,12 +584,12 @@ declare class AppFactory {
584
584
  extraProgramPages?: number | undefined;
585
585
  } & {
586
586
  sender: Address;
587
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
587
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
588
588
  onComplete: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication;
589
589
  }>;
590
590
  /** Return params for a deployment update bare call */
591
591
  deployUpdate: (params?: {
592
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
592
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
593
593
  rekeyTo?: ReadableAddress | undefined;
594
594
  note?: string | Uint8Array | undefined;
595
595
  lease?: string | Uint8Array | undefined;
@@ -608,7 +608,7 @@ declare class AppFactory {
608
608
  rejectVersion?: number | undefined;
609
609
  sender?: ReadableAddress | undefined;
610
610
  } | undefined) => {
611
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
611
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
612
612
  rekeyTo?: ReadableAddress | undefined;
613
613
  note?: string | Uint8Array | undefined;
614
614
  lease?: string | Uint8Array | undefined;
@@ -628,12 +628,12 @@ declare class AppFactory {
628
628
  sender?: ReadableAddress | undefined;
629
629
  } & {
630
630
  sender: Address;
631
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
631
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
632
632
  onComplete: OnApplicationComplete.UpdateApplication;
633
633
  };
634
634
  /** Return params for a deployment delete bare call */
635
635
  deployDelete: (params?: {
636
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
636
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
637
637
  rekeyTo?: ReadableAddress | undefined;
638
638
  note?: string | Uint8Array | undefined;
639
639
  lease?: string | Uint8Array | undefined;
@@ -652,7 +652,7 @@ declare class AppFactory {
652
652
  rejectVersion?: number | undefined;
653
653
  sender?: ReadableAddress | undefined;
654
654
  } | undefined) => {
655
- signer?: TransactionSigner | AddressWithTransactionSigner | undefined;
655
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
656
656
  rekeyTo?: ReadableAddress | undefined;
657
657
  note?: string | Uint8Array | undefined;
658
658
  lease?: string | Uint8Array | undefined;
@@ -672,7 +672,7 @@ declare class AppFactory {
672
672
  sender?: ReadableAddress | undefined;
673
673
  } & {
674
674
  sender: Address;
675
- signer: TransactionSigner | AddressWithTransactionSigner | undefined;
675
+ signer: AddressWithTransactionSigner | TransactionSigner | undefined;
676
676
  onComplete: OnApplicationComplete.DeleteApplication;
677
677
  };
678
678
  };
@@ -46,7 +46,7 @@ interface GetTestAccountParams {
46
46
  /** Whether to suppress the log (which includes a mnemonic) or not (default: do not suppress the log) */
47
47
  suppressLog?: boolean;
48
48
  /** Optional override for how to get a test account; this allows you to retrieve accounts from a known or cached list of accounts. */
49
- accountGetter?: (algorand: AlgorandClient) => Promise<AddressWithSigners>;
49
+ accountGetter?: (algorand: AlgorandClient) => Promise<Address & AddressWithSigners>;
50
50
  }
51
51
  /** Configuration for creating an Algorand testing fixture. */
52
52
  interface AlgorandFixtureConfig extends Partial<AlgoConfig> {
@@ -59,7 +59,7 @@ interface AlgorandFixtureConfig extends Partial<AlgoConfig> {
59
59
  /** The amount of funds to allocate to the default testing account, if not specified then it will get 10 ALGO. */
60
60
  testAccountFunding?: AlgoAmount;
61
61
  /** Optional override for how to get an account; this allows you to retrieve accounts from a known or cached list of accounts. */
62
- accountGetter?: (algod: AlgodClient, kmd?: KmdClient) => Promise<AddressWithSigners>;
62
+ accountGetter?: (algorand: AlgorandClient) => Promise<Address & AddressWithSigners>;
63
63
  }
64
64
  /** An Algorand automated testing fixture */
65
65
  interface AlgorandFixture {