@algorandfoundation/algokit-utils 10.0.0-alpha.15 → 10.0.0-alpha.16

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.
@@ -386,17 +386,17 @@ declare class AppClient {
386
386
  * @returns The parameters which can be used to create a fund app account payment transaction
387
387
  */
388
388
  fundAppAccount: (params: {
389
- amount: AlgoAmount;
390
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
389
+ maxFee?: AlgoAmount | undefined;
390
+ lease?: string | Uint8Array | undefined;
391
391
  rekeyTo?: ReadableAddress | undefined;
392
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
392
393
  note?: string | Uint8Array | undefined;
393
- lease?: string | Uint8Array | undefined;
394
394
  staticFee?: AlgoAmount | undefined;
395
395
  extraFee?: AlgoAmount | undefined;
396
- maxFee?: AlgoAmount | undefined;
397
396
  validityWindow?: number | bigint | undefined;
398
397
  firstValidRound?: bigint | undefined;
399
398
  lastValidRound?: bigint | undefined;
399
+ amount: AlgoAmount;
400
400
  closeRemainderTo?: ReadableAddress | undefined;
401
401
  maxRoundsToWaitForConfirmation?: number | undefined;
402
402
  suppressLog?: boolean | undefined;
@@ -407,16 +407,16 @@ declare class AppClient {
407
407
  sender: Address;
408
408
  signer: AddressWithTransactionSigner | TransactionSigner | undefined;
409
409
  receiver: Address;
410
- amount: AlgoAmount;
410
+ maxFee?: AlgoAmount | undefined;
411
+ lease?: string | Uint8Array | undefined;
411
412
  rekeyTo?: ReadableAddress | undefined;
412
413
  note?: string | Uint8Array | undefined;
413
- lease?: string | Uint8Array | undefined;
414
414
  staticFee?: AlgoAmount | undefined;
415
415
  extraFee?: AlgoAmount | undefined;
416
- maxFee?: AlgoAmount | undefined;
417
416
  validityWindow?: number | bigint | undefined;
418
417
  firstValidRound?: bigint | undefined;
419
418
  lastValidRound?: bigint | undefined;
419
+ amount: AlgoAmount;
420
420
  closeRemainderTo?: ReadableAddress | undefined;
421
421
  maxRoundsToWaitForConfirmation?: number | undefined;
422
422
  suppressLog?: boolean | undefined;
@@ -429,21 +429,21 @@ declare class AppClient {
429
429
  * @returns The parameters which can be used to create an update ABI method call
430
430
  */
431
431
  update: (params: {
432
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
432
+ maxFee?: AlgoAmount | undefined;
433
+ lease?: string | Uint8Array | undefined;
433
434
  rekeyTo?: ReadableAddress | undefined;
435
+ onComplete?: OnApplicationComplete | undefined;
436
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
434
437
  note?: string | Uint8Array | undefined;
435
- lease?: string | Uint8Array | undefined;
436
438
  staticFee?: AlgoAmount | undefined;
437
439
  extraFee?: AlgoAmount | undefined;
438
- maxFee?: AlgoAmount | undefined;
439
440
  validityWindow?: number | bigint | undefined;
440
441
  firstValidRound?: bigint | undefined;
441
442
  lastValidRound?: bigint | undefined;
442
- onComplete?: OnApplicationComplete | undefined;
443
443
  accountReferences?: ReadableAddress[] | undefined;
444
444
  appReferences?: bigint[] | undefined;
445
445
  assetReferences?: bigint[] | undefined;
446
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
446
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
447
447
  accessReferences?: ResourceReference[] | undefined;
448
448
  rejectVersion?: number | undefined;
449
449
  sender?: ReadableAddress | undefined;
@@ -456,21 +456,21 @@ declare class AppClient {
456
456
  clearStateProgram: Uint8Array;
457
457
  compiledApproval?: CompiledTeal | undefined;
458
458
  compiledClear?: CompiledTeal | undefined;
459
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
459
+ maxFee?: AlgoAmount | undefined;
460
+ lease?: string | Uint8Array | undefined;
460
461
  rekeyTo?: ReadableAddress | undefined;
462
+ onComplete?: OnApplicationComplete | undefined;
463
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
461
464
  note?: string | Uint8Array | undefined;
462
- lease?: string | Uint8Array | undefined;
463
465
  staticFee?: AlgoAmount | undefined;
464
466
  extraFee?: AlgoAmount | undefined;
465
- maxFee?: AlgoAmount | undefined;
466
467
  validityWindow?: number | bigint | undefined;
467
468
  firstValidRound?: bigint | undefined;
468
469
  lastValidRound?: bigint | undefined;
469
- onComplete?: OnApplicationComplete | undefined;
470
470
  accountReferences?: ReadableAddress[] | undefined;
471
471
  appReferences?: bigint[] | undefined;
472
472
  assetReferences?: bigint[] | undefined;
473
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
473
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
474
474
  accessReferences?: ResourceReference[] | undefined;
475
475
  rejectVersion?: number | undefined;
476
476
  sender?: ReadableAddress | undefined;
@@ -488,24 +488,24 @@ declare class AppClient {
488
488
  signer: AddressWithTransactionSigner | TransactionSigner | undefined;
489
489
  method: ABIMethod;
490
490
  onComplete: OnApplicationComplete.UpdateApplication;
491
- args: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
492
- args?: Uint8Array[] | undefined;
491
+ args: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
492
+ maxFee?: AlgoAmount | undefined;
493
493
  sender: SendingAddress;
494
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
494
+ lease?: string | Uint8Array | undefined;
495
495
  rekeyTo?: ReadableAddress | undefined;
496
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
497
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
496
498
  note?: string | Uint8Array | undefined;
497
- lease?: string | Uint8Array | undefined;
498
499
  staticFee?: AlgoAmount | undefined;
499
500
  extraFee?: AlgoAmount | undefined;
500
- maxFee?: AlgoAmount | undefined;
501
501
  validityWindow?: number | bigint | undefined;
502
502
  firstValidRound?: bigint | undefined;
503
503
  lastValidRound?: bigint | undefined;
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;
508
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
508
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
509
509
  accessReferences?: ResourceReference[] | undefined;
510
510
  rejectVersion?: number | undefined;
511
511
  appId?: 0 | undefined;
@@ -536,12 +536,12 @@ declare class AppClient {
536
536
  accountReferences?: ReadableAddress[] | undefined;
537
537
  appReferences?: bigint[] | undefined;
538
538
  assetReferences?: bigint[] | undefined;
539
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
539
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
540
540
  accessReferences?: ResourceReference[] | undefined;
541
541
  rejectVersion?: number | undefined;
542
542
  approvalProgram: string | Uint8Array;
543
543
  clearStateProgram: string | Uint8Array;
544
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
544
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
545
545
  }>;
546
546
  /**
547
547
  * Return params for an opt-in ABI call
@@ -549,65 +549,65 @@ declare class AppClient {
549
549
  * @returns The parameters which can be used to create an opt-in ABI method call
550
550
  */
551
551
  optIn: (params: {
552
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
552
+ maxFee?: AlgoAmount | undefined;
553
+ lease?: string | Uint8Array | undefined;
553
554
  rekeyTo?: ReadableAddress | undefined;
555
+ onComplete?: OnApplicationComplete | undefined;
556
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
554
557
  note?: string | Uint8Array | undefined;
555
- lease?: string | Uint8Array | undefined;
556
558
  staticFee?: AlgoAmount | undefined;
557
559
  extraFee?: AlgoAmount | undefined;
558
- maxFee?: AlgoAmount | undefined;
559
560
  validityWindow?: number | bigint | undefined;
560
561
  firstValidRound?: bigint | undefined;
561
562
  lastValidRound?: bigint | undefined;
562
- onComplete?: OnApplicationComplete | undefined;
563
563
  accountReferences?: ReadableAddress[] | undefined;
564
564
  appReferences?: bigint[] | undefined;
565
565
  assetReferences?: bigint[] | undefined;
566
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
566
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
567
567
  accessReferences?: ResourceReference[] | undefined;
568
568
  rejectVersion?: number | undefined;
569
569
  sender?: ReadableAddress | undefined;
570
570
  method: string;
571
571
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
572
572
  }) => Promise<{
573
- appId: bigint;
573
+ maxFee?: AlgoAmount | undefined;
574
574
  sender: SendingAddress;
575
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
575
+ lease?: string | Uint8Array | undefined;
576
576
  rekeyTo?: ReadableAddress | undefined;
577
+ appId: bigint;
578
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
579
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
577
580
  note?: string | Uint8Array | undefined;
578
- lease?: string | Uint8Array | undefined;
579
581
  staticFee?: AlgoAmount | undefined;
580
582
  extraFee?: AlgoAmount | undefined;
581
- maxFee?: AlgoAmount | undefined;
582
583
  validityWindow?: number | bigint | undefined;
583
584
  firstValidRound?: bigint | undefined;
584
585
  lastValidRound?: bigint | undefined;
585
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
586
586
  accountReferences?: ReadableAddress[] | undefined;
587
587
  appReferences?: bigint[] | undefined;
588
588
  assetReferences?: bigint[] | undefined;
589
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
589
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
590
590
  accessReferences?: ResourceReference[] | undefined;
591
591
  rejectVersion?: number | undefined;
592
592
  method: ABIMethod;
593
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
594
- args?: Uint8Array[] | undefined;
593
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
594
+ maxFee?: AlgoAmount | undefined;
595
595
  sender: SendingAddress;
596
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
596
+ lease?: string | Uint8Array | undefined;
597
597
  rekeyTo?: ReadableAddress | undefined;
598
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
599
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
598
600
  note?: string | Uint8Array | undefined;
599
- lease?: string | Uint8Array | undefined;
600
601
  staticFee?: AlgoAmount | undefined;
601
602
  extraFee?: AlgoAmount | undefined;
602
- maxFee?: AlgoAmount | undefined;
603
603
  validityWindow?: number | bigint | undefined;
604
604
  firstValidRound?: bigint | undefined;
605
605
  lastValidRound?: bigint | undefined;
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;
610
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
610
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
611
611
  accessReferences?: ResourceReference[] | undefined;
612
612
  rejectVersion?: number | undefined;
613
613
  appId?: 0 | undefined;
@@ -638,12 +638,12 @@ declare class AppClient {
638
638
  accountReferences?: ReadableAddress[] | undefined;
639
639
  appReferences?: bigint[] | undefined;
640
640
  assetReferences?: bigint[] | undefined;
641
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
641
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
642
642
  accessReferences?: ResourceReference[] | undefined;
643
643
  rejectVersion?: number | undefined;
644
644
  approvalProgram: string | Uint8Array;
645
645
  clearStateProgram: string | Uint8Array;
646
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
646
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
647
647
  }>;
648
648
  /**
649
649
  * Return params for an delete ABI call
@@ -651,65 +651,65 @@ declare class AppClient {
651
651
  * @returns The parameters which can be used to create a delete ABI method call
652
652
  */
653
653
  delete: (params: {
654
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
654
+ maxFee?: AlgoAmount | undefined;
655
+ lease?: string | Uint8Array | undefined;
655
656
  rekeyTo?: ReadableAddress | undefined;
657
+ onComplete?: OnApplicationComplete | undefined;
658
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
656
659
  note?: string | Uint8Array | undefined;
657
- lease?: string | Uint8Array | undefined;
658
660
  staticFee?: AlgoAmount | undefined;
659
661
  extraFee?: AlgoAmount | undefined;
660
- maxFee?: AlgoAmount | undefined;
661
662
  validityWindow?: number | bigint | undefined;
662
663
  firstValidRound?: bigint | undefined;
663
664
  lastValidRound?: bigint | undefined;
664
- onComplete?: OnApplicationComplete | undefined;
665
665
  accountReferences?: ReadableAddress[] | undefined;
666
666
  appReferences?: bigint[] | undefined;
667
667
  assetReferences?: bigint[] | undefined;
668
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
668
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
669
669
  accessReferences?: ResourceReference[] | undefined;
670
670
  rejectVersion?: number | undefined;
671
671
  sender?: ReadableAddress | undefined;
672
672
  method: string;
673
673
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
674
674
  }) => Promise<{
675
- appId: bigint;
675
+ maxFee?: AlgoAmount | undefined;
676
676
  sender: SendingAddress;
677
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
677
+ lease?: string | Uint8Array | undefined;
678
678
  rekeyTo?: ReadableAddress | undefined;
679
+ appId: bigint;
680
+ onComplete?: OnApplicationComplete.DeleteApplication | undefined;
681
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
679
682
  note?: string | Uint8Array | undefined;
680
- lease?: string | Uint8Array | undefined;
681
683
  staticFee?: AlgoAmount | undefined;
682
684
  extraFee?: AlgoAmount | undefined;
683
- maxFee?: AlgoAmount | undefined;
684
685
  validityWindow?: number | bigint | undefined;
685
686
  firstValidRound?: bigint | undefined;
686
687
  lastValidRound?: bigint | undefined;
687
- onComplete?: OnApplicationComplete.DeleteApplication | undefined;
688
688
  accountReferences?: ReadableAddress[] | undefined;
689
689
  appReferences?: bigint[] | undefined;
690
690
  assetReferences?: bigint[] | undefined;
691
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
691
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
692
692
  accessReferences?: ResourceReference[] | undefined;
693
693
  rejectVersion?: number | undefined;
694
694
  method: ABIMethod;
695
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
696
- args?: Uint8Array[] | undefined;
695
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
696
+ maxFee?: AlgoAmount | undefined;
697
697
  sender: SendingAddress;
698
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
698
+ lease?: string | Uint8Array | undefined;
699
699
  rekeyTo?: ReadableAddress | undefined;
700
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
701
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
700
702
  note?: string | Uint8Array | undefined;
701
- lease?: string | Uint8Array | undefined;
702
703
  staticFee?: AlgoAmount | undefined;
703
704
  extraFee?: AlgoAmount | undefined;
704
- maxFee?: AlgoAmount | undefined;
705
705
  validityWindow?: number | bigint | undefined;
706
706
  firstValidRound?: bigint | undefined;
707
707
  lastValidRound?: bigint | undefined;
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;
712
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
712
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
713
713
  accessReferences?: ResourceReference[] | undefined;
714
714
  rejectVersion?: number | undefined;
715
715
  appId?: 0 | undefined;
@@ -740,77 +740,77 @@ declare class AppClient {
740
740
  accountReferences?: ReadableAddress[] | undefined;
741
741
  appReferences?: bigint[] | undefined;
742
742
  assetReferences?: bigint[] | undefined;
743
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
743
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
744
744
  accessReferences?: ResourceReference[] | undefined;
745
745
  rejectVersion?: number | undefined;
746
746
  approvalProgram: string | Uint8Array;
747
747
  clearStateProgram: string | Uint8Array;
748
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
748
+ }> | AppMethodCall<AppMethodCallParams> | 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
752
752
  * @returns The parameters which can be used to create a close out ABI method call
753
753
  */
754
754
  closeOut: (params: {
755
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
755
+ maxFee?: AlgoAmount | undefined;
756
+ lease?: string | Uint8Array | undefined;
756
757
  rekeyTo?: ReadableAddress | undefined;
758
+ onComplete?: OnApplicationComplete | undefined;
759
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
757
760
  note?: string | Uint8Array | undefined;
758
- lease?: string | Uint8Array | undefined;
759
761
  staticFee?: AlgoAmount | undefined;
760
762
  extraFee?: AlgoAmount | undefined;
761
- maxFee?: AlgoAmount | undefined;
762
763
  validityWindow?: number | bigint | undefined;
763
764
  firstValidRound?: bigint | undefined;
764
765
  lastValidRound?: bigint | undefined;
765
- onComplete?: OnApplicationComplete | undefined;
766
766
  accountReferences?: ReadableAddress[] | undefined;
767
767
  appReferences?: bigint[] | undefined;
768
768
  assetReferences?: bigint[] | undefined;
769
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
769
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
770
770
  accessReferences?: ResourceReference[] | undefined;
771
771
  rejectVersion?: number | undefined;
772
772
  sender?: ReadableAddress | undefined;
773
773
  method: string;
774
774
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
775
775
  }) => Promise<{
776
- appId: bigint;
776
+ maxFee?: AlgoAmount | undefined;
777
777
  sender: SendingAddress;
778
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
778
+ lease?: string | Uint8Array | undefined;
779
779
  rekeyTo?: ReadableAddress | undefined;
780
+ appId: bigint;
781
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
782
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
780
783
  note?: string | Uint8Array | undefined;
781
- lease?: string | Uint8Array | undefined;
782
784
  staticFee?: AlgoAmount | undefined;
783
785
  extraFee?: AlgoAmount | undefined;
784
- maxFee?: AlgoAmount | undefined;
785
786
  validityWindow?: number | bigint | undefined;
786
787
  firstValidRound?: bigint | undefined;
787
788
  lastValidRound?: bigint | undefined;
788
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
789
789
  accountReferences?: ReadableAddress[] | undefined;
790
790
  appReferences?: bigint[] | undefined;
791
791
  assetReferences?: bigint[] | undefined;
792
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
792
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
793
793
  accessReferences?: ResourceReference[] | undefined;
794
794
  rejectVersion?: number | undefined;
795
795
  method: ABIMethod;
796
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
797
- args?: Uint8Array[] | undefined;
796
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
797
+ maxFee?: AlgoAmount | undefined;
798
798
  sender: SendingAddress;
799
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
799
+ lease?: string | Uint8Array | undefined;
800
800
  rekeyTo?: ReadableAddress | undefined;
801
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
802
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
801
803
  note?: string | Uint8Array | undefined;
802
- lease?: string | Uint8Array | undefined;
803
804
  staticFee?: AlgoAmount | undefined;
804
805
  extraFee?: AlgoAmount | undefined;
805
- maxFee?: AlgoAmount | undefined;
806
806
  validityWindow?: number | bigint | undefined;
807
807
  firstValidRound?: bigint | undefined;
808
808
  lastValidRound?: bigint | undefined;
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;
813
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
813
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
814
814
  accessReferences?: ResourceReference[] | undefined;
815
815
  rejectVersion?: number | undefined;
816
816
  appId?: 0 | undefined;
@@ -841,77 +841,77 @@ declare class AppClient {
841
841
  accountReferences?: ReadableAddress[] | undefined;
842
842
  appReferences?: bigint[] | undefined;
843
843
  assetReferences?: bigint[] | undefined;
844
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
844
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
845
845
  accessReferences?: ResourceReference[] | undefined;
846
846
  rejectVersion?: number | undefined;
847
847
  approvalProgram: string | Uint8Array;
848
848
  clearStateProgram: string | Uint8Array;
849
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
849
+ }> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
850
850
  }>;
851
851
  /** Return params for an ABI call
852
852
  * @param params The parameters for the ABI method call
853
853
  * @returns The parameters which can be used to create an ABI method call
854
854
  */
855
855
  call: (params: {
856
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
856
+ maxFee?: AlgoAmount | undefined;
857
+ lease?: string | Uint8Array | undefined;
857
858
  rekeyTo?: ReadableAddress | undefined;
859
+ onComplete?: OnApplicationComplete | undefined;
860
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
858
861
  note?: string | Uint8Array | undefined;
859
- lease?: string | Uint8Array | undefined;
860
862
  staticFee?: AlgoAmount | undefined;
861
863
  extraFee?: AlgoAmount | undefined;
862
- maxFee?: AlgoAmount | undefined;
863
864
  validityWindow?: number | bigint | undefined;
864
865
  firstValidRound?: bigint | undefined;
865
866
  lastValidRound?: bigint | undefined;
866
- onComplete?: OnApplicationComplete | undefined;
867
867
  accountReferences?: ReadableAddress[] | undefined;
868
868
  appReferences?: bigint[] | undefined;
869
869
  assetReferences?: bigint[] | undefined;
870
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
870
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
871
871
  accessReferences?: ResourceReference[] | undefined;
872
872
  rejectVersion?: number | undefined;
873
873
  sender?: ReadableAddress | undefined;
874
874
  method: string;
875
875
  args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
876
876
  } & CallOnComplete) => Promise<{
877
- appId: bigint;
877
+ maxFee?: AlgoAmount | undefined;
878
878
  sender: SendingAddress;
879
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
879
+ lease?: string | Uint8Array | undefined;
880
880
  rekeyTo?: ReadableAddress | undefined;
881
+ appId: bigint;
882
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
883
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
881
884
  note?: string | Uint8Array | undefined;
882
- lease?: string | Uint8Array | undefined;
883
885
  staticFee?: AlgoAmount | undefined;
884
886
  extraFee?: AlgoAmount | undefined;
885
- maxFee?: AlgoAmount | undefined;
886
887
  validityWindow?: number | bigint | undefined;
887
888
  firstValidRound?: bigint | undefined;
888
889
  lastValidRound?: bigint | undefined;
889
- onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.DeleteApplication | undefined;
890
890
  accountReferences?: ReadableAddress[] | undefined;
891
891
  appReferences?: bigint[] | undefined;
892
892
  assetReferences?: bigint[] | undefined;
893
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
893
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
894
894
  accessReferences?: ResourceReference[] | undefined;
895
895
  rejectVersion?: number | undefined;
896
896
  method: ABIMethod;
897
- args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
898
- args?: Uint8Array[] | undefined;
897
+ args?: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
898
+ maxFee?: AlgoAmount | undefined;
899
899
  sender: SendingAddress;
900
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
900
+ lease?: string | Uint8Array | undefined;
901
901
  rekeyTo?: ReadableAddress | undefined;
902
+ onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
903
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
902
904
  note?: string | Uint8Array | undefined;
903
- lease?: string | Uint8Array | undefined;
904
905
  staticFee?: AlgoAmount | undefined;
905
906
  extraFee?: AlgoAmount | undefined;
906
- maxFee?: AlgoAmount | undefined;
907
907
  validityWindow?: number | bigint | undefined;
908
908
  firstValidRound?: bigint | undefined;
909
909
  lastValidRound?: bigint | undefined;
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;
914
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
914
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
915
915
  accessReferences?: ResourceReference[] | undefined;
916
916
  rejectVersion?: number | undefined;
917
917
  appId?: 0 | undefined;
@@ -942,32 +942,32 @@ declare class AppClient {
942
942
  accountReferences?: ReadableAddress[] | undefined;
943
943
  appReferences?: bigint[] | undefined;
944
944
  assetReferences?: bigint[] | undefined;
945
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
945
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
946
946
  accessReferences?: ResourceReference[] | undefined;
947
947
  rejectVersion?: number | undefined;
948
948
  approvalProgram: string | Uint8Array;
949
949
  clearStateProgram: string | Uint8Array;
950
- }> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
950
+ }> | AppMethodCall<AppMethodCallParams> | 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;
957
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
956
+ maxFee?: AlgoAmount | undefined;
957
+ lease?: string | Uint8Array | undefined;
958
958
  rekeyTo?: ReadableAddress | undefined;
959
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
959
960
  note?: string | Uint8Array | undefined;
960
- lease?: string | Uint8Array | undefined;
961
961
  staticFee?: AlgoAmount | undefined;
962
962
  extraFee?: AlgoAmount | undefined;
963
- maxFee?: AlgoAmount | undefined;
964
963
  validityWindow?: number | bigint | undefined;
965
964
  firstValidRound?: bigint | undefined;
966
965
  lastValidRound?: bigint | undefined;
966
+ args?: Uint8Array[] | undefined;
967
967
  accountReferences?: ReadableAddress[] | undefined;
968
968
  appReferences?: bigint[] | undefined;
969
969
  assetReferences?: bigint[] | undefined;
970
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
970
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
971
971
  accessReferences?: ResourceReference[] | undefined;
972
972
  rejectVersion?: number | undefined;
973
973
  sender?: ReadableAddress | undefined;
@@ -989,7 +989,7 @@ declare class AppClient {
989
989
  accountReferences?: ReadableAddress[] | undefined;
990
990
  appReferences?: bigint[] | undefined;
991
991
  assetReferences?: bigint[] | undefined;
992
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
992
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
993
993
  accessReferences?: ResourceReference[] | undefined;
994
994
  rejectVersion?: number | undefined;
995
995
  approvalProgram: string | Uint8Array;
@@ -997,105 +997,105 @@ declare class AppClient {
997
997
  }>;
998
998
  /** Return params for an opt-in call */
999
999
  optIn: (params?: {
1000
- args?: Uint8Array[] | undefined;
1001
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1000
+ maxFee?: AlgoAmount | undefined;
1001
+ lease?: string | Uint8Array | undefined;
1002
1002
  rekeyTo?: ReadableAddress | undefined;
1003
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1003
1004
  note?: string | Uint8Array | undefined;
1004
- lease?: string | Uint8Array | undefined;
1005
1005
  staticFee?: AlgoAmount | undefined;
1006
1006
  extraFee?: AlgoAmount | undefined;
1007
- maxFee?: AlgoAmount | undefined;
1008
1007
  validityWindow?: number | bigint | undefined;
1009
1008
  firstValidRound?: bigint | undefined;
1010
1009
  lastValidRound?: bigint | undefined;
1010
+ args?: Uint8Array[] | undefined;
1011
1011
  accountReferences?: ReadableAddress[] | undefined;
1012
1012
  appReferences?: bigint[] | undefined;
1013
1013
  assetReferences?: bigint[] | undefined;
1014
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1014
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1015
1015
  accessReferences?: ResourceReference[] | undefined;
1016
1016
  rejectVersion?: number | undefined;
1017
1017
  sender?: ReadableAddress | undefined;
1018
1018
  } | undefined) => AppCallParams;
1019
1019
  /** Return params for a delete call */
1020
1020
  delete: (params?: {
1021
- args?: Uint8Array[] | undefined;
1022
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1021
+ maxFee?: AlgoAmount | undefined;
1022
+ lease?: string | Uint8Array | undefined;
1023
1023
  rekeyTo?: ReadableAddress | undefined;
1024
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1024
1025
  note?: string | Uint8Array | undefined;
1025
- lease?: string | Uint8Array | undefined;
1026
1026
  staticFee?: AlgoAmount | undefined;
1027
1027
  extraFee?: AlgoAmount | undefined;
1028
- maxFee?: AlgoAmount | undefined;
1029
1028
  validityWindow?: number | bigint | undefined;
1030
1029
  firstValidRound?: bigint | undefined;
1031
1030
  lastValidRound?: bigint | undefined;
1031
+ args?: Uint8Array[] | undefined;
1032
1032
  accountReferences?: ReadableAddress[] | undefined;
1033
1033
  appReferences?: bigint[] | undefined;
1034
1034
  assetReferences?: bigint[] | undefined;
1035
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1035
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1036
1036
  accessReferences?: ResourceReference[] | undefined;
1037
1037
  rejectVersion?: number | undefined;
1038
1038
  sender?: ReadableAddress | undefined;
1039
1039
  } | undefined) => AppDeleteParams;
1040
1040
  /** Return params for a clear state call */
1041
1041
  clearState: (params?: {
1042
- args?: Uint8Array[] | undefined;
1043
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1042
+ maxFee?: AlgoAmount | undefined;
1043
+ lease?: string | Uint8Array | undefined;
1044
1044
  rekeyTo?: ReadableAddress | undefined;
1045
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1045
1046
  note?: string | Uint8Array | undefined;
1046
- lease?: string | Uint8Array | undefined;
1047
1047
  staticFee?: AlgoAmount | undefined;
1048
1048
  extraFee?: AlgoAmount | undefined;
1049
- maxFee?: AlgoAmount | undefined;
1050
1049
  validityWindow?: number | bigint | undefined;
1051
1050
  firstValidRound?: bigint | undefined;
1052
1051
  lastValidRound?: bigint | undefined;
1052
+ args?: Uint8Array[] | undefined;
1053
1053
  accountReferences?: ReadableAddress[] | undefined;
1054
1054
  appReferences?: bigint[] | undefined;
1055
1055
  assetReferences?: bigint[] | undefined;
1056
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1056
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1057
1057
  accessReferences?: ResourceReference[] | undefined;
1058
1058
  rejectVersion?: number | undefined;
1059
1059
  sender?: ReadableAddress | undefined;
1060
1060
  } | undefined) => AppCallParams;
1061
1061
  /** Return params for a close out call */
1062
1062
  closeOut: (params?: {
1063
- args?: Uint8Array[] | undefined;
1064
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1063
+ maxFee?: AlgoAmount | undefined;
1064
+ lease?: string | Uint8Array | undefined;
1065
1065
  rekeyTo?: ReadableAddress | undefined;
1066
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1066
1067
  note?: string | Uint8Array | undefined;
1067
- lease?: string | Uint8Array | undefined;
1068
1068
  staticFee?: AlgoAmount | undefined;
1069
1069
  extraFee?: AlgoAmount | undefined;
1070
- maxFee?: AlgoAmount | undefined;
1071
1070
  validityWindow?: number | bigint | undefined;
1072
1071
  firstValidRound?: bigint | undefined;
1073
1072
  lastValidRound?: bigint | undefined;
1073
+ args?: Uint8Array[] | undefined;
1074
1074
  accountReferences?: ReadableAddress[] | undefined;
1075
1075
  appReferences?: bigint[] | undefined;
1076
1076
  assetReferences?: bigint[] | undefined;
1077
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1077
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1078
1078
  accessReferences?: ResourceReference[] | undefined;
1079
1079
  rejectVersion?: number | undefined;
1080
1080
  sender?: ReadableAddress | undefined;
1081
1081
  } | undefined) => AppCallParams;
1082
1082
  /** Return params for a call (defaults to no-op) */
1083
1083
  call: (params?: ({
1084
- args?: Uint8Array[] | undefined;
1085
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1084
+ maxFee?: AlgoAmount | undefined;
1085
+ lease?: string | Uint8Array | undefined;
1086
1086
  rekeyTo?: ReadableAddress | undefined;
1087
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1087
1088
  note?: string | Uint8Array | undefined;
1088
- lease?: string | Uint8Array | undefined;
1089
1089
  staticFee?: AlgoAmount | undefined;
1090
1090
  extraFee?: AlgoAmount | undefined;
1091
- maxFee?: AlgoAmount | undefined;
1092
1091
  validityWindow?: number | bigint | undefined;
1093
1092
  firstValidRound?: bigint | undefined;
1094
1093
  lastValidRound?: bigint | undefined;
1094
+ args?: Uint8Array[] | undefined;
1095
1095
  accountReferences?: ReadableAddress[] | undefined;
1096
1096
  appReferences?: bigint[] | undefined;
1097
1097
  assetReferences?: bigint[] | undefined;
1098
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1098
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1099
1099
  accessReferences?: ResourceReference[] | undefined;
1100
1100
  rejectVersion?: number | undefined;
1101
1101
  sender?: ReadableAddress | undefined;
@@ -1109,17 +1109,17 @@ declare class AppClient {
1109
1109
  * @returns A transaction which can be used to fund the app account
1110
1110
  */
1111
1111
  fundAppAccount: (params: {
1112
- amount: AlgoAmount;
1113
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1112
+ maxFee?: AlgoAmount | undefined;
1113
+ lease?: string | Uint8Array | undefined;
1114
1114
  rekeyTo?: ReadableAddress | undefined;
1115
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1115
1116
  note?: string | Uint8Array | undefined;
1116
- lease?: string | Uint8Array | undefined;
1117
1117
  staticFee?: AlgoAmount | undefined;
1118
1118
  extraFee?: AlgoAmount | undefined;
1119
- maxFee?: AlgoAmount | undefined;
1120
1119
  validityWindow?: number | bigint | undefined;
1121
1120
  firstValidRound?: bigint | undefined;
1122
1121
  lastValidRound?: bigint | undefined;
1122
+ amount: AlgoAmount;
1123
1123
  closeRemainderTo?: ReadableAddress | undefined;
1124
1124
  maxRoundsToWaitForConfirmation?: number | undefined;
1125
1125
  suppressLog?: boolean | undefined;
@@ -1133,21 +1133,21 @@ declare class AppClient {
1133
1133
  * @returns The transactions which can be used to create an update ABI method call
1134
1134
  */
1135
1135
  update: (params: {
1136
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1136
+ maxFee?: AlgoAmount | undefined;
1137
+ lease?: string | Uint8Array | undefined;
1137
1138
  rekeyTo?: ReadableAddress | undefined;
1139
+ onComplete?: OnApplicationComplete | undefined;
1140
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1138
1141
  note?: string | Uint8Array | undefined;
1139
- lease?: string | Uint8Array | undefined;
1140
1142
  staticFee?: AlgoAmount | undefined;
1141
1143
  extraFee?: AlgoAmount | undefined;
1142
- maxFee?: AlgoAmount | undefined;
1143
1144
  validityWindow?: number | bigint | undefined;
1144
1145
  firstValidRound?: bigint | undefined;
1145
1146
  lastValidRound?: bigint | undefined;
1146
- onComplete?: OnApplicationComplete | undefined;
1147
1147
  accountReferences?: ReadableAddress[] | undefined;
1148
1148
  appReferences?: bigint[] | undefined;
1149
1149
  assetReferences?: bigint[] | undefined;
1150
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1150
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1151
1151
  accessReferences?: ResourceReference[] | undefined;
1152
1152
  rejectVersion?: number | undefined;
1153
1153
  sender?: ReadableAddress | undefined;
@@ -1164,21 +1164,21 @@ declare class AppClient {
1164
1164
  * @returns The transactions which can be used to create an opt-in ABI method call
1165
1165
  */
1166
1166
  optIn: (params: {
1167
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1167
+ maxFee?: AlgoAmount | undefined;
1168
+ lease?: string | Uint8Array | undefined;
1168
1169
  rekeyTo?: ReadableAddress | undefined;
1170
+ onComplete?: OnApplicationComplete | undefined;
1171
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1169
1172
  note?: string | Uint8Array | undefined;
1170
- lease?: string | Uint8Array | undefined;
1171
1173
  staticFee?: AlgoAmount | undefined;
1172
1174
  extraFee?: AlgoAmount | undefined;
1173
- maxFee?: AlgoAmount | undefined;
1174
1175
  validityWindow?: number | bigint | undefined;
1175
1176
  firstValidRound?: bigint | undefined;
1176
1177
  lastValidRound?: bigint | undefined;
1177
- onComplete?: OnApplicationComplete | undefined;
1178
1178
  accountReferences?: ReadableAddress[] | undefined;
1179
1179
  appReferences?: bigint[] | undefined;
1180
1180
  assetReferences?: bigint[] | undefined;
1181
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1181
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1182
1182
  accessReferences?: ResourceReference[] | undefined;
1183
1183
  rejectVersion?: number | undefined;
1184
1184
  sender?: ReadableAddress | undefined;
@@ -1195,21 +1195,21 @@ declare class AppClient {
1195
1195
  * @returns The transactions which can be used to create a delete ABI method call
1196
1196
  */
1197
1197
  delete: (params: {
1198
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1198
+ maxFee?: AlgoAmount | undefined;
1199
+ lease?: string | Uint8Array | undefined;
1199
1200
  rekeyTo?: ReadableAddress | undefined;
1201
+ onComplete?: OnApplicationComplete | undefined;
1202
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1200
1203
  note?: string | Uint8Array | undefined;
1201
- lease?: string | Uint8Array | undefined;
1202
1204
  staticFee?: AlgoAmount | undefined;
1203
1205
  extraFee?: AlgoAmount | undefined;
1204
- maxFee?: AlgoAmount | undefined;
1205
1206
  validityWindow?: number | bigint | undefined;
1206
1207
  firstValidRound?: bigint | undefined;
1207
1208
  lastValidRound?: bigint | undefined;
1208
- onComplete?: OnApplicationComplete | undefined;
1209
1209
  accountReferences?: ReadableAddress[] | undefined;
1210
1210
  appReferences?: bigint[] | undefined;
1211
1211
  assetReferences?: bigint[] | undefined;
1212
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1212
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1213
1213
  accessReferences?: ResourceReference[] | undefined;
1214
1214
  rejectVersion?: number | undefined;
1215
1215
  sender?: ReadableAddress | undefined;
@@ -1226,21 +1226,21 @@ declare class AppClient {
1226
1226
  * @returns The transactions which can be used to create a close out ABI method call
1227
1227
  */
1228
1228
  closeOut: (params: {
1229
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1229
+ maxFee?: AlgoAmount | undefined;
1230
+ lease?: string | Uint8Array | undefined;
1230
1231
  rekeyTo?: ReadableAddress | undefined;
1232
+ onComplete?: OnApplicationComplete | undefined;
1233
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1231
1234
  note?: string | Uint8Array | undefined;
1232
- lease?: string | Uint8Array | undefined;
1233
1235
  staticFee?: AlgoAmount | undefined;
1234
1236
  extraFee?: AlgoAmount | undefined;
1235
- maxFee?: AlgoAmount | undefined;
1236
1237
  validityWindow?: number | bigint | undefined;
1237
1238
  firstValidRound?: bigint | undefined;
1238
1239
  lastValidRound?: bigint | undefined;
1239
- onComplete?: OnApplicationComplete | undefined;
1240
1240
  accountReferences?: ReadableAddress[] | undefined;
1241
1241
  appReferences?: bigint[] | undefined;
1242
1242
  assetReferences?: bigint[] | undefined;
1243
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1243
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1244
1244
  accessReferences?: ResourceReference[] | undefined;
1245
1245
  rejectVersion?: number | undefined;
1246
1246
  sender?: ReadableAddress | undefined;
@@ -1257,21 +1257,21 @@ declare class AppClient {
1257
1257
  * @returns The transactions which can be used to create an ABI method call
1258
1258
  */
1259
1259
  call: (params: {
1260
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1260
+ maxFee?: AlgoAmount | undefined;
1261
+ lease?: string | Uint8Array | undefined;
1261
1262
  rekeyTo?: ReadableAddress | undefined;
1263
+ onComplete?: OnApplicationComplete | undefined;
1264
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1262
1265
  note?: string | Uint8Array | undefined;
1263
- lease?: string | Uint8Array | undefined;
1264
1266
  staticFee?: AlgoAmount | undefined;
1265
1267
  extraFee?: AlgoAmount | undefined;
1266
- maxFee?: AlgoAmount | undefined;
1267
1268
  validityWindow?: number | bigint | undefined;
1268
1269
  firstValidRound?: bigint | undefined;
1269
1270
  lastValidRound?: bigint | undefined;
1270
- onComplete?: OnApplicationComplete | undefined;
1271
1271
  accountReferences?: ReadableAddress[] | undefined;
1272
1272
  appReferences?: bigint[] | undefined;
1273
1273
  assetReferences?: bigint[] | undefined;
1274
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1274
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1275
1275
  accessReferences?: ResourceReference[] | undefined;
1276
1276
  rejectVersion?: number | undefined;
1277
1277
  sender?: ReadableAddress | undefined;
@@ -1286,126 +1286,126 @@ 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;
1290
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1289
+ maxFee?: AlgoAmount | undefined;
1290
+ lease?: string | Uint8Array | undefined;
1291
1291
  rekeyTo?: ReadableAddress | undefined;
1292
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1292
1293
  note?: string | Uint8Array | undefined;
1293
- lease?: string | Uint8Array | undefined;
1294
1294
  staticFee?: AlgoAmount | undefined;
1295
1295
  extraFee?: AlgoAmount | undefined;
1296
- maxFee?: AlgoAmount | undefined;
1297
1296
  validityWindow?: number | bigint | undefined;
1298
1297
  firstValidRound?: bigint | undefined;
1299
1298
  lastValidRound?: bigint | undefined;
1299
+ args?: Uint8Array[] | undefined;
1300
1300
  accountReferences?: ReadableAddress[] | undefined;
1301
1301
  appReferences?: bigint[] | undefined;
1302
1302
  assetReferences?: bigint[] | undefined;
1303
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1303
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1304
1304
  accessReferences?: ResourceReference[] | undefined;
1305
1305
  rejectVersion?: number | undefined;
1306
1306
  sender?: ReadableAddress | undefined;
1307
1307
  } & AppClientCompilationParams) | undefined) => Promise<Transaction>;
1308
1308
  /** Returns a transaction for an opt-in call */
1309
1309
  optIn: (params?: {
1310
- args?: Uint8Array[] | undefined;
1311
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1310
+ maxFee?: AlgoAmount | undefined;
1311
+ lease?: string | Uint8Array | undefined;
1312
1312
  rekeyTo?: ReadableAddress | undefined;
1313
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1313
1314
  note?: string | Uint8Array | undefined;
1314
- lease?: string | Uint8Array | undefined;
1315
1315
  staticFee?: AlgoAmount | undefined;
1316
1316
  extraFee?: AlgoAmount | undefined;
1317
- maxFee?: AlgoAmount | undefined;
1318
1317
  validityWindow?: number | bigint | undefined;
1319
1318
  firstValidRound?: bigint | undefined;
1320
1319
  lastValidRound?: bigint | undefined;
1320
+ args?: Uint8Array[] | undefined;
1321
1321
  accountReferences?: ReadableAddress[] | undefined;
1322
1322
  appReferences?: bigint[] | undefined;
1323
1323
  assetReferences?: bigint[] | undefined;
1324
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1324
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1325
1325
  accessReferences?: ResourceReference[] | undefined;
1326
1326
  rejectVersion?: number | undefined;
1327
1327
  sender?: ReadableAddress | undefined;
1328
1328
  } | undefined) => Promise<Transaction>;
1329
1329
  /** Returns a transaction for a delete call */
1330
1330
  delete: (params?: {
1331
- args?: Uint8Array[] | undefined;
1332
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1331
+ maxFee?: AlgoAmount | undefined;
1332
+ lease?: string | Uint8Array | undefined;
1333
1333
  rekeyTo?: ReadableAddress | undefined;
1334
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1334
1335
  note?: string | Uint8Array | undefined;
1335
- lease?: string | Uint8Array | undefined;
1336
1336
  staticFee?: AlgoAmount | undefined;
1337
1337
  extraFee?: AlgoAmount | undefined;
1338
- maxFee?: AlgoAmount | undefined;
1339
1338
  validityWindow?: number | bigint | undefined;
1340
1339
  firstValidRound?: bigint | undefined;
1341
1340
  lastValidRound?: bigint | undefined;
1341
+ args?: Uint8Array[] | undefined;
1342
1342
  accountReferences?: ReadableAddress[] | undefined;
1343
1343
  appReferences?: bigint[] | undefined;
1344
1344
  assetReferences?: bigint[] | undefined;
1345
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1345
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1346
1346
  accessReferences?: ResourceReference[] | undefined;
1347
1347
  rejectVersion?: number | undefined;
1348
1348
  sender?: ReadableAddress | undefined;
1349
1349
  } | undefined) => Promise<Transaction>;
1350
1350
  /** Returns a transaction for a clear state call */
1351
1351
  clearState: (params?: {
1352
- args?: Uint8Array[] | undefined;
1353
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1352
+ maxFee?: AlgoAmount | undefined;
1353
+ lease?: string | Uint8Array | undefined;
1354
1354
  rekeyTo?: ReadableAddress | undefined;
1355
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1355
1356
  note?: string | Uint8Array | undefined;
1356
- lease?: string | Uint8Array | undefined;
1357
1357
  staticFee?: AlgoAmount | undefined;
1358
1358
  extraFee?: AlgoAmount | undefined;
1359
- maxFee?: AlgoAmount | undefined;
1360
1359
  validityWindow?: number | bigint | undefined;
1361
1360
  firstValidRound?: bigint | undefined;
1362
1361
  lastValidRound?: bigint | undefined;
1362
+ args?: Uint8Array[] | undefined;
1363
1363
  accountReferences?: ReadableAddress[] | undefined;
1364
1364
  appReferences?: bigint[] | undefined;
1365
1365
  assetReferences?: bigint[] | undefined;
1366
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1366
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1367
1367
  accessReferences?: ResourceReference[] | undefined;
1368
1368
  rejectVersion?: number | undefined;
1369
1369
  sender?: ReadableAddress | undefined;
1370
1370
  } | undefined) => Promise<Transaction>;
1371
1371
  /** Returns a transaction for a close out call */
1372
1372
  closeOut: (params?: {
1373
- args?: Uint8Array[] | undefined;
1374
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1373
+ maxFee?: AlgoAmount | undefined;
1374
+ lease?: string | Uint8Array | undefined;
1375
1375
  rekeyTo?: ReadableAddress | undefined;
1376
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1376
1377
  note?: string | Uint8Array | undefined;
1377
- lease?: string | Uint8Array | undefined;
1378
1378
  staticFee?: AlgoAmount | undefined;
1379
1379
  extraFee?: AlgoAmount | undefined;
1380
- maxFee?: AlgoAmount | undefined;
1381
1380
  validityWindow?: number | bigint | undefined;
1382
1381
  firstValidRound?: bigint | undefined;
1383
1382
  lastValidRound?: bigint | undefined;
1383
+ args?: Uint8Array[] | undefined;
1384
1384
  accountReferences?: ReadableAddress[] | undefined;
1385
1385
  appReferences?: bigint[] | undefined;
1386
1386
  assetReferences?: bigint[] | undefined;
1387
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1387
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1388
1388
  accessReferences?: ResourceReference[] | undefined;
1389
1389
  rejectVersion?: number | undefined;
1390
1390
  sender?: ReadableAddress | undefined;
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;
1395
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1394
+ maxFee?: AlgoAmount | undefined;
1395
+ lease?: string | Uint8Array | undefined;
1396
1396
  rekeyTo?: ReadableAddress | undefined;
1397
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1397
1398
  note?: string | Uint8Array | undefined;
1398
- lease?: string | Uint8Array | undefined;
1399
1399
  staticFee?: AlgoAmount | undefined;
1400
1400
  extraFee?: AlgoAmount | undefined;
1401
- maxFee?: AlgoAmount | undefined;
1402
1401
  validityWindow?: number | bigint | undefined;
1403
1402
  firstValidRound?: bigint | undefined;
1404
1403
  lastValidRound?: bigint | undefined;
1404
+ args?: Uint8Array[] | undefined;
1405
1405
  accountReferences?: ReadableAddress[] | undefined;
1406
1406
  appReferences?: bigint[] | undefined;
1407
1407
  assetReferences?: bigint[] | undefined;
1408
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1408
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1409
1409
  accessReferences?: ResourceReference[] | undefined;
1410
1410
  rejectVersion?: number | undefined;
1411
1411
  sender?: ReadableAddress | undefined;
@@ -1419,17 +1419,17 @@ declare class AppClient {
1419
1419
  * @returns The result of send the fund app account payment transaction
1420
1420
  */
1421
1421
  fundAppAccount: (params: {
1422
- amount: AlgoAmount;
1423
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1422
+ maxFee?: AlgoAmount | undefined;
1423
+ lease?: string | Uint8Array | undefined;
1424
1424
  rekeyTo?: ReadableAddress | undefined;
1425
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1425
1426
  note?: string | Uint8Array | undefined;
1426
- lease?: string | Uint8Array | undefined;
1427
1427
  staticFee?: AlgoAmount | undefined;
1428
1428
  extraFee?: AlgoAmount | undefined;
1429
- maxFee?: AlgoAmount | undefined;
1430
1429
  validityWindow?: number | bigint | undefined;
1431
1430
  firstValidRound?: bigint | undefined;
1432
1431
  lastValidRound?: bigint | undefined;
1432
+ amount: AlgoAmount;
1433
1433
  closeRemainderTo?: ReadableAddress | undefined;
1434
1434
  maxRoundsToWaitForConfirmation?: number | undefined;
1435
1435
  suppressLog?: boolean | undefined;
@@ -1451,21 +1451,21 @@ declare class AppClient {
1451
1451
  * @returns The result of sending the update ABI method call
1452
1452
  */
1453
1453
  update: (params: {
1454
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1454
+ maxFee?: AlgoAmount | undefined;
1455
+ lease?: string | Uint8Array | undefined;
1455
1456
  rekeyTo?: ReadableAddress | undefined;
1457
+ onComplete?: OnApplicationComplete | undefined;
1458
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1456
1459
  note?: string | Uint8Array | undefined;
1457
- lease?: string | Uint8Array | undefined;
1458
1460
  staticFee?: AlgoAmount | undefined;
1459
1461
  extraFee?: AlgoAmount | undefined;
1460
- maxFee?: AlgoAmount | undefined;
1461
1462
  validityWindow?: number | bigint | undefined;
1462
1463
  firstValidRound?: bigint | undefined;
1463
1464
  lastValidRound?: bigint | undefined;
1464
- onComplete?: OnApplicationComplete | undefined;
1465
1465
  accountReferences?: ReadableAddress[] | undefined;
1466
1466
  appReferences?: bigint[] | undefined;
1467
1467
  assetReferences?: bigint[] | undefined;
1468
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1468
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1469
1469
  accessReferences?: ResourceReference[] | undefined;
1470
1470
  rejectVersion?: number | undefined;
1471
1471
  sender?: ReadableAddress | undefined;
@@ -1474,8 +1474,8 @@ declare class AppClient {
1474
1474
  } & AppClientCompilationParams & SendParams) => Promise<{
1475
1475
  compiledApproval?: CompiledTeal | undefined;
1476
1476
  compiledClear?: CompiledTeal | undefined;
1477
- confirmations: PendingTransactionResponse[];
1478
1477
  transactions: Transaction[];
1478
+ confirmations: PendingTransactionResponse[];
1479
1479
  groupId: string | undefined;
1480
1480
  txIds: string[];
1481
1481
  returns?: ABIReturn[] | undefined;
@@ -1489,21 +1489,21 @@ declare class AppClient {
1489
1489
  * @returns The result of sending the opt-in ABI method call
1490
1490
  */
1491
1491
  optIn: (params: {
1492
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1492
+ maxFee?: AlgoAmount | undefined;
1493
+ lease?: string | Uint8Array | undefined;
1493
1494
  rekeyTo?: ReadableAddress | undefined;
1495
+ onComplete?: OnApplicationComplete | undefined;
1496
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1494
1497
  note?: string | Uint8Array | undefined;
1495
- lease?: string | Uint8Array | undefined;
1496
1498
  staticFee?: AlgoAmount | undefined;
1497
1499
  extraFee?: AlgoAmount | undefined;
1498
- maxFee?: AlgoAmount | undefined;
1499
1500
  validityWindow?: number | bigint | undefined;
1500
1501
  firstValidRound?: bigint | undefined;
1501
1502
  lastValidRound?: bigint | undefined;
1502
- onComplete?: OnApplicationComplete | undefined;
1503
1503
  accountReferences?: ReadableAddress[] | undefined;
1504
1504
  appReferences?: bigint[] | undefined;
1505
1505
  assetReferences?: bigint[] | undefined;
1506
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1506
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1507
1507
  accessReferences?: ResourceReference[] | undefined;
1508
1508
  rejectVersion?: number | undefined;
1509
1509
  sender?: ReadableAddress | undefined;
@@ -1525,21 +1525,21 @@ declare class AppClient {
1525
1525
  * @returns The result of sending the delete ABI method call
1526
1526
  */
1527
1527
  delete: (params: {
1528
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1528
+ maxFee?: AlgoAmount | undefined;
1529
+ lease?: string | Uint8Array | undefined;
1529
1530
  rekeyTo?: ReadableAddress | undefined;
1531
+ onComplete?: OnApplicationComplete | undefined;
1532
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1530
1533
  note?: string | Uint8Array | undefined;
1531
- lease?: string | Uint8Array | undefined;
1532
1534
  staticFee?: AlgoAmount | undefined;
1533
1535
  extraFee?: AlgoAmount | undefined;
1534
- maxFee?: AlgoAmount | undefined;
1535
1536
  validityWindow?: number | bigint | undefined;
1536
1537
  firstValidRound?: bigint | undefined;
1537
1538
  lastValidRound?: bigint | undefined;
1538
- onComplete?: OnApplicationComplete | undefined;
1539
1539
  accountReferences?: ReadableAddress[] | undefined;
1540
1540
  appReferences?: bigint[] | undefined;
1541
1541
  assetReferences?: bigint[] | undefined;
1542
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1542
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1543
1543
  accessReferences?: ResourceReference[] | undefined;
1544
1544
  rejectVersion?: number | undefined;
1545
1545
  sender?: ReadableAddress | undefined;
@@ -1561,21 +1561,21 @@ declare class AppClient {
1561
1561
  * @returns The result of sending the close out ABI method call
1562
1562
  */
1563
1563
  closeOut: (params: {
1564
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1564
+ maxFee?: AlgoAmount | undefined;
1565
+ lease?: string | Uint8Array | undefined;
1565
1566
  rekeyTo?: ReadableAddress | undefined;
1567
+ onComplete?: OnApplicationComplete | undefined;
1568
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1566
1569
  note?: string | Uint8Array | undefined;
1567
- lease?: string | Uint8Array | undefined;
1568
1570
  staticFee?: AlgoAmount | undefined;
1569
1571
  extraFee?: AlgoAmount | undefined;
1570
- maxFee?: AlgoAmount | undefined;
1571
1572
  validityWindow?: number | bigint | undefined;
1572
1573
  firstValidRound?: bigint | undefined;
1573
1574
  lastValidRound?: bigint | undefined;
1574
- onComplete?: OnApplicationComplete | undefined;
1575
1575
  accountReferences?: ReadableAddress[] | undefined;
1576
1576
  appReferences?: bigint[] | undefined;
1577
1577
  assetReferences?: bigint[] | undefined;
1578
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1578
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1579
1579
  accessReferences?: ResourceReference[] | undefined;
1580
1580
  rejectVersion?: number | undefined;
1581
1581
  sender?: ReadableAddress | undefined;
@@ -1597,21 +1597,21 @@ declare class AppClient {
1597
1597
  * @returns The result of sending the ABI method call
1598
1598
  */
1599
1599
  call: (params: {
1600
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1600
+ maxFee?: AlgoAmount | undefined;
1601
+ lease?: string | Uint8Array | undefined;
1601
1602
  rekeyTo?: ReadableAddress | undefined;
1603
+ onComplete?: OnApplicationComplete | undefined;
1604
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1602
1605
  note?: string | Uint8Array | undefined;
1603
- lease?: string | Uint8Array | undefined;
1604
1606
  staticFee?: AlgoAmount | undefined;
1605
1607
  extraFee?: AlgoAmount | undefined;
1606
- maxFee?: AlgoAmount | undefined;
1607
1608
  validityWindow?: number | bigint | undefined;
1608
1609
  firstValidRound?: bigint | undefined;
1609
1610
  lastValidRound?: bigint | undefined;
1610
- onComplete?: OnApplicationComplete | undefined;
1611
1611
  accountReferences?: ReadableAddress[] | undefined;
1612
1612
  appReferences?: bigint[] | undefined;
1613
1613
  assetReferences?: bigint[] | undefined;
1614
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1614
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1615
1615
  accessReferences?: ResourceReference[] | undefined;
1616
1616
  rejectVersion?: number | undefined;
1617
1617
  sender?: ReadableAddress | undefined;
@@ -1631,21 +1631,21 @@ 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;
1635
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1634
+ maxFee?: AlgoAmount | undefined;
1635
+ lease?: string | Uint8Array | undefined;
1636
1636
  rekeyTo?: ReadableAddress | undefined;
1637
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1637
1638
  note?: string | Uint8Array | undefined;
1638
- lease?: string | Uint8Array | undefined;
1639
1639
  staticFee?: AlgoAmount | undefined;
1640
1640
  extraFee?: AlgoAmount | undefined;
1641
- maxFee?: AlgoAmount | undefined;
1642
1641
  validityWindow?: number | bigint | undefined;
1643
1642
  firstValidRound?: bigint | undefined;
1644
1643
  lastValidRound?: bigint | undefined;
1644
+ args?: Uint8Array[] | undefined;
1645
1645
  accountReferences?: ReadableAddress[] | undefined;
1646
1646
  appReferences?: bigint[] | undefined;
1647
1647
  assetReferences?: bigint[] | undefined;
1648
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1648
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1649
1649
  accessReferences?: ResourceReference[] | undefined;
1650
1650
  rejectVersion?: number | undefined;
1651
1651
  sender?: ReadableAddress | undefined;
@@ -1663,21 +1663,21 @@ declare class AppClient {
1663
1663
  }>;
1664
1664
  /** Signs and sends an opt-in call */
1665
1665
  optIn: (params?: ({
1666
- args?: Uint8Array[] | undefined;
1667
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1666
+ maxFee?: AlgoAmount | undefined;
1667
+ lease?: string | Uint8Array | undefined;
1668
1668
  rekeyTo?: ReadableAddress | undefined;
1669
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1669
1670
  note?: string | Uint8Array | undefined;
1670
- lease?: string | Uint8Array | undefined;
1671
1671
  staticFee?: AlgoAmount | undefined;
1672
1672
  extraFee?: AlgoAmount | undefined;
1673
- maxFee?: AlgoAmount | undefined;
1674
1673
  validityWindow?: number | bigint | undefined;
1675
1674
  firstValidRound?: bigint | undefined;
1676
1675
  lastValidRound?: bigint | undefined;
1676
+ args?: Uint8Array[] | undefined;
1677
1677
  accountReferences?: ReadableAddress[] | undefined;
1678
1678
  appReferences?: bigint[] | undefined;
1679
1679
  assetReferences?: bigint[] | undefined;
1680
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1680
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1681
1681
  accessReferences?: ResourceReference[] | undefined;
1682
1682
  rejectVersion?: number | undefined;
1683
1683
  sender?: ReadableAddress | undefined;
@@ -1693,21 +1693,21 @@ declare class AppClient {
1693
1693
  }>;
1694
1694
  /** Signs and sends a delete call */
1695
1695
  delete: (params?: ({
1696
- args?: Uint8Array[] | undefined;
1697
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1696
+ maxFee?: AlgoAmount | undefined;
1697
+ lease?: string | Uint8Array | undefined;
1698
1698
  rekeyTo?: ReadableAddress | undefined;
1699
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1699
1700
  note?: string | Uint8Array | undefined;
1700
- lease?: string | Uint8Array | undefined;
1701
1701
  staticFee?: AlgoAmount | undefined;
1702
1702
  extraFee?: AlgoAmount | undefined;
1703
- maxFee?: AlgoAmount | undefined;
1704
1703
  validityWindow?: number | bigint | undefined;
1705
1704
  firstValidRound?: bigint | undefined;
1706
1705
  lastValidRound?: bigint | undefined;
1706
+ args?: Uint8Array[] | undefined;
1707
1707
  accountReferences?: ReadableAddress[] | undefined;
1708
1708
  appReferences?: bigint[] | undefined;
1709
1709
  assetReferences?: bigint[] | undefined;
1710
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1710
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1711
1711
  accessReferences?: ResourceReference[] | undefined;
1712
1712
  rejectVersion?: number | undefined;
1713
1713
  sender?: ReadableAddress | undefined;
@@ -1723,21 +1723,21 @@ declare class AppClient {
1723
1723
  }>;
1724
1724
  /** Signs and sends a clear state call */
1725
1725
  clearState: (params?: ({
1726
- args?: Uint8Array[] | undefined;
1727
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1726
+ maxFee?: AlgoAmount | undefined;
1727
+ lease?: string | Uint8Array | undefined;
1728
1728
  rekeyTo?: ReadableAddress | undefined;
1729
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1729
1730
  note?: string | Uint8Array | undefined;
1730
- lease?: string | Uint8Array | undefined;
1731
1731
  staticFee?: AlgoAmount | undefined;
1732
1732
  extraFee?: AlgoAmount | undefined;
1733
- maxFee?: AlgoAmount | undefined;
1734
1733
  validityWindow?: number | bigint | undefined;
1735
1734
  firstValidRound?: bigint | undefined;
1736
1735
  lastValidRound?: bigint | undefined;
1736
+ args?: Uint8Array[] | undefined;
1737
1737
  accountReferences?: ReadableAddress[] | undefined;
1738
1738
  appReferences?: bigint[] | undefined;
1739
1739
  assetReferences?: bigint[] | undefined;
1740
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1740
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1741
1741
  accessReferences?: ResourceReference[] | undefined;
1742
1742
  rejectVersion?: number | undefined;
1743
1743
  sender?: ReadableAddress | undefined;
@@ -1753,21 +1753,21 @@ declare class AppClient {
1753
1753
  }>;
1754
1754
  /** Signs and sends a close out call */
1755
1755
  closeOut: (params?: ({
1756
- args?: Uint8Array[] | undefined;
1757
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1756
+ maxFee?: AlgoAmount | undefined;
1757
+ lease?: string | Uint8Array | undefined;
1758
1758
  rekeyTo?: ReadableAddress | undefined;
1759
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1759
1760
  note?: string | Uint8Array | undefined;
1760
- lease?: string | Uint8Array | undefined;
1761
1761
  staticFee?: AlgoAmount | undefined;
1762
1762
  extraFee?: AlgoAmount | undefined;
1763
- maxFee?: AlgoAmount | undefined;
1764
1763
  validityWindow?: number | bigint | undefined;
1765
1764
  firstValidRound?: bigint | undefined;
1766
1765
  lastValidRound?: bigint | undefined;
1766
+ args?: Uint8Array[] | undefined;
1767
1767
  accountReferences?: ReadableAddress[] | undefined;
1768
1768
  appReferences?: bigint[] | undefined;
1769
1769
  assetReferences?: bigint[] | undefined;
1770
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1770
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1771
1771
  accessReferences?: ResourceReference[] | undefined;
1772
1772
  rejectVersion?: number | undefined;
1773
1773
  sender?: ReadableAddress | undefined;
@@ -1783,21 +1783,21 @@ declare class AppClient {
1783
1783
  }>;
1784
1784
  /** Signs and sends a call (defaults to no-op) */
1785
1785
  call: (params?: ({
1786
- args?: Uint8Array[] | undefined;
1787
- signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1786
+ maxFee?: AlgoAmount | undefined;
1787
+ lease?: string | Uint8Array | undefined;
1788
1788
  rekeyTo?: ReadableAddress | undefined;
1789
+ signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
1789
1790
  note?: string | Uint8Array | undefined;
1790
- lease?: string | Uint8Array | undefined;
1791
1791
  staticFee?: AlgoAmount | undefined;
1792
1792
  extraFee?: AlgoAmount | undefined;
1793
- maxFee?: AlgoAmount | undefined;
1794
1793
  validityWindow?: number | bigint | undefined;
1795
1794
  firstValidRound?: bigint | undefined;
1796
1795
  lastValidRound?: bigint | undefined;
1796
+ args?: Uint8Array[] | undefined;
1797
1797
  accountReferences?: ReadableAddress[] | undefined;
1798
1798
  appReferences?: bigint[] | undefined;
1799
1799
  assetReferences?: bigint[] | undefined;
1800
- boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
1800
+ boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
1801
1801
  accessReferences?: ResourceReference[] | undefined;
1802
1802
  rejectVersion?: number | undefined;
1803
1803
  sender?: ReadableAddress | undefined;