@waves/node-api-js 1.2.6 → 1.2.8-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/api-node/addresses/index.d.ts +2 -0
- package/cjs/api-node/addresses/index.js +52 -2
- package/cjs/api-node/addresses/index.js.map +1 -1
- package/cjs/api-node/assets/index.d.ts +4 -2
- package/cjs/api-node/assets/index.js +17 -6
- package/cjs/api-node/assets/index.js.map +1 -1
- package/cjs/api-node/blocks/index.d.ts +2 -2
- package/cjs/api-node/debug/index.d.ts +100 -0
- package/cjs/api-node/debug/index.js +180 -2
- package/cjs/api-node/debug/index.js.map +1 -1
- package/cjs/api-node/transactions/index.d.ts +9 -5
- package/cjs/api-node/transactions/index.js +15 -4
- package/cjs/api-node/transactions/index.js.map +1 -1
- package/cjs/create.d.ts +362 -235
- package/cjs/tools/adresses/getAssetIdListByTx.d.ts +2 -3
- package/cjs/tools/adresses/getAssetIdListByTx.js +1 -0
- package/cjs/tools/adresses/getAssetIdListByTx.js.map +1 -1
- package/cjs/tools/adresses/getAssetsByTransaction.d.ts +2 -3
- package/cjs/tools/adresses/getAssetsByTransaction.js.map +1 -1
- package/cjs/tools/adresses/getTransactionsWithAssets.d.ts +2 -3
- package/cjs/tools/adresses/watch.js.map +1 -1
- package/cjs/tools/request.d.ts +1 -0
- package/cjs/tools/request.js +2 -0
- package/cjs/tools/request.js.map +1 -1
- package/cjs/tools/transactions/transactions.d.ts +0 -60
- package/cjs/tools/transactions/transactions.js +0 -117
- package/cjs/tools/transactions/transactions.js.map +1 -1
- package/dist/node-api.js +312 -146
- package/dist/node-api.min.js +5 -5
- package/es/api-node/addresses/index.d.ts +2 -0
- package/es/api-node/addresses/index.js +17 -1
- package/es/api-node/addresses/index.js.map +1 -1
- package/es/api-node/assets/index.d.ts +4 -2
- package/es/api-node/assets/index.js +6 -6
- package/es/api-node/assets/index.js.map +1 -1
- package/es/api-node/blocks/index.d.ts +2 -2
- package/es/api-node/debug/index.d.ts +100 -0
- package/es/api-node/debug/index.js +147 -1
- package/es/api-node/debug/index.js.map +1 -1
- package/es/api-node/transactions/index.d.ts +9 -5
- package/es/api-node/transactions/index.js +12 -3
- package/es/api-node/transactions/index.js.map +1 -1
- package/es/create.d.ts +362 -235
- package/es/tools/adresses/getAssetIdListByTx.d.ts +2 -3
- package/es/tools/adresses/getAssetIdListByTx.js +1 -0
- package/es/tools/adresses/getAssetIdListByTx.js.map +1 -1
- package/es/tools/adresses/getAssetsByTransaction.d.ts +2 -3
- package/es/tools/adresses/getAssetsByTransaction.js.map +1 -1
- package/es/tools/adresses/getTransactionsWithAssets.d.ts +2 -3
- package/es/tools/adresses/watch.js.map +1 -1
- package/es/tools/request.d.ts +1 -0
- package/es/tools/request.js +1 -1
- package/es/tools/request.js.map +1 -1
- package/es/tools/transactions/transactions.d.ts +0 -60
- package/es/tools/transactions/transactions.js +1 -99
- package/es/tools/transactions/transactions.js.map +1 -1
- package/package.json +5 -5
package/es/create.d.ts
CHANGED
|
@@ -76,8 +76,6 @@ export declare function create(base: string): {
|
|
|
76
76
|
sender: string;
|
|
77
77
|
height: number;
|
|
78
78
|
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
79
|
-
feeAssetId: string | null;
|
|
80
|
-
} & {
|
|
81
79
|
version: 3;
|
|
82
80
|
} & import("@waves/ts-types").WithId & {
|
|
83
81
|
sender: string;
|
|
@@ -237,11 +235,6 @@ export declare function create(base: string): {
|
|
|
237
235
|
} & import("@waves/ts-types").WithId & {
|
|
238
236
|
sender: string;
|
|
239
237
|
height: number;
|
|
240
|
-
}) | (import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18> & {
|
|
241
|
-
version: 1;
|
|
242
|
-
} & import("@waves/ts-types").WithId & {
|
|
243
|
-
sender: string;
|
|
244
|
-
height: number;
|
|
245
238
|
}) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
246
239
|
version: 1;
|
|
247
240
|
} & import("@waves/ts-types").WithId & {
|
|
@@ -283,8 +276,6 @@ export declare function create(base: string): {
|
|
|
283
276
|
sender: string;
|
|
284
277
|
height: number;
|
|
285
278
|
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
286
|
-
feeAssetId: string | null;
|
|
287
|
-
} & {
|
|
288
279
|
version: 3;
|
|
289
280
|
} & import("@waves/ts-types").WithId & {
|
|
290
281
|
sender: string;
|
|
@@ -444,11 +435,6 @@ export declare function create(base: string): {
|
|
|
444
435
|
} & import("@waves/ts-types").WithId & {
|
|
445
436
|
sender: string;
|
|
446
437
|
height: number;
|
|
447
|
-
}) | (import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18> & {
|
|
448
|
-
version: 1;
|
|
449
|
-
} & import("@waves/ts-types").WithId & {
|
|
450
|
-
sender: string;
|
|
451
|
-
height: number;
|
|
452
438
|
}))[], options?: import("./tools/transactions/wait").IWaitOptions | undefined) => Promise<(import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
453
439
|
version: 1;
|
|
454
440
|
} & import("@waves/ts-types").WithId & {
|
|
@@ -490,8 +476,6 @@ export declare function create(base: string): {
|
|
|
490
476
|
sender: string;
|
|
491
477
|
height: number;
|
|
492
478
|
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
493
|
-
feeAssetId: string | null;
|
|
494
|
-
} & {
|
|
495
479
|
version: 3;
|
|
496
480
|
} & import("@waves/ts-types").WithId & {
|
|
497
481
|
sender: string;
|
|
@@ -651,11 +635,6 @@ export declare function create(base: string): {
|
|
|
651
635
|
} & import("@waves/ts-types").WithId & {
|
|
652
636
|
sender: string;
|
|
653
637
|
height: number;
|
|
654
|
-
}) | (import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18> & {
|
|
655
|
-
version: 1;
|
|
656
|
-
} & import("@waves/ts-types").WithId & {
|
|
657
|
-
sender: string;
|
|
658
|
-
height: number;
|
|
659
638
|
}) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
660
639
|
version: 1;
|
|
661
640
|
} & import("@waves/ts-types").WithId & {
|
|
@@ -697,8 +676,6 @@ export declare function create(base: string): {
|
|
|
697
676
|
sender: string;
|
|
698
677
|
height: number;
|
|
699
678
|
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
700
|
-
feeAssetId: string | null;
|
|
701
|
-
} & {
|
|
702
679
|
version: 3;
|
|
703
680
|
} & import("@waves/ts-types").WithId & {
|
|
704
681
|
sender: string;
|
|
@@ -858,11 +835,6 @@ export declare function create(base: string): {
|
|
|
858
835
|
} & import("@waves/ts-types").WithId & {
|
|
859
836
|
sender: string;
|
|
860
837
|
height: number;
|
|
861
|
-
}) | (import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18> & {
|
|
862
|
-
version: 1;
|
|
863
|
-
} & import("@waves/ts-types").WithId & {
|
|
864
|
-
sender: string;
|
|
865
|
-
height: number;
|
|
866
838
|
}))[]>;
|
|
867
839
|
};
|
|
868
840
|
blocks: {
|
|
@@ -876,219 +848,374 @@ export declare function create(base: string): {
|
|
|
876
848
|
chainId: number;
|
|
877
849
|
timestamp: number;
|
|
878
850
|
fee: import("@waves/ts-types").Long;
|
|
879
|
-
}, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
880
|
-
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
sender: string;
|
|
1055
|
-
height: number;
|
|
1056
|
-
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
|
1057
|
-
version: 2;
|
|
1058
|
-
} & import("@waves/ts-types").WithId & {
|
|
1059
|
-
sender: string;
|
|
1060
|
-
height: number;
|
|
1061
|
-
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
|
1062
|
-
version: 1;
|
|
1063
|
-
} & import("@waves/ts-types").WithId & {
|
|
1064
|
-
sender: string;
|
|
1065
|
-
height: number;
|
|
1066
|
-
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
|
1067
|
-
version: 2;
|
|
1068
|
-
} & import("@waves/ts-types").WithId & {
|
|
1069
|
-
sender: string;
|
|
1070
|
-
height: number;
|
|
1071
|
-
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
|
1072
|
-
version: 1;
|
|
1073
|
-
} & import("@waves/ts-types").WithId & {
|
|
1074
|
-
sender: string;
|
|
1075
|
-
height: number;
|
|
1076
|
-
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
|
1077
|
-
version: 2;
|
|
1078
|
-
} & import("@waves/ts-types").WithId & {
|
|
851
|
+
}, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17>, 1> | import("@waves/ts-types").GenesisTransactionFromNode<import("@waves/ts-types").Long> | import("@waves/ts-types").PaymentTransactionFromNode<import("@waves/ts-types").Long> | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
852
|
+
version: 1;
|
|
853
|
+
} & {
|
|
854
|
+
proofs: string[];
|
|
855
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
856
|
+
sender: string;
|
|
857
|
+
height: number;
|
|
858
|
+
} & {
|
|
859
|
+
feeAssetId: null;
|
|
860
|
+
assetId: string;
|
|
861
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
862
|
+
version: 2;
|
|
863
|
+
} & {
|
|
864
|
+
proofs: string[];
|
|
865
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
866
|
+
sender: string;
|
|
867
|
+
height: number;
|
|
868
|
+
} & {
|
|
869
|
+
feeAssetId: null;
|
|
870
|
+
assetId: string;
|
|
871
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
|
872
|
+
version: 3;
|
|
873
|
+
} & {
|
|
874
|
+
proofs: string[];
|
|
875
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
876
|
+
sender: string;
|
|
877
|
+
height: number;
|
|
878
|
+
} & {
|
|
879
|
+
feeAssetId: null;
|
|
880
|
+
assetId: string;
|
|
881
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
|
882
|
+
version: 1;
|
|
883
|
+
} & {
|
|
884
|
+
proofs: string[];
|
|
885
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
886
|
+
sender: string;
|
|
887
|
+
height: number;
|
|
888
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
|
889
|
+
version: 2;
|
|
890
|
+
} & {
|
|
891
|
+
proofs: string[];
|
|
892
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
893
|
+
sender: string;
|
|
894
|
+
height: number;
|
|
895
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
|
896
|
+
version: 3;
|
|
897
|
+
} & {
|
|
898
|
+
proofs: string[];
|
|
899
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
900
|
+
sender: string;
|
|
901
|
+
height: number;
|
|
902
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
|
903
|
+
version: 1;
|
|
904
|
+
} & {
|
|
905
|
+
proofs: string[];
|
|
906
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
907
|
+
sender: string;
|
|
908
|
+
height: number;
|
|
909
|
+
} & {
|
|
910
|
+
feeAssetId: null;
|
|
911
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
|
912
|
+
version: 2;
|
|
913
|
+
} & {
|
|
914
|
+
proofs: string[];
|
|
915
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
916
|
+
sender: string;
|
|
917
|
+
height: number;
|
|
918
|
+
} & {
|
|
919
|
+
feeAssetId: null;
|
|
920
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
|
921
|
+
version: 3;
|
|
922
|
+
} & {
|
|
923
|
+
proofs: string[];
|
|
924
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
925
|
+
sender: string;
|
|
926
|
+
height: number;
|
|
927
|
+
} & {
|
|
928
|
+
feeAssetId: null;
|
|
929
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
|
930
|
+
version: 1;
|
|
931
|
+
} & {
|
|
932
|
+
proofs: string[];
|
|
933
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
934
|
+
sender: string;
|
|
935
|
+
height: number;
|
|
936
|
+
} & {
|
|
937
|
+
feeAssetId: null;
|
|
938
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
|
939
|
+
version: 2;
|
|
940
|
+
} & {
|
|
941
|
+
proofs: string[];
|
|
942
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
943
|
+
sender: string;
|
|
944
|
+
height: number;
|
|
945
|
+
} & {
|
|
946
|
+
feeAssetId: null;
|
|
947
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
|
948
|
+
version: 3;
|
|
949
|
+
} & {
|
|
950
|
+
proofs: string[];
|
|
951
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
952
|
+
sender: string;
|
|
953
|
+
height: number;
|
|
954
|
+
} & {
|
|
955
|
+
feeAssetId: null;
|
|
956
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
957
|
+
version: 1;
|
|
958
|
+
} & {
|
|
959
|
+
proofs: string[];
|
|
960
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
961
|
+
sender: string;
|
|
962
|
+
height: number;
|
|
963
|
+
} & {
|
|
964
|
+
feeAssetId: null;
|
|
965
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
966
|
+
version: 2;
|
|
967
|
+
} & {
|
|
968
|
+
proofs: string[];
|
|
969
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
970
|
+
sender: string;
|
|
971
|
+
height: number;
|
|
972
|
+
} & {
|
|
973
|
+
feeAssetId: null;
|
|
974
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
|
975
|
+
version: 3;
|
|
976
|
+
} & {
|
|
977
|
+
proofs: string[];
|
|
978
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
979
|
+
sender: string;
|
|
980
|
+
height: number;
|
|
981
|
+
} & {
|
|
982
|
+
feeAssetId: null;
|
|
983
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
|
984
|
+
version: 1;
|
|
985
|
+
} & {
|
|
986
|
+
proofs: string[];
|
|
987
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
988
|
+
sender: string;
|
|
989
|
+
height: number;
|
|
990
|
+
} & {
|
|
991
|
+
feeAssetId: null;
|
|
992
|
+
status: "canceled" | "active";
|
|
993
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
|
994
|
+
version: 2;
|
|
995
|
+
} & {
|
|
996
|
+
proofs: string[];
|
|
997
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
998
|
+
sender: string;
|
|
999
|
+
height: number;
|
|
1000
|
+
} & {
|
|
1001
|
+
feeAssetId: null;
|
|
1002
|
+
status: "canceled" | "active";
|
|
1003
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
|
1004
|
+
version: 3;
|
|
1005
|
+
} & {
|
|
1006
|
+
proofs: string[];
|
|
1007
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1008
|
+
sender: string;
|
|
1009
|
+
height: number;
|
|
1010
|
+
} & {
|
|
1011
|
+
feeAssetId: null;
|
|
1012
|
+
status: "canceled" | "active";
|
|
1013
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
|
1014
|
+
version: 1;
|
|
1015
|
+
} & {
|
|
1016
|
+
proofs: string[];
|
|
1017
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1018
|
+
sender: string;
|
|
1019
|
+
height: number;
|
|
1020
|
+
} & {
|
|
1021
|
+
feeAssetId: null;
|
|
1022
|
+
} & {
|
|
1023
|
+
lease: {
|
|
1024
|
+
id: string;
|
|
1025
|
+
originTransactionId: string;
|
|
1079
1026
|
sender: string;
|
|
1027
|
+
recipient: string;
|
|
1028
|
+
amount: import("@waves/ts-types").Long;
|
|
1080
1029
|
height: number;
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1030
|
+
status: "canceled" | "active";
|
|
1031
|
+
cancelHeight: number;
|
|
1032
|
+
cancelTransactionId: string;
|
|
1033
|
+
};
|
|
1034
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
|
1035
|
+
version: 2;
|
|
1036
|
+
} & {
|
|
1037
|
+
proofs: string[];
|
|
1038
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1039
|
+
sender: string;
|
|
1040
|
+
height: number;
|
|
1041
|
+
} & {
|
|
1042
|
+
feeAssetId: null;
|
|
1043
|
+
} & {
|
|
1044
|
+
lease: {
|
|
1045
|
+
id: string;
|
|
1046
|
+
originTransactionId: string;
|
|
1084
1047
|
sender: string;
|
|
1048
|
+
recipient: string;
|
|
1049
|
+
amount: import("@waves/ts-types").Long;
|
|
1085
1050
|
height: number;
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1051
|
+
status: "canceled" | "active";
|
|
1052
|
+
cancelHeight: number;
|
|
1053
|
+
cancelTransactionId: string;
|
|
1054
|
+
};
|
|
1055
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
|
1056
|
+
version: 3;
|
|
1057
|
+
} & {
|
|
1058
|
+
proofs: string[];
|
|
1059
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1060
|
+
sender: string;
|
|
1061
|
+
height: number;
|
|
1062
|
+
} & {
|
|
1063
|
+
feeAssetId: null;
|
|
1064
|
+
} & {
|
|
1065
|
+
lease: {
|
|
1066
|
+
id: string;
|
|
1067
|
+
originTransactionId: string;
|
|
1089
1068
|
sender: string;
|
|
1069
|
+
recipient: string;
|
|
1070
|
+
amount: import("@waves/ts-types").Long;
|
|
1090
1071
|
height: number;
|
|
1091
|
-
|
|
1072
|
+
status: "canceled" | "active";
|
|
1073
|
+
cancelHeight: number;
|
|
1074
|
+
cancelTransactionId: string;
|
|
1075
|
+
};
|
|
1076
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
|
1077
|
+
version: 1;
|
|
1078
|
+
} & {
|
|
1079
|
+
proofs: string[];
|
|
1080
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1081
|
+
sender: string;
|
|
1082
|
+
height: number;
|
|
1083
|
+
} & {
|
|
1084
|
+
feeAssetId: null;
|
|
1085
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
|
1086
|
+
version: 2;
|
|
1087
|
+
} & {
|
|
1088
|
+
proofs: string[];
|
|
1089
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1090
|
+
sender: string;
|
|
1091
|
+
height: number;
|
|
1092
|
+
} & {
|
|
1093
|
+
feeAssetId: null;
|
|
1094
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
|
1095
|
+
version: 3;
|
|
1096
|
+
} & {
|
|
1097
|
+
proofs: string[];
|
|
1098
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1099
|
+
sender: string;
|
|
1100
|
+
height: number;
|
|
1101
|
+
} & {
|
|
1102
|
+
feeAssetId: null;
|
|
1103
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
|
1104
|
+
version: 1;
|
|
1105
|
+
} & {
|
|
1106
|
+
proofs: string[];
|
|
1107
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1108
|
+
sender: string;
|
|
1109
|
+
height: number;
|
|
1110
|
+
} & {
|
|
1111
|
+
feeAssetId: null;
|
|
1112
|
+
totalAmount: import("@waves/ts-types").Long;
|
|
1113
|
+
transferCount: number;
|
|
1114
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
|
1115
|
+
version: 2;
|
|
1116
|
+
} & {
|
|
1117
|
+
proofs: string[];
|
|
1118
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1119
|
+
sender: string;
|
|
1120
|
+
height: number;
|
|
1121
|
+
} & {
|
|
1122
|
+
feeAssetId: null;
|
|
1123
|
+
totalAmount: import("@waves/ts-types").Long;
|
|
1124
|
+
transferCount: number;
|
|
1125
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
|
1126
|
+
version: 1;
|
|
1127
|
+
} & {
|
|
1128
|
+
proofs: string[];
|
|
1129
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1130
|
+
sender: string;
|
|
1131
|
+
height: number;
|
|
1132
|
+
} & {
|
|
1133
|
+
feeAssetId: null;
|
|
1134
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
|
1135
|
+
version: 2;
|
|
1136
|
+
} & {
|
|
1137
|
+
proofs: string[];
|
|
1138
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1139
|
+
sender: string;
|
|
1140
|
+
height: number;
|
|
1141
|
+
} & {
|
|
1142
|
+
feeAssetId: null;
|
|
1143
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
|
1144
|
+
version: 1;
|
|
1145
|
+
} & {
|
|
1146
|
+
proofs: string[];
|
|
1147
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1148
|
+
sender: string;
|
|
1149
|
+
height: number;
|
|
1150
|
+
} & {
|
|
1151
|
+
feeAssetId: null;
|
|
1152
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
|
1153
|
+
version: 2;
|
|
1154
|
+
} & {
|
|
1155
|
+
proofs: string[];
|
|
1156
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1157
|
+
sender: string;
|
|
1158
|
+
height: number;
|
|
1159
|
+
} & {
|
|
1160
|
+
feeAssetId: null;
|
|
1161
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
|
1162
|
+
version: 1;
|
|
1163
|
+
} & {
|
|
1164
|
+
proofs: string[];
|
|
1165
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1166
|
+
sender: string;
|
|
1167
|
+
height: number;
|
|
1168
|
+
} & {
|
|
1169
|
+
feeAssetId: null;
|
|
1170
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
|
1171
|
+
version: 2;
|
|
1172
|
+
} & {
|
|
1173
|
+
proofs: string[];
|
|
1174
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1175
|
+
sender: string;
|
|
1176
|
+
height: number;
|
|
1177
|
+
} & {
|
|
1178
|
+
feeAssetId: null;
|
|
1179
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
|
1180
|
+
version: 1;
|
|
1181
|
+
} & {
|
|
1182
|
+
proofs: string[];
|
|
1183
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1184
|
+
sender: string;
|
|
1185
|
+
height: number;
|
|
1186
|
+
} & {
|
|
1187
|
+
feeAssetId: null;
|
|
1188
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
|
1189
|
+
version: 2;
|
|
1190
|
+
} & {
|
|
1191
|
+
proofs: string[];
|
|
1192
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1193
|
+
sender: string;
|
|
1194
|
+
height: number;
|
|
1195
|
+
} & {
|
|
1196
|
+
feeAssetId: null;
|
|
1197
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
|
1198
|
+
version: 1;
|
|
1199
|
+
} & {
|
|
1200
|
+
proofs: string[];
|
|
1201
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1202
|
+
sender: string;
|
|
1203
|
+
height: number;
|
|
1204
|
+
} & {
|
|
1205
|
+
stateChanges: import("@waves/ts-types").TStateChanges;
|
|
1206
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
|
1207
|
+
version: 2;
|
|
1208
|
+
} & {
|
|
1209
|
+
proofs: string[];
|
|
1210
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
|
1211
|
+
sender: string;
|
|
1212
|
+
height: number;
|
|
1213
|
+
} & {
|
|
1214
|
+
stateChanges: import("@waves/ts-types").TStateChanges;
|
|
1215
|
+
}) | import("@waves/ts-types").UpdateAssetInfoTransactionFromNode<import("@waves/ts-types").Long> | import("@waves/ts-types").EthereumTransaction<import("@waves/ts-types").Long> | import("@waves/ts-types").TransactionFromNode<import("@waves/ts-types").Long>[] | Transaction<import("@waves/ts-types").Long>[]) => Promise<Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>>;
|
|
1216
|
+
getAssetIdListByTx: typeof getAssetIdListByTx;
|
|
1217
|
+
getTransactionsWithAssets: (address: string, limit: number, after?: string | undefined) => Promise<{
|
|
1218
|
+
transactions: import("@waves/ts-types").TransactionFromNode<import("@waves/ts-types").Long>[];
|
|
1092
1219
|
assets: Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>;
|
|
1093
1220
|
}>;
|
|
1094
1221
|
availableSponsoredBalances: (address: string, wavesFee: import("@waves/ts-types").Long) => Promise<import("./tools/adresses/availableSponsoredBalances").TAssetFeeInfo[]>;
|