@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.
Files changed (57) hide show
  1. package/cjs/api-node/addresses/index.d.ts +2 -0
  2. package/cjs/api-node/addresses/index.js +52 -2
  3. package/cjs/api-node/addresses/index.js.map +1 -1
  4. package/cjs/api-node/assets/index.d.ts +4 -2
  5. package/cjs/api-node/assets/index.js +17 -6
  6. package/cjs/api-node/assets/index.js.map +1 -1
  7. package/cjs/api-node/blocks/index.d.ts +2 -2
  8. package/cjs/api-node/debug/index.d.ts +100 -0
  9. package/cjs/api-node/debug/index.js +180 -2
  10. package/cjs/api-node/debug/index.js.map +1 -1
  11. package/cjs/api-node/transactions/index.d.ts +9 -5
  12. package/cjs/api-node/transactions/index.js +15 -4
  13. package/cjs/api-node/transactions/index.js.map +1 -1
  14. package/cjs/create.d.ts +362 -235
  15. package/cjs/tools/adresses/getAssetIdListByTx.d.ts +2 -3
  16. package/cjs/tools/adresses/getAssetIdListByTx.js +1 -0
  17. package/cjs/tools/adresses/getAssetIdListByTx.js.map +1 -1
  18. package/cjs/tools/adresses/getAssetsByTransaction.d.ts +2 -3
  19. package/cjs/tools/adresses/getAssetsByTransaction.js.map +1 -1
  20. package/cjs/tools/adresses/getTransactionsWithAssets.d.ts +2 -3
  21. package/cjs/tools/adresses/watch.js.map +1 -1
  22. package/cjs/tools/request.d.ts +1 -0
  23. package/cjs/tools/request.js +2 -0
  24. package/cjs/tools/request.js.map +1 -1
  25. package/cjs/tools/transactions/transactions.d.ts +0 -60
  26. package/cjs/tools/transactions/transactions.js +0 -117
  27. package/cjs/tools/transactions/transactions.js.map +1 -1
  28. package/dist/node-api.js +312 -146
  29. package/dist/node-api.min.js +5 -5
  30. package/es/api-node/addresses/index.d.ts +2 -0
  31. package/es/api-node/addresses/index.js +17 -1
  32. package/es/api-node/addresses/index.js.map +1 -1
  33. package/es/api-node/assets/index.d.ts +4 -2
  34. package/es/api-node/assets/index.js +6 -6
  35. package/es/api-node/assets/index.js.map +1 -1
  36. package/es/api-node/blocks/index.d.ts +2 -2
  37. package/es/api-node/debug/index.d.ts +100 -0
  38. package/es/api-node/debug/index.js +147 -1
  39. package/es/api-node/debug/index.js.map +1 -1
  40. package/es/api-node/transactions/index.d.ts +9 -5
  41. package/es/api-node/transactions/index.js +12 -3
  42. package/es/api-node/transactions/index.js.map +1 -1
  43. package/es/create.d.ts +362 -235
  44. package/es/tools/adresses/getAssetIdListByTx.d.ts +2 -3
  45. package/es/tools/adresses/getAssetIdListByTx.js +1 -0
  46. package/es/tools/adresses/getAssetIdListByTx.js.map +1 -1
  47. package/es/tools/adresses/getAssetsByTransaction.d.ts +2 -3
  48. package/es/tools/adresses/getAssetsByTransaction.js.map +1 -1
  49. package/es/tools/adresses/getTransactionsWithAssets.d.ts +2 -3
  50. package/es/tools/adresses/watch.js.map +1 -1
  51. package/es/tools/request.d.ts +1 -0
  52. package/es/tools/request.js +1 -1
  53. package/es/tools/request.js.map +1 -1
  54. package/es/tools/transactions/transactions.d.ts +0 -60
  55. package/es/tools/transactions/transactions.js +1 -99
  56. package/es/tools/transactions/transactions.js.map +1 -1
  57. package/package.json +5 -5
package/cjs/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
- feeAssetId: string | null;
881
- }, 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").WithVersion<import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18>, 1> | Transaction<import("@waves/ts-types").Long>[]) => Promise<Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>>;
882
- getAssetIdListByTx: typeof getAssetIdListByTx;
883
- getTransactionsWithAssets: (address: string, limit: number, after?: string | undefined) => Promise<{
884
- transactions: ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
885
- version: 1;
886
- } & import("@waves/ts-types").WithId & {
887
- sender: string;
888
- height: number;
889
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
890
- version: 2;
891
- } & import("@waves/ts-types").WithId & {
892
- sender: string;
893
- height: number;
894
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
895
- version: 3;
896
- } & import("@waves/ts-types").WithId & {
897
- sender: string;
898
- height: number;
899
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
900
- type: 1;
901
- chainId: number;
902
- timestamp: number;
903
- fee: import("@waves/ts-types").Long;
904
- } & {
905
- version: 1;
906
- } & import("@waves/ts-types").WithId & {
907
- sender: string;
908
- height: number;
909
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
910
- version: 1;
911
- } & import("@waves/ts-types").WithId & {
912
- sender: string;
913
- height: number;
914
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
915
- version: 1;
916
- } & import("@waves/ts-types").WithId & {
917
- sender: string;
918
- height: number;
919
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
920
- version: 2;
921
- } & import("@waves/ts-types").WithId & {
922
- sender: string;
923
- height: number;
924
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
925
- feeAssetId: string | null;
926
- } & {
927
- version: 3;
928
- } & import("@waves/ts-types").WithId & {
929
- sender: string;
930
- height: number;
931
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
932
- version: 1;
933
- } & import("@waves/ts-types").WithId & {
934
- sender: string;
935
- height: number;
936
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
937
- version: 2;
938
- } & import("@waves/ts-types").WithId & {
939
- sender: string;
940
- height: number;
941
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
942
- version: 3;
943
- } & import("@waves/ts-types").WithId & {
944
- sender: string;
945
- height: number;
946
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
947
- version: 1;
948
- } & import("@waves/ts-types").WithId & {
949
- sender: string;
950
- height: number;
951
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
952
- version: 2;
953
- } & import("@waves/ts-types").WithId & {
954
- sender: string;
955
- height: number;
956
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
957
- version: 3;
958
- } & import("@waves/ts-types").WithId & {
959
- sender: string;
960
- height: number;
961
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
962
- version: 1;
963
- } & import("@waves/ts-types").WithId & {
964
- sender: string;
965
- height: number;
966
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
967
- version: 2;
968
- } & import("@waves/ts-types").WithId & {
969
- sender: string;
970
- height: number;
971
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
972
- version: 3;
973
- } & import("@waves/ts-types").WithId & {
974
- sender: string;
975
- height: number;
976
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
977
- version: 1;
978
- } & import("@waves/ts-types").WithId & {
979
- sender: string;
980
- height: number;
981
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
982
- version: 2;
983
- } & import("@waves/ts-types").WithId & {
984
- sender: string;
985
- height: number;
986
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
987
- version: 3;
988
- } & import("@waves/ts-types").WithId & {
989
- sender: string;
990
- height: number;
991
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
992
- version: 1;
993
- } & import("@waves/ts-types").WithId & {
994
- sender: string;
995
- height: number;
996
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
997
- version: 2;
998
- } & import("@waves/ts-types").WithId & {
999
- sender: string;
1000
- height: number;
1001
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
1002
- version: 3;
1003
- } & import("@waves/ts-types").WithId & {
1004
- sender: string;
1005
- height: number;
1006
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
1007
- version: 1;
1008
- } & import("@waves/ts-types").WithId & {
1009
- sender: string;
1010
- height: number;
1011
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
1012
- version: 2;
1013
- } & import("@waves/ts-types").WithId & {
1014
- sender: string;
1015
- height: number;
1016
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
1017
- version: 3;
1018
- } & import("@waves/ts-types").WithId & {
1019
- sender: string;
1020
- height: number;
1021
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
1022
- version: 1;
1023
- } & import("@waves/ts-types").WithId & {
1024
- sender: string;
1025
- height: number;
1026
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
1027
- version: 2;
1028
- } & import("@waves/ts-types").WithId & {
1029
- sender: string;
1030
- height: number;
1031
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
1032
- version: 1;
1033
- } & import("@waves/ts-types").WithId & {
1034
- sender: string;
1035
- height: number;
1036
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
1037
- version: 2;
1038
- } & import("@waves/ts-types").WithId & {
1039
- sender: string;
1040
- height: number;
1041
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
1042
- version: 1;
1043
- } & import("@waves/ts-types").WithId & {
1044
- sender: string;
1045
- height: number;
1046
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
1047
- version: 2;
1048
- } & import("@waves/ts-types").WithId & {
1049
- sender: string;
1050
- height: number;
1051
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
1052
- version: 1;
1053
- } & import("@waves/ts-types").WithId & {
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
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
1082
- version: 1;
1083
- } & import("@waves/ts-types").WithId & {
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
- }) | (import("@waves/ts-types").EthereumTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 18> & {
1087
- version: 1;
1088
- } & import("@waves/ts-types").WithId & {
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[]>;