@algorandfoundation/algokit-utils 10.0.0-alpha.2 → 10.0.0-alpha.4
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/algo25/index.d.ts +2 -0
- package/algo25/index.js +9 -0
- package/algo25/index.mjs +3 -0
- package/package.json +1 -1
- package/packages/abi/src/abi-method.d.ts +1 -1
- package/packages/abi/src/abi-method.js.map +1 -1
- package/packages/abi/src/abi-method.mjs.map +1 -1
- package/packages/algo25/src/index.d.ts +40 -0
- package/packages/algo25/src/index.js +44 -0
- package/packages/algo25/src/index.js.map +1 -1
- package/packages/algo25/src/index.mjs +39 -1
- package/packages/algo25/src/index.mjs.map +1 -1
- package/transactions/method-call.js +12 -12
- package/transactions/method-call.js.map +1 -1
- package/transactions/method-call.mjs +12 -12
- package/transactions/method-call.mjs.map +1 -1
- package/types/algorand-client-transaction-creator.d.ts +37 -37
- package/types/algorand-client-transaction-sender.d.ts +39 -39
- package/types/app-client.d.ts +64 -64
- package/types/app-factory.d.ts +27 -27
- package/types/app-manager.d.ts +1 -1
- package/types/app-manager.js +6 -1
- package/types/app-manager.js.map +1 -1
- package/types/app-manager.mjs +6 -1
- package/types/app-manager.mjs.map +1 -1
- package/types/composer.js +3 -6
- package/types/composer.js.map +1 -1
- package/types/composer.mjs +3 -6
- package/types/composer.mjs.map +1 -1
package/types/app-client.d.ts
CHANGED
|
@@ -443,7 +443,7 @@ declare class AppClient {
|
|
|
443
443
|
accountReferences?: ReadableAddress[] | undefined;
|
|
444
444
|
appReferences?: bigint[] | undefined;
|
|
445
445
|
assetReferences?: bigint[] | undefined;
|
|
446
|
-
boxReferences?: (
|
|
446
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
447
447
|
accessReferences?: AccessReference[] | undefined;
|
|
448
448
|
rejectVersion?: number | undefined;
|
|
449
449
|
sender?: ReadableAddress | undefined;
|
|
@@ -470,7 +470,7 @@ declare class AppClient {
|
|
|
470
470
|
accountReferences?: ReadableAddress[] | undefined;
|
|
471
471
|
appReferences?: bigint[] | undefined;
|
|
472
472
|
assetReferences?: bigint[] | undefined;
|
|
473
|
-
boxReferences?: (
|
|
473
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
474
474
|
accessReferences?: AccessReference[] | undefined;
|
|
475
475
|
rejectVersion?: number | undefined;
|
|
476
476
|
sender?: ReadableAddress | undefined;
|
|
@@ -488,7 +488,7 @@ declare class AppClient {
|
|
|
488
488
|
signer: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
489
489
|
method: ABIMethod;
|
|
490
490
|
onComplete: OnApplicationComplete.UpdateApplication;
|
|
491
|
-
args: (Transaction | ABIValue | TransactionWithSigner |
|
|
491
|
+
args: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
492
492
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
493
493
|
sender: SendingAddress;
|
|
494
494
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -500,12 +500,12 @@ declare class AppClient {
|
|
|
500
500
|
validityWindow?: number | bigint | undefined;
|
|
501
501
|
firstValidRound?: bigint | undefined;
|
|
502
502
|
lastValidRound?: bigint | undefined;
|
|
503
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
504
503
|
args?: Uint8Array[] | undefined;
|
|
504
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
505
505
|
accountReferences?: ReadableAddress[] | undefined;
|
|
506
506
|
appReferences?: bigint[] | undefined;
|
|
507
507
|
assetReferences?: bigint[] | undefined;
|
|
508
|
-
boxReferences?: (
|
|
508
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
509
509
|
accessReferences?: AccessReference[] | undefined;
|
|
510
510
|
rejectVersion?: number | undefined;
|
|
511
511
|
approvalProgram: string | Uint8Array;
|
|
@@ -535,12 +535,12 @@ declare class AppClient {
|
|
|
535
535
|
accountReferences?: ReadableAddress[] | undefined;
|
|
536
536
|
appReferences?: bigint[] | undefined;
|
|
537
537
|
assetReferences?: bigint[] | undefined;
|
|
538
|
-
boxReferences?: (
|
|
538
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
539
539
|
accessReferences?: AccessReference[] | undefined;
|
|
540
540
|
rejectVersion?: number | undefined;
|
|
541
541
|
approvalProgram: string | Uint8Array;
|
|
542
542
|
clearStateProgram: string | Uint8Array;
|
|
543
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
543
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
544
544
|
}>;
|
|
545
545
|
/**
|
|
546
546
|
* Return params for an opt-in ABI call
|
|
@@ -562,7 +562,7 @@ declare class AppClient {
|
|
|
562
562
|
accountReferences?: ReadableAddress[] | undefined;
|
|
563
563
|
appReferences?: bigint[] | undefined;
|
|
564
564
|
assetReferences?: bigint[] | undefined;
|
|
565
|
-
boxReferences?: (
|
|
565
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
566
566
|
accessReferences?: AccessReference[] | undefined;
|
|
567
567
|
rejectVersion?: number | undefined;
|
|
568
568
|
sender?: ReadableAddress | undefined;
|
|
@@ -585,11 +585,11 @@ declare class AppClient {
|
|
|
585
585
|
accountReferences?: ReadableAddress[] | undefined;
|
|
586
586
|
appReferences?: bigint[] | undefined;
|
|
587
587
|
assetReferences?: bigint[] | undefined;
|
|
588
|
-
boxReferences?: (
|
|
588
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
589
589
|
accessReferences?: AccessReference[] | undefined;
|
|
590
590
|
rejectVersion?: number | undefined;
|
|
591
591
|
method: ABIMethod;
|
|
592
|
-
args?: (Transaction | ABIValue | TransactionWithSigner |
|
|
592
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
593
593
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
594
594
|
sender: SendingAddress;
|
|
595
595
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -601,12 +601,12 @@ declare class AppClient {
|
|
|
601
601
|
validityWindow?: number | bigint | undefined;
|
|
602
602
|
firstValidRound?: bigint | undefined;
|
|
603
603
|
lastValidRound?: bigint | undefined;
|
|
604
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
605
604
|
args?: Uint8Array[] | undefined;
|
|
605
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
606
606
|
accountReferences?: ReadableAddress[] | undefined;
|
|
607
607
|
appReferences?: bigint[] | undefined;
|
|
608
608
|
assetReferences?: bigint[] | undefined;
|
|
609
|
-
boxReferences?: (
|
|
609
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
610
610
|
accessReferences?: AccessReference[] | undefined;
|
|
611
611
|
rejectVersion?: number | undefined;
|
|
612
612
|
approvalProgram: string | Uint8Array;
|
|
@@ -636,12 +636,12 @@ declare class AppClient {
|
|
|
636
636
|
accountReferences?: ReadableAddress[] | undefined;
|
|
637
637
|
appReferences?: bigint[] | undefined;
|
|
638
638
|
assetReferences?: bigint[] | undefined;
|
|
639
|
-
boxReferences?: (
|
|
639
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
640
640
|
accessReferences?: AccessReference[] | undefined;
|
|
641
641
|
rejectVersion?: number | undefined;
|
|
642
642
|
approvalProgram: string | Uint8Array;
|
|
643
643
|
clearStateProgram: string | Uint8Array;
|
|
644
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
644
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
645
645
|
}>;
|
|
646
646
|
/**
|
|
647
647
|
* Return params for an delete ABI call
|
|
@@ -663,7 +663,7 @@ declare class AppClient {
|
|
|
663
663
|
accountReferences?: ReadableAddress[] | undefined;
|
|
664
664
|
appReferences?: bigint[] | undefined;
|
|
665
665
|
assetReferences?: bigint[] | undefined;
|
|
666
|
-
boxReferences?: (
|
|
666
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
667
667
|
accessReferences?: AccessReference[] | undefined;
|
|
668
668
|
rejectVersion?: number | undefined;
|
|
669
669
|
sender?: ReadableAddress | undefined;
|
|
@@ -686,11 +686,11 @@ declare class AppClient {
|
|
|
686
686
|
accountReferences?: ReadableAddress[] | undefined;
|
|
687
687
|
appReferences?: bigint[] | undefined;
|
|
688
688
|
assetReferences?: bigint[] | undefined;
|
|
689
|
-
boxReferences?: (
|
|
689
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
690
690
|
accessReferences?: AccessReference[] | undefined;
|
|
691
691
|
rejectVersion?: number | undefined;
|
|
692
692
|
method: ABIMethod;
|
|
693
|
-
args?: (Transaction | ABIValue | TransactionWithSigner |
|
|
693
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
694
694
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
695
695
|
sender: SendingAddress;
|
|
696
696
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -702,12 +702,12 @@ declare class AppClient {
|
|
|
702
702
|
validityWindow?: number | bigint | undefined;
|
|
703
703
|
firstValidRound?: bigint | undefined;
|
|
704
704
|
lastValidRound?: bigint | undefined;
|
|
705
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
706
705
|
args?: Uint8Array[] | undefined;
|
|
706
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
707
707
|
accountReferences?: ReadableAddress[] | undefined;
|
|
708
708
|
appReferences?: bigint[] | undefined;
|
|
709
709
|
assetReferences?: bigint[] | undefined;
|
|
710
|
-
boxReferences?: (
|
|
710
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
711
711
|
accessReferences?: AccessReference[] | undefined;
|
|
712
712
|
rejectVersion?: number | undefined;
|
|
713
713
|
approvalProgram: string | Uint8Array;
|
|
@@ -737,12 +737,12 @@ declare class AppClient {
|
|
|
737
737
|
accountReferences?: ReadableAddress[] | undefined;
|
|
738
738
|
appReferences?: bigint[] | undefined;
|
|
739
739
|
assetReferences?: bigint[] | undefined;
|
|
740
|
-
boxReferences?: (
|
|
740
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
741
741
|
accessReferences?: AccessReference[] | undefined;
|
|
742
742
|
rejectVersion?: number | undefined;
|
|
743
743
|
approvalProgram: string | Uint8Array;
|
|
744
744
|
clearStateProgram: string | Uint8Array;
|
|
745
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
745
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
746
746
|
}>;
|
|
747
747
|
/** Return params for an close out ABI call
|
|
748
748
|
* @param params The parameters for the close out ABI method call
|
|
@@ -763,7 +763,7 @@ declare class AppClient {
|
|
|
763
763
|
accountReferences?: ReadableAddress[] | undefined;
|
|
764
764
|
appReferences?: bigint[] | undefined;
|
|
765
765
|
assetReferences?: bigint[] | undefined;
|
|
766
|
-
boxReferences?: (
|
|
766
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
767
767
|
accessReferences?: AccessReference[] | undefined;
|
|
768
768
|
rejectVersion?: number | undefined;
|
|
769
769
|
sender?: ReadableAddress | undefined;
|
|
@@ -786,11 +786,11 @@ declare class AppClient {
|
|
|
786
786
|
accountReferences?: ReadableAddress[] | undefined;
|
|
787
787
|
appReferences?: bigint[] | undefined;
|
|
788
788
|
assetReferences?: bigint[] | undefined;
|
|
789
|
-
boxReferences?: (
|
|
789
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
790
790
|
accessReferences?: AccessReference[] | undefined;
|
|
791
791
|
rejectVersion?: number | undefined;
|
|
792
792
|
method: ABIMethod;
|
|
793
|
-
args?: (Transaction | ABIValue | TransactionWithSigner |
|
|
793
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
794
794
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
795
795
|
sender: SendingAddress;
|
|
796
796
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -802,12 +802,12 @@ declare class AppClient {
|
|
|
802
802
|
validityWindow?: number | bigint | undefined;
|
|
803
803
|
firstValidRound?: bigint | undefined;
|
|
804
804
|
lastValidRound?: bigint | undefined;
|
|
805
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
806
805
|
args?: Uint8Array[] | undefined;
|
|
806
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
807
807
|
accountReferences?: ReadableAddress[] | undefined;
|
|
808
808
|
appReferences?: bigint[] | undefined;
|
|
809
809
|
assetReferences?: bigint[] | undefined;
|
|
810
|
-
boxReferences?: (
|
|
810
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
811
811
|
accessReferences?: AccessReference[] | undefined;
|
|
812
812
|
rejectVersion?: number | undefined;
|
|
813
813
|
approvalProgram: string | Uint8Array;
|
|
@@ -837,12 +837,12 @@ declare class AppClient {
|
|
|
837
837
|
accountReferences?: ReadableAddress[] | undefined;
|
|
838
838
|
appReferences?: bigint[] | undefined;
|
|
839
839
|
assetReferences?: bigint[] | undefined;
|
|
840
|
-
boxReferences?: (
|
|
840
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
841
841
|
accessReferences?: AccessReference[] | undefined;
|
|
842
842
|
rejectVersion?: number | undefined;
|
|
843
843
|
approvalProgram: string | Uint8Array;
|
|
844
844
|
clearStateProgram: string | Uint8Array;
|
|
845
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
845
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
846
846
|
}>;
|
|
847
847
|
/** Return params for an ABI call
|
|
848
848
|
* @param params The parameters for the ABI method call
|
|
@@ -863,7 +863,7 @@ declare class AppClient {
|
|
|
863
863
|
accountReferences?: ReadableAddress[] | undefined;
|
|
864
864
|
appReferences?: bigint[] | undefined;
|
|
865
865
|
assetReferences?: bigint[] | undefined;
|
|
866
|
-
boxReferences?: (
|
|
866
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
867
867
|
accessReferences?: AccessReference[] | undefined;
|
|
868
868
|
rejectVersion?: number | undefined;
|
|
869
869
|
sender?: ReadableAddress | undefined;
|
|
@@ -886,11 +886,11 @@ declare class AppClient {
|
|
|
886
886
|
accountReferences?: ReadableAddress[] | undefined;
|
|
887
887
|
appReferences?: bigint[] | undefined;
|
|
888
888
|
assetReferences?: bigint[] | undefined;
|
|
889
|
-
boxReferences?: (
|
|
889
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
890
890
|
accessReferences?: AccessReference[] | undefined;
|
|
891
891
|
rejectVersion?: number | undefined;
|
|
892
892
|
method: ABIMethod;
|
|
893
|
-
args?: (Transaction | ABIValue | TransactionWithSigner |
|
|
893
|
+
args?: (Transaction | ABIValue | TransactionWithSigner | AppMethodCall<{
|
|
894
894
|
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
895
895
|
sender: SendingAddress;
|
|
896
896
|
rekeyTo?: ReadableAddress | undefined;
|
|
@@ -902,12 +902,12 @@ declare class AppClient {
|
|
|
902
902
|
validityWindow?: number | bigint | undefined;
|
|
903
903
|
firstValidRound?: bigint | undefined;
|
|
904
904
|
lastValidRound?: bigint | undefined;
|
|
905
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
906
905
|
args?: Uint8Array[] | undefined;
|
|
906
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
907
907
|
accountReferences?: ReadableAddress[] | undefined;
|
|
908
908
|
appReferences?: bigint[] | undefined;
|
|
909
909
|
assetReferences?: bigint[] | undefined;
|
|
910
|
-
boxReferences?: (
|
|
910
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
911
911
|
accessReferences?: AccessReference[] | undefined;
|
|
912
912
|
rejectVersion?: number | undefined;
|
|
913
913
|
approvalProgram: string | Uint8Array;
|
|
@@ -937,12 +937,12 @@ declare class AppClient {
|
|
|
937
937
|
accountReferences?: ReadableAddress[] | undefined;
|
|
938
938
|
appReferences?: bigint[] | undefined;
|
|
939
939
|
assetReferences?: bigint[] | undefined;
|
|
940
|
-
boxReferences?: (
|
|
940
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
941
941
|
accessReferences?: AccessReference[] | undefined;
|
|
942
942
|
rejectVersion?: number | undefined;
|
|
943
943
|
approvalProgram: string | Uint8Array;
|
|
944
944
|
clearStateProgram: string | Uint8Array;
|
|
945
|
-
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
945
|
+
}> | AppMethodCall<AppMethodCallParams> | Promise<Transaction> | undefined)[] | undefined;
|
|
946
946
|
}>;
|
|
947
947
|
} & {
|
|
948
948
|
/** Interact with bare (raw) call parameters */bare: {
|
|
@@ -962,7 +962,7 @@ declare class AppClient {
|
|
|
962
962
|
accountReferences?: ReadableAddress[] | undefined;
|
|
963
963
|
appReferences?: bigint[] | undefined;
|
|
964
964
|
assetReferences?: bigint[] | undefined;
|
|
965
|
-
boxReferences?: (
|
|
965
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
966
966
|
accessReferences?: AccessReference[] | undefined;
|
|
967
967
|
rejectVersion?: number | undefined;
|
|
968
968
|
sender?: ReadableAddress | undefined;
|
|
@@ -984,7 +984,7 @@ declare class AppClient {
|
|
|
984
984
|
accountReferences?: ReadableAddress[] | undefined;
|
|
985
985
|
appReferences?: bigint[] | undefined;
|
|
986
986
|
assetReferences?: bigint[] | undefined;
|
|
987
|
-
boxReferences?: (
|
|
987
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
988
988
|
accessReferences?: AccessReference[] | undefined;
|
|
989
989
|
rejectVersion?: number | undefined;
|
|
990
990
|
approvalProgram: string | Uint8Array;
|
|
@@ -1006,7 +1006,7 @@ declare class AppClient {
|
|
|
1006
1006
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1007
1007
|
appReferences?: bigint[] | undefined;
|
|
1008
1008
|
assetReferences?: bigint[] | undefined;
|
|
1009
|
-
boxReferences?: (
|
|
1009
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1010
1010
|
accessReferences?: AccessReference[] | undefined;
|
|
1011
1011
|
rejectVersion?: number | undefined;
|
|
1012
1012
|
sender?: ReadableAddress | undefined;
|
|
@@ -1027,7 +1027,7 @@ declare class AppClient {
|
|
|
1027
1027
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1028
1028
|
appReferences?: bigint[] | undefined;
|
|
1029
1029
|
assetReferences?: bigint[] | undefined;
|
|
1030
|
-
boxReferences?: (
|
|
1030
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1031
1031
|
accessReferences?: AccessReference[] | undefined;
|
|
1032
1032
|
rejectVersion?: number | undefined;
|
|
1033
1033
|
sender?: ReadableAddress | undefined;
|
|
@@ -1048,7 +1048,7 @@ declare class AppClient {
|
|
|
1048
1048
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1049
1049
|
appReferences?: bigint[] | undefined;
|
|
1050
1050
|
assetReferences?: bigint[] | undefined;
|
|
1051
|
-
boxReferences?: (
|
|
1051
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1052
1052
|
accessReferences?: AccessReference[] | undefined;
|
|
1053
1053
|
rejectVersion?: number | undefined;
|
|
1054
1054
|
sender?: ReadableAddress | undefined;
|
|
@@ -1069,7 +1069,7 @@ declare class AppClient {
|
|
|
1069
1069
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1070
1070
|
appReferences?: bigint[] | undefined;
|
|
1071
1071
|
assetReferences?: bigint[] | undefined;
|
|
1072
|
-
boxReferences?: (
|
|
1072
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1073
1073
|
accessReferences?: AccessReference[] | undefined;
|
|
1074
1074
|
rejectVersion?: number | undefined;
|
|
1075
1075
|
sender?: ReadableAddress | undefined;
|
|
@@ -1090,7 +1090,7 @@ declare class AppClient {
|
|
|
1090
1090
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1091
1091
|
appReferences?: bigint[] | undefined;
|
|
1092
1092
|
assetReferences?: bigint[] | undefined;
|
|
1093
|
-
boxReferences?: (
|
|
1093
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1094
1094
|
accessReferences?: AccessReference[] | undefined;
|
|
1095
1095
|
rejectVersion?: number | undefined;
|
|
1096
1096
|
sender?: ReadableAddress | undefined;
|
|
@@ -1142,7 +1142,7 @@ declare class AppClient {
|
|
|
1142
1142
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1143
1143
|
appReferences?: bigint[] | undefined;
|
|
1144
1144
|
assetReferences?: bigint[] | undefined;
|
|
1145
|
-
boxReferences?: (
|
|
1145
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1146
1146
|
accessReferences?: AccessReference[] | undefined;
|
|
1147
1147
|
rejectVersion?: number | undefined;
|
|
1148
1148
|
sender?: ReadableAddress | undefined;
|
|
@@ -1173,7 +1173,7 @@ declare class AppClient {
|
|
|
1173
1173
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1174
1174
|
appReferences?: bigint[] | undefined;
|
|
1175
1175
|
assetReferences?: bigint[] | undefined;
|
|
1176
|
-
boxReferences?: (
|
|
1176
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1177
1177
|
accessReferences?: AccessReference[] | undefined;
|
|
1178
1178
|
rejectVersion?: number | undefined;
|
|
1179
1179
|
sender?: ReadableAddress | undefined;
|
|
@@ -1204,7 +1204,7 @@ declare class AppClient {
|
|
|
1204
1204
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1205
1205
|
appReferences?: bigint[] | undefined;
|
|
1206
1206
|
assetReferences?: bigint[] | undefined;
|
|
1207
|
-
boxReferences?: (
|
|
1207
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1208
1208
|
accessReferences?: AccessReference[] | undefined;
|
|
1209
1209
|
rejectVersion?: number | undefined;
|
|
1210
1210
|
sender?: ReadableAddress | undefined;
|
|
@@ -1235,7 +1235,7 @@ declare class AppClient {
|
|
|
1235
1235
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1236
1236
|
appReferences?: bigint[] | undefined;
|
|
1237
1237
|
assetReferences?: bigint[] | undefined;
|
|
1238
|
-
boxReferences?: (
|
|
1238
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1239
1239
|
accessReferences?: AccessReference[] | undefined;
|
|
1240
1240
|
rejectVersion?: number | undefined;
|
|
1241
1241
|
sender?: ReadableAddress | undefined;
|
|
@@ -1266,7 +1266,7 @@ declare class AppClient {
|
|
|
1266
1266
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1267
1267
|
appReferences?: bigint[] | undefined;
|
|
1268
1268
|
assetReferences?: bigint[] | undefined;
|
|
1269
|
-
boxReferences?: (
|
|
1269
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1270
1270
|
accessReferences?: AccessReference[] | undefined;
|
|
1271
1271
|
rejectVersion?: number | undefined;
|
|
1272
1272
|
sender?: ReadableAddress | undefined;
|
|
@@ -1295,7 +1295,7 @@ declare class AppClient {
|
|
|
1295
1295
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1296
1296
|
appReferences?: bigint[] | undefined;
|
|
1297
1297
|
assetReferences?: bigint[] | undefined;
|
|
1298
|
-
boxReferences?: (
|
|
1298
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1299
1299
|
accessReferences?: AccessReference[] | undefined;
|
|
1300
1300
|
rejectVersion?: number | undefined;
|
|
1301
1301
|
sender?: ReadableAddress | undefined;
|
|
@@ -1316,7 +1316,7 @@ declare class AppClient {
|
|
|
1316
1316
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1317
1317
|
appReferences?: bigint[] | undefined;
|
|
1318
1318
|
assetReferences?: bigint[] | undefined;
|
|
1319
|
-
boxReferences?: (
|
|
1319
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1320
1320
|
accessReferences?: AccessReference[] | undefined;
|
|
1321
1321
|
rejectVersion?: number | undefined;
|
|
1322
1322
|
sender?: ReadableAddress | undefined;
|
|
@@ -1337,7 +1337,7 @@ declare class AppClient {
|
|
|
1337
1337
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1338
1338
|
appReferences?: bigint[] | undefined;
|
|
1339
1339
|
assetReferences?: bigint[] | undefined;
|
|
1340
|
-
boxReferences?: (
|
|
1340
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1341
1341
|
accessReferences?: AccessReference[] | undefined;
|
|
1342
1342
|
rejectVersion?: number | undefined;
|
|
1343
1343
|
sender?: ReadableAddress | undefined;
|
|
@@ -1358,7 +1358,7 @@ declare class AppClient {
|
|
|
1358
1358
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1359
1359
|
appReferences?: bigint[] | undefined;
|
|
1360
1360
|
assetReferences?: bigint[] | undefined;
|
|
1361
|
-
boxReferences?: (
|
|
1361
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1362
1362
|
accessReferences?: AccessReference[] | undefined;
|
|
1363
1363
|
rejectVersion?: number | undefined;
|
|
1364
1364
|
sender?: ReadableAddress | undefined;
|
|
@@ -1379,7 +1379,7 @@ declare class AppClient {
|
|
|
1379
1379
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1380
1380
|
appReferences?: bigint[] | undefined;
|
|
1381
1381
|
assetReferences?: bigint[] | undefined;
|
|
1382
|
-
boxReferences?: (
|
|
1382
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1383
1383
|
accessReferences?: AccessReference[] | undefined;
|
|
1384
1384
|
rejectVersion?: number | undefined;
|
|
1385
1385
|
sender?: ReadableAddress | undefined;
|
|
@@ -1400,7 +1400,7 @@ declare class AppClient {
|
|
|
1400
1400
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1401
1401
|
appReferences?: bigint[] | undefined;
|
|
1402
1402
|
assetReferences?: bigint[] | undefined;
|
|
1403
|
-
boxReferences?: (
|
|
1403
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1404
1404
|
accessReferences?: AccessReference[] | undefined;
|
|
1405
1405
|
rejectVersion?: number | undefined;
|
|
1406
1406
|
sender?: ReadableAddress | undefined;
|
|
@@ -1460,7 +1460,7 @@ declare class AppClient {
|
|
|
1460
1460
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1461
1461
|
appReferences?: bigint[] | undefined;
|
|
1462
1462
|
assetReferences?: bigint[] | undefined;
|
|
1463
|
-
boxReferences?: (
|
|
1463
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1464
1464
|
accessReferences?: AccessReference[] | undefined;
|
|
1465
1465
|
rejectVersion?: number | undefined;
|
|
1466
1466
|
sender?: ReadableAddress | undefined;
|
|
@@ -1498,7 +1498,7 @@ declare class AppClient {
|
|
|
1498
1498
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1499
1499
|
appReferences?: bigint[] | undefined;
|
|
1500
1500
|
assetReferences?: bigint[] | undefined;
|
|
1501
|
-
boxReferences?: (
|
|
1501
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1502
1502
|
accessReferences?: AccessReference[] | undefined;
|
|
1503
1503
|
rejectVersion?: number | undefined;
|
|
1504
1504
|
sender?: ReadableAddress | undefined;
|
|
@@ -1534,7 +1534,7 @@ declare class AppClient {
|
|
|
1534
1534
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1535
1535
|
appReferences?: bigint[] | undefined;
|
|
1536
1536
|
assetReferences?: bigint[] | undefined;
|
|
1537
|
-
boxReferences?: (
|
|
1537
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1538
1538
|
accessReferences?: AccessReference[] | undefined;
|
|
1539
1539
|
rejectVersion?: number | undefined;
|
|
1540
1540
|
sender?: ReadableAddress | undefined;
|
|
@@ -1570,7 +1570,7 @@ declare class AppClient {
|
|
|
1570
1570
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1571
1571
|
appReferences?: bigint[] | undefined;
|
|
1572
1572
|
assetReferences?: bigint[] | undefined;
|
|
1573
|
-
boxReferences?: (
|
|
1573
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1574
1574
|
accessReferences?: AccessReference[] | undefined;
|
|
1575
1575
|
rejectVersion?: number | undefined;
|
|
1576
1576
|
sender?: ReadableAddress | undefined;
|
|
@@ -1606,7 +1606,7 @@ declare class AppClient {
|
|
|
1606
1606
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1607
1607
|
appReferences?: bigint[] | undefined;
|
|
1608
1608
|
assetReferences?: bigint[] | undefined;
|
|
1609
|
-
boxReferences?: (
|
|
1609
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1610
1610
|
accessReferences?: AccessReference[] | undefined;
|
|
1611
1611
|
rejectVersion?: number | undefined;
|
|
1612
1612
|
sender?: ReadableAddress | undefined;
|
|
@@ -1640,7 +1640,7 @@ declare class AppClient {
|
|
|
1640
1640
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1641
1641
|
appReferences?: bigint[] | undefined;
|
|
1642
1642
|
assetReferences?: bigint[] | undefined;
|
|
1643
|
-
boxReferences?: (
|
|
1643
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1644
1644
|
accessReferences?: AccessReference[] | undefined;
|
|
1645
1645
|
rejectVersion?: number | undefined;
|
|
1646
1646
|
sender?: ReadableAddress | undefined;
|
|
@@ -1672,7 +1672,7 @@ declare class AppClient {
|
|
|
1672
1672
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1673
1673
|
appReferences?: bigint[] | undefined;
|
|
1674
1674
|
assetReferences?: bigint[] | undefined;
|
|
1675
|
-
boxReferences?: (
|
|
1675
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1676
1676
|
accessReferences?: AccessReference[] | undefined;
|
|
1677
1677
|
rejectVersion?: number | undefined;
|
|
1678
1678
|
sender?: ReadableAddress | undefined;
|
|
@@ -1702,7 +1702,7 @@ declare class AppClient {
|
|
|
1702
1702
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1703
1703
|
appReferences?: bigint[] | undefined;
|
|
1704
1704
|
assetReferences?: bigint[] | undefined;
|
|
1705
|
-
boxReferences?: (
|
|
1705
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1706
1706
|
accessReferences?: AccessReference[] | undefined;
|
|
1707
1707
|
rejectVersion?: number | undefined;
|
|
1708
1708
|
sender?: ReadableAddress | undefined;
|
|
@@ -1732,7 +1732,7 @@ declare class AppClient {
|
|
|
1732
1732
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1733
1733
|
appReferences?: bigint[] | undefined;
|
|
1734
1734
|
assetReferences?: bigint[] | undefined;
|
|
1735
|
-
boxReferences?: (
|
|
1735
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1736
1736
|
accessReferences?: AccessReference[] | undefined;
|
|
1737
1737
|
rejectVersion?: number | undefined;
|
|
1738
1738
|
sender?: ReadableAddress | undefined;
|
|
@@ -1762,7 +1762,7 @@ declare class AppClient {
|
|
|
1762
1762
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1763
1763
|
appReferences?: bigint[] | undefined;
|
|
1764
1764
|
assetReferences?: bigint[] | undefined;
|
|
1765
|
-
boxReferences?: (
|
|
1765
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1766
1766
|
accessReferences?: AccessReference[] | undefined;
|
|
1767
1767
|
rejectVersion?: number | undefined;
|
|
1768
1768
|
sender?: ReadableAddress | undefined;
|
|
@@ -1792,7 +1792,7 @@ declare class AppClient {
|
|
|
1792
1792
|
accountReferences?: ReadableAddress[] | undefined;
|
|
1793
1793
|
appReferences?: bigint[] | undefined;
|
|
1794
1794
|
assetReferences?: bigint[] | undefined;
|
|
1795
|
-
boxReferences?: (
|
|
1795
|
+
boxReferences?: (BoxReference | BoxIdentifier)[] | undefined;
|
|
1796
1796
|
accessReferences?: AccessReference[] | undefined;
|
|
1797
1797
|
rejectVersion?: number | undefined;
|
|
1798
1798
|
sender?: ReadableAddress | undefined;
|