@waves/node-api-js 1.2.5-beta.3 → 1.2.5-beta.7

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 (37) hide show
  1. package/cjs/api-node/eth/index.d.ts +2 -1
  2. package/cjs/api-node/eth/index.js +4 -5
  3. package/cjs/api-node/eth/index.js.map +1 -1
  4. package/cjs/create.d.ts +1088 -0
  5. package/cjs/create.js +119 -0
  6. package/cjs/create.js.map +1 -0
  7. package/cjs/index.d.ts +5 -1089
  8. package/cjs/index.js +6 -114
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/tools/adresses/ethTxId2waves.d.ts +1 -0
  11. package/cjs/tools/adresses/ethTxId2waves.js +8 -0
  12. package/cjs/tools/adresses/ethTxId2waves.js.map +1 -0
  13. package/cjs/tools/query.js +2 -1
  14. package/cjs/tools/query.js.map +1 -1
  15. package/cjs/tools/transactions/ethTxId2waves.d.ts +1 -0
  16. package/cjs/tools/transactions/ethTxId2waves.js +10 -0
  17. package/cjs/tools/transactions/ethTxId2waves.js.map +1 -0
  18. package/dist/node-api.js +64 -19
  19. package/dist/node-api.min.js +5 -5
  20. package/es/api-node/eth/index.d.ts +2 -1
  21. package/es/api-node/eth/index.js +4 -5
  22. package/es/api-node/eth/index.js.map +1 -1
  23. package/es/create.d.ts +1088 -0
  24. package/es/create.js +93 -0
  25. package/es/create.js.map +1 -0
  26. package/es/index.d.ts +5 -1089
  27. package/es/index.js +5 -94
  28. package/es/index.js.map +1 -1
  29. package/es/tools/adresses/ethTxId2waves.d.ts +1 -0
  30. package/es/tools/adresses/ethTxId2waves.js +5 -0
  31. package/es/tools/adresses/ethTxId2waves.js.map +1 -0
  32. package/es/tools/query.js +2 -1
  33. package/es/tools/query.js.map +1 -1
  34. package/es/tools/transactions/ethTxId2waves.d.ts +1 -0
  35. package/es/tools/transactions/ethTxId2waves.js +7 -0
  36. package/es/tools/transactions/ethTxId2waves.js.map +1 -0
  37. package/package.json +1 -1
package/es/index.d.ts CHANGED
@@ -1,1092 +1,8 @@
1
- import * as addressesModule from './api-node/addresses';
2
- import * as blocksModule from './api-node/blocks';
3
- import * as transactionsModule from './api-node/transactions';
4
- import * as leasingModule from './api-node/leasing';
5
- import * as peersModule from './api-node/peers';
6
- import * as rewardsModule from './api-node/rewards';
7
- import * as utilsModule from './api-node/utils';
8
- import * as debugModule from './api-node/debug';
9
- import * as aliasModule from './api-node/alias';
10
- import * as consensusModule from './api-node/consensus';
11
- import * as activationModule from './api-node/activation';
12
- import * as nodeModule from './api-node/node';
13
- import * as assetsModule from './api-node/assets';
14
- import * as ethModule from './api-node/eth';
15
- import query from './tools/query';
16
- import resolve from './tools/resolve';
17
- import request from './tools/request';
18
- import { IOptions, TMap, TMapTuple } from './tools/transactions/broadcast';
19
- import getAssetIdListByTx from './tools/adresses/getAssetIdListByTx';
20
- import parse from './tools/parse';
21
- import * as toolsUtilsModule from './tools/utils';
22
- import { Transaction, TransactionMap, WithApiMixin } from '@waves/ts-types';
23
- import { TLong } from './interface';
24
1
  import wavesAddress2eth from "./tools/adresses/wavesAddress2eth";
25
2
  import ethAddress2waves from "./tools/adresses/ethAddress2waves";
26
3
  import wavesAsset2Eth from "./tools/assets/wavesAsset2eth";
27
- export { wavesAddress2eth, ethAddress2waves, wavesAsset2Eth };
28
- declare function broadcastWrapped<T extends Array<Transaction<TLong>>>(list: T, options?: Partial<IOptions>): Promise<TMapTuple<T, TransactionMap<TLong>, 'type'> & WithApiMixin>;
29
- declare function broadcastWrapped<T extends Transaction<TLong>>(tx: T, options?: Partial<IOptions>): Promise<TMap<TransactionMap<TLong>, T['type'] & WithApiMixin>>;
30
- declare type TWrapRecord<T extends Record<string, (base: string, ...args: Array<any>) => any>> = {
31
- [Key in keyof T]: TWrapApi<T[Key]>;
32
- };
33
- declare type TWrapApi<T extends (base: string, ...args: Array<any>) => any> = T extends (base: string, ...args: infer NEXT) => any ? (...args: NEXT) => ReturnType<T> : never;
34
- export declare function create(base: string): {
35
- addresses: TWrapRecord<typeof addressesModule>;
36
- blocks: TWrapRecord<typeof blocksModule>;
37
- transactions: TWrapRecord<typeof transactionsModule>;
38
- leasing: TWrapRecord<typeof leasingModule>;
39
- tools: {
40
- transactions: {
41
- broadcast: typeof broadcastWrapped;
42
- wait: (tx: (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
43
- version: 1;
44
- } & import("@waves/ts-types").WithId & {
45
- sender: string;
46
- height: number;
47
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
48
- version: 2;
49
- } & import("@waves/ts-types").WithId & {
50
- sender: string;
51
- height: number;
52
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
53
- version: 3;
54
- } & import("@waves/ts-types").WithId & {
55
- sender: string;
56
- height: number;
57
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
58
- type: 1;
59
- chainId: number;
60
- timestamp: number;
61
- fee: import("@waves/ts-types").Long;
62
- } & {
63
- version: 1;
64
- } & import("@waves/ts-types").WithId & {
65
- sender: string;
66
- height: number;
67
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
68
- version: 1;
69
- } & import("@waves/ts-types").WithId & {
70
- sender: string;
71
- height: number;
72
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
73
- version: 1;
74
- } & import("@waves/ts-types").WithId & {
75
- sender: string;
76
- height: number;
77
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
78
- version: 2;
79
- } & import("@waves/ts-types").WithId & {
80
- sender: string;
81
- height: number;
82
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
83
- feeAssetId: string | null;
84
- } & {
85
- version: 3;
86
- } & import("@waves/ts-types").WithId & {
87
- sender: string;
88
- height: number;
89
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
90
- version: 1;
91
- } & import("@waves/ts-types").WithId & {
92
- sender: string;
93
- height: number;
94
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
95
- version: 2;
96
- } & import("@waves/ts-types").WithId & {
97
- sender: string;
98
- height: number;
99
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
100
- version: 3;
101
- } & import("@waves/ts-types").WithId & {
102
- sender: string;
103
- height: number;
104
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
105
- version: 1;
106
- } & import("@waves/ts-types").WithId & {
107
- sender: string;
108
- height: number;
109
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
110
- version: 2;
111
- } & import("@waves/ts-types").WithId & {
112
- sender: string;
113
- height: number;
114
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
115
- version: 3;
116
- } & import("@waves/ts-types").WithId & {
117
- sender: string;
118
- height: number;
119
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
120
- version: 1;
121
- } & import("@waves/ts-types").WithId & {
122
- sender: string;
123
- height: number;
124
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
125
- version: 2;
126
- } & import("@waves/ts-types").WithId & {
127
- sender: string;
128
- height: number;
129
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
130
- version: 3;
131
- } & import("@waves/ts-types").WithId & {
132
- sender: string;
133
- height: number;
134
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
135
- version: 1;
136
- } & import("@waves/ts-types").WithId & {
137
- sender: string;
138
- height: number;
139
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
140
- version: 2;
141
- } & import("@waves/ts-types").WithId & {
142
- sender: string;
143
- height: number;
144
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
145
- version: 3;
146
- } & import("@waves/ts-types").WithId & {
147
- sender: string;
148
- height: number;
149
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
150
- version: 1;
151
- } & import("@waves/ts-types").WithId & {
152
- sender: string;
153
- height: number;
154
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
155
- version: 2;
156
- } & import("@waves/ts-types").WithId & {
157
- sender: string;
158
- height: number;
159
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
160
- version: 3;
161
- } & import("@waves/ts-types").WithId & {
162
- sender: string;
163
- height: number;
164
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
165
- version: 1;
166
- } & import("@waves/ts-types").WithId & {
167
- sender: string;
168
- height: number;
169
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
170
- version: 2;
171
- } & import("@waves/ts-types").WithId & {
172
- sender: string;
173
- height: number;
174
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
175
- version: 3;
176
- } & import("@waves/ts-types").WithId & {
177
- sender: string;
178
- height: number;
179
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
180
- version: 1;
181
- } & import("@waves/ts-types").WithId & {
182
- sender: string;
183
- height: number;
184
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
185
- version: 2;
186
- } & import("@waves/ts-types").WithId & {
187
- sender: string;
188
- height: number;
189
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
190
- version: 1;
191
- } & import("@waves/ts-types").WithId & {
192
- sender: string;
193
- height: number;
194
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
195
- version: 2;
196
- } & import("@waves/ts-types").WithId & {
197
- sender: string;
198
- height: number;
199
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
200
- version: 1;
201
- } & import("@waves/ts-types").WithId & {
202
- sender: string;
203
- height: number;
204
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
205
- version: 2;
206
- } & import("@waves/ts-types").WithId & {
207
- sender: string;
208
- height: number;
209
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
210
- version: 1;
211
- } & import("@waves/ts-types").WithId & {
212
- sender: string;
213
- height: number;
214
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
215
- version: 2;
216
- } & import("@waves/ts-types").WithId & {
217
- sender: string;
218
- height: number;
219
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
220
- version: 1;
221
- } & import("@waves/ts-types").WithId & {
222
- sender: string;
223
- height: number;
224
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
225
- version: 2;
226
- } & import("@waves/ts-types").WithId & {
227
- sender: string;
228
- height: number;
229
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
230
- version: 1;
231
- } & import("@waves/ts-types").WithId & {
232
- sender: string;
233
- height: number;
234
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
235
- version: 2;
236
- } & import("@waves/ts-types").WithId & {
237
- sender: string;
238
- height: number;
239
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
240
- version: 1;
241
- } & import("@waves/ts-types").WithId & {
242
- sender: string;
243
- height: number;
244
- }) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
245
- version: 1;
246
- } & import("@waves/ts-types").WithId & {
247
- sender: string;
248
- height: number;
249
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
250
- version: 2;
251
- } & import("@waves/ts-types").WithId & {
252
- sender: string;
253
- height: number;
254
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
255
- version: 3;
256
- } & import("@waves/ts-types").WithId & {
257
- sender: string;
258
- height: number;
259
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
260
- type: 1;
261
- chainId: number;
262
- timestamp: number;
263
- fee: import("@waves/ts-types").Long;
264
- } & {
265
- version: 1;
266
- } & import("@waves/ts-types").WithId & {
267
- sender: string;
268
- height: number;
269
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
270
- version: 1;
271
- } & import("@waves/ts-types").WithId & {
272
- sender: string;
273
- height: number;
274
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
275
- version: 1;
276
- } & import("@waves/ts-types").WithId & {
277
- sender: string;
278
- height: number;
279
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
280
- version: 2;
281
- } & import("@waves/ts-types").WithId & {
282
- sender: string;
283
- height: number;
284
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
285
- feeAssetId: string | null;
286
- } & {
287
- version: 3;
288
- } & import("@waves/ts-types").WithId & {
289
- sender: string;
290
- height: number;
291
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
292
- version: 1;
293
- } & import("@waves/ts-types").WithId & {
294
- sender: string;
295
- height: number;
296
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
297
- version: 2;
298
- } & import("@waves/ts-types").WithId & {
299
- sender: string;
300
- height: number;
301
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
302
- version: 3;
303
- } & import("@waves/ts-types").WithId & {
304
- sender: string;
305
- height: number;
306
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
307
- version: 1;
308
- } & import("@waves/ts-types").WithId & {
309
- sender: string;
310
- height: number;
311
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
312
- version: 2;
313
- } & import("@waves/ts-types").WithId & {
314
- sender: string;
315
- height: number;
316
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
317
- version: 3;
318
- } & import("@waves/ts-types").WithId & {
319
- sender: string;
320
- height: number;
321
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
322
- version: 1;
323
- } & import("@waves/ts-types").WithId & {
324
- sender: string;
325
- height: number;
326
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
327
- version: 2;
328
- } & import("@waves/ts-types").WithId & {
329
- sender: string;
330
- height: number;
331
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
332
- version: 3;
333
- } & import("@waves/ts-types").WithId & {
334
- sender: string;
335
- height: number;
336
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
337
- version: 1;
338
- } & import("@waves/ts-types").WithId & {
339
- sender: string;
340
- height: number;
341
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
342
- version: 2;
343
- } & import("@waves/ts-types").WithId & {
344
- sender: string;
345
- height: number;
346
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
347
- version: 3;
348
- } & import("@waves/ts-types").WithId & {
349
- sender: string;
350
- height: number;
351
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
352
- version: 1;
353
- } & import("@waves/ts-types").WithId & {
354
- sender: string;
355
- height: number;
356
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
357
- version: 2;
358
- } & import("@waves/ts-types").WithId & {
359
- sender: string;
360
- height: number;
361
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
362
- version: 3;
363
- } & import("@waves/ts-types").WithId & {
364
- sender: string;
365
- height: number;
366
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
367
- version: 1;
368
- } & import("@waves/ts-types").WithId & {
369
- sender: string;
370
- height: number;
371
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
372
- version: 2;
373
- } & import("@waves/ts-types").WithId & {
374
- sender: string;
375
- height: number;
376
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
377
- version: 3;
378
- } & import("@waves/ts-types").WithId & {
379
- sender: string;
380
- height: number;
381
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
382
- version: 1;
383
- } & import("@waves/ts-types").WithId & {
384
- sender: string;
385
- height: number;
386
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
387
- version: 2;
388
- } & import("@waves/ts-types").WithId & {
389
- sender: string;
390
- height: number;
391
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
392
- version: 1;
393
- } & import("@waves/ts-types").WithId & {
394
- sender: string;
395
- height: number;
396
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
397
- version: 2;
398
- } & import("@waves/ts-types").WithId & {
399
- sender: string;
400
- height: number;
401
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
402
- version: 1;
403
- } & import("@waves/ts-types").WithId & {
404
- sender: string;
405
- height: number;
406
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
407
- version: 2;
408
- } & import("@waves/ts-types").WithId & {
409
- sender: string;
410
- height: number;
411
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
412
- version: 1;
413
- } & import("@waves/ts-types").WithId & {
414
- sender: string;
415
- height: number;
416
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
417
- version: 2;
418
- } & import("@waves/ts-types").WithId & {
419
- sender: string;
420
- height: number;
421
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
422
- version: 1;
423
- } & import("@waves/ts-types").WithId & {
424
- sender: string;
425
- height: number;
426
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
427
- version: 2;
428
- } & import("@waves/ts-types").WithId & {
429
- sender: string;
430
- height: number;
431
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
432
- version: 1;
433
- } & import("@waves/ts-types").WithId & {
434
- sender: string;
435
- height: number;
436
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
437
- version: 2;
438
- } & import("@waves/ts-types").WithId & {
439
- sender: string;
440
- height: number;
441
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
442
- version: 1;
443
- } & import("@waves/ts-types").WithId & {
444
- sender: string;
445
- height: number;
446
- }))[], 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> & {
447
- version: 1;
448
- } & import("@waves/ts-types").WithId & {
449
- sender: string;
450
- height: number;
451
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
452
- version: 2;
453
- } & import("@waves/ts-types").WithId & {
454
- sender: string;
455
- height: number;
456
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
457
- version: 3;
458
- } & import("@waves/ts-types").WithId & {
459
- sender: string;
460
- height: number;
461
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
462
- type: 1;
463
- chainId: number;
464
- timestamp: number;
465
- fee: import("@waves/ts-types").Long;
466
- } & {
467
- version: 1;
468
- } & import("@waves/ts-types").WithId & {
469
- sender: string;
470
- height: number;
471
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
472
- version: 1;
473
- } & import("@waves/ts-types").WithId & {
474
- sender: string;
475
- height: number;
476
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
477
- version: 1;
478
- } & import("@waves/ts-types").WithId & {
479
- sender: string;
480
- height: number;
481
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
482
- version: 2;
483
- } & import("@waves/ts-types").WithId & {
484
- sender: string;
485
- height: number;
486
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
487
- feeAssetId: string | null;
488
- } & {
489
- version: 3;
490
- } & import("@waves/ts-types").WithId & {
491
- sender: string;
492
- height: number;
493
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
494
- version: 1;
495
- } & import("@waves/ts-types").WithId & {
496
- sender: string;
497
- height: number;
498
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
499
- version: 2;
500
- } & import("@waves/ts-types").WithId & {
501
- sender: string;
502
- height: number;
503
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
504
- version: 3;
505
- } & import("@waves/ts-types").WithId & {
506
- sender: string;
507
- height: number;
508
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
509
- version: 1;
510
- } & import("@waves/ts-types").WithId & {
511
- sender: string;
512
- height: number;
513
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
514
- version: 2;
515
- } & import("@waves/ts-types").WithId & {
516
- sender: string;
517
- height: number;
518
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
519
- version: 3;
520
- } & import("@waves/ts-types").WithId & {
521
- sender: string;
522
- height: number;
523
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
524
- version: 1;
525
- } & import("@waves/ts-types").WithId & {
526
- sender: string;
527
- height: number;
528
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
529
- version: 2;
530
- } & import("@waves/ts-types").WithId & {
531
- sender: string;
532
- height: number;
533
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
534
- version: 3;
535
- } & import("@waves/ts-types").WithId & {
536
- sender: string;
537
- height: number;
538
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
539
- version: 1;
540
- } & import("@waves/ts-types").WithId & {
541
- sender: string;
542
- height: number;
543
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
544
- version: 2;
545
- } & import("@waves/ts-types").WithId & {
546
- sender: string;
547
- height: number;
548
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
549
- version: 3;
550
- } & import("@waves/ts-types").WithId & {
551
- sender: string;
552
- height: number;
553
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
554
- version: 1;
555
- } & import("@waves/ts-types").WithId & {
556
- sender: string;
557
- height: number;
558
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
559
- version: 2;
560
- } & import("@waves/ts-types").WithId & {
561
- sender: string;
562
- height: number;
563
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
564
- version: 3;
565
- } & import("@waves/ts-types").WithId & {
566
- sender: string;
567
- height: number;
568
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
569
- version: 1;
570
- } & import("@waves/ts-types").WithId & {
571
- sender: string;
572
- height: number;
573
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
574
- version: 2;
575
- } & import("@waves/ts-types").WithId & {
576
- sender: string;
577
- height: number;
578
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
579
- version: 3;
580
- } & import("@waves/ts-types").WithId & {
581
- sender: string;
582
- height: number;
583
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
584
- version: 1;
585
- } & import("@waves/ts-types").WithId & {
586
- sender: string;
587
- height: number;
588
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
589
- version: 2;
590
- } & import("@waves/ts-types").WithId & {
591
- sender: string;
592
- height: number;
593
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
594
- version: 1;
595
- } & import("@waves/ts-types").WithId & {
596
- sender: string;
597
- height: number;
598
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
599
- version: 2;
600
- } & import("@waves/ts-types").WithId & {
601
- sender: string;
602
- height: number;
603
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
604
- version: 1;
605
- } & import("@waves/ts-types").WithId & {
606
- sender: string;
607
- height: number;
608
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
609
- version: 2;
610
- } & import("@waves/ts-types").WithId & {
611
- sender: string;
612
- height: number;
613
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
614
- version: 1;
615
- } & import("@waves/ts-types").WithId & {
616
- sender: string;
617
- height: number;
618
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
619
- version: 2;
620
- } & import("@waves/ts-types").WithId & {
621
- sender: string;
622
- height: number;
623
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
624
- version: 1;
625
- } & import("@waves/ts-types").WithId & {
626
- sender: string;
627
- height: number;
628
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
629
- version: 2;
630
- } & import("@waves/ts-types").WithId & {
631
- sender: string;
632
- height: number;
633
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
634
- version: 1;
635
- } & import("@waves/ts-types").WithId & {
636
- sender: string;
637
- height: number;
638
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
639
- version: 2;
640
- } & import("@waves/ts-types").WithId & {
641
- sender: string;
642
- height: number;
643
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
644
- version: 1;
645
- } & import("@waves/ts-types").WithId & {
646
- sender: string;
647
- height: number;
648
- }) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
649
- version: 1;
650
- } & import("@waves/ts-types").WithId & {
651
- sender: string;
652
- height: number;
653
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
654
- version: 2;
655
- } & import("@waves/ts-types").WithId & {
656
- sender: string;
657
- height: number;
658
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
659
- version: 3;
660
- } & import("@waves/ts-types").WithId & {
661
- sender: string;
662
- height: number;
663
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
664
- type: 1;
665
- chainId: number;
666
- timestamp: number;
667
- fee: import("@waves/ts-types").Long;
668
- } & {
669
- version: 1;
670
- } & import("@waves/ts-types").WithId & {
671
- sender: string;
672
- height: number;
673
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
674
- version: 1;
675
- } & import("@waves/ts-types").WithId & {
676
- sender: string;
677
- height: number;
678
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
679
- version: 1;
680
- } & import("@waves/ts-types").WithId & {
681
- sender: string;
682
- height: number;
683
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
684
- version: 2;
685
- } & import("@waves/ts-types").WithId & {
686
- sender: string;
687
- height: number;
688
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
689
- feeAssetId: string | null;
690
- } & {
691
- version: 3;
692
- } & import("@waves/ts-types").WithId & {
693
- sender: string;
694
- height: number;
695
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
696
- version: 1;
697
- } & import("@waves/ts-types").WithId & {
698
- sender: string;
699
- height: number;
700
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
701
- version: 2;
702
- } & import("@waves/ts-types").WithId & {
703
- sender: string;
704
- height: number;
705
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
706
- version: 3;
707
- } & import("@waves/ts-types").WithId & {
708
- sender: string;
709
- height: number;
710
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
711
- version: 1;
712
- } & import("@waves/ts-types").WithId & {
713
- sender: string;
714
- height: number;
715
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
716
- version: 2;
717
- } & import("@waves/ts-types").WithId & {
718
- sender: string;
719
- height: number;
720
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
721
- version: 3;
722
- } & import("@waves/ts-types").WithId & {
723
- sender: string;
724
- height: number;
725
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
726
- version: 1;
727
- } & import("@waves/ts-types").WithId & {
728
- sender: string;
729
- height: number;
730
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
731
- version: 2;
732
- } & import("@waves/ts-types").WithId & {
733
- sender: string;
734
- height: number;
735
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
736
- version: 3;
737
- } & import("@waves/ts-types").WithId & {
738
- sender: string;
739
- height: number;
740
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
741
- version: 1;
742
- } & import("@waves/ts-types").WithId & {
743
- sender: string;
744
- height: number;
745
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
746
- version: 2;
747
- } & import("@waves/ts-types").WithId & {
748
- sender: string;
749
- height: number;
750
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
751
- version: 3;
752
- } & import("@waves/ts-types").WithId & {
753
- sender: string;
754
- height: number;
755
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
756
- version: 1;
757
- } & import("@waves/ts-types").WithId & {
758
- sender: string;
759
- height: number;
760
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
761
- version: 2;
762
- } & import("@waves/ts-types").WithId & {
763
- sender: string;
764
- height: number;
765
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
766
- version: 3;
767
- } & import("@waves/ts-types").WithId & {
768
- sender: string;
769
- height: number;
770
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
771
- version: 1;
772
- } & import("@waves/ts-types").WithId & {
773
- sender: string;
774
- height: number;
775
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
776
- version: 2;
777
- } & import("@waves/ts-types").WithId & {
778
- sender: string;
779
- height: number;
780
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
781
- version: 3;
782
- } & import("@waves/ts-types").WithId & {
783
- sender: string;
784
- height: number;
785
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
786
- version: 1;
787
- } & import("@waves/ts-types").WithId & {
788
- sender: string;
789
- height: number;
790
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
791
- version: 2;
792
- } & import("@waves/ts-types").WithId & {
793
- sender: string;
794
- height: number;
795
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
796
- version: 1;
797
- } & import("@waves/ts-types").WithId & {
798
- sender: string;
799
- height: number;
800
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
801
- version: 2;
802
- } & import("@waves/ts-types").WithId & {
803
- sender: string;
804
- height: number;
805
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
806
- version: 1;
807
- } & import("@waves/ts-types").WithId & {
808
- sender: string;
809
- height: number;
810
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
811
- version: 2;
812
- } & import("@waves/ts-types").WithId & {
813
- sender: string;
814
- height: number;
815
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
816
- version: 1;
817
- } & import("@waves/ts-types").WithId & {
818
- sender: string;
819
- height: number;
820
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
821
- version: 2;
822
- } & import("@waves/ts-types").WithId & {
823
- sender: string;
824
- height: number;
825
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
826
- version: 1;
827
- } & import("@waves/ts-types").WithId & {
828
- sender: string;
829
- height: number;
830
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
831
- version: 2;
832
- } & import("@waves/ts-types").WithId & {
833
- sender: string;
834
- height: number;
835
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
836
- version: 1;
837
- } & import("@waves/ts-types").WithId & {
838
- sender: string;
839
- height: number;
840
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
841
- version: 2;
842
- } & import("@waves/ts-types").WithId & {
843
- sender: string;
844
- height: number;
845
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
846
- version: 1;
847
- } & import("@waves/ts-types").WithId & {
848
- sender: string;
849
- height: number;
850
- }))[]>;
851
- };
852
- blocks: {
853
- getNetworkByte: () => Promise<number>;
854
- getNetworkCode: () => Promise<string>;
855
- };
856
- addresses: {
857
- createWatch: (address: string, interval?: number | undefined) => Promise<import("./tools/adresses/watch").Watch>;
858
- getAssetsByTransaction: (tx: import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
859
- type: 1;
860
- chainId: number;
861
- timestamp: number;
862
- fee: import("@waves/ts-types").Long;
863
- }, 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> & {
864
- feeAssetId: string | null;
865
- }, 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> | Transaction<import("@waves/ts-types").Long>[]) => Promise<Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>>;
866
- getAssetIdListByTx: typeof getAssetIdListByTx;
867
- getTransactionsWithAssets: (address: string, limit: number, after?: string | undefined) => Promise<{
868
- transactions: ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
869
- version: 1;
870
- } & import("@waves/ts-types").WithId & {
871
- sender: string;
872
- height: number;
873
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
874
- version: 2;
875
- } & import("@waves/ts-types").WithId & {
876
- sender: string;
877
- height: number;
878
- }) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
879
- version: 3;
880
- } & import("@waves/ts-types").WithId & {
881
- sender: string;
882
- height: number;
883
- }) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
884
- type: 1;
885
- chainId: number;
886
- timestamp: number;
887
- fee: import("@waves/ts-types").Long;
888
- } & {
889
- version: 1;
890
- } & import("@waves/ts-types").WithId & {
891
- sender: string;
892
- height: number;
893
- }) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
894
- version: 1;
895
- } & import("@waves/ts-types").WithId & {
896
- sender: string;
897
- height: number;
898
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
899
- version: 1;
900
- } & import("@waves/ts-types").WithId & {
901
- sender: string;
902
- height: number;
903
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
904
- version: 2;
905
- } & import("@waves/ts-types").WithId & {
906
- sender: string;
907
- height: number;
908
- }) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
909
- feeAssetId: string | null;
910
- } & {
911
- version: 3;
912
- } & import("@waves/ts-types").WithId & {
913
- sender: string;
914
- height: number;
915
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
916
- version: 1;
917
- } & import("@waves/ts-types").WithId & {
918
- sender: string;
919
- height: number;
920
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
921
- version: 2;
922
- } & import("@waves/ts-types").WithId & {
923
- sender: string;
924
- height: number;
925
- }) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
926
- version: 3;
927
- } & import("@waves/ts-types").WithId & {
928
- sender: string;
929
- height: number;
930
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
931
- version: 1;
932
- } & import("@waves/ts-types").WithId & {
933
- sender: string;
934
- height: number;
935
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
936
- version: 2;
937
- } & import("@waves/ts-types").WithId & {
938
- sender: string;
939
- height: number;
940
- }) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
941
- version: 3;
942
- } & import("@waves/ts-types").WithId & {
943
- sender: string;
944
- height: number;
945
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
946
- version: 1;
947
- } & import("@waves/ts-types").WithId & {
948
- sender: string;
949
- height: number;
950
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
951
- version: 2;
952
- } & import("@waves/ts-types").WithId & {
953
- sender: string;
954
- height: number;
955
- }) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
956
- version: 3;
957
- } & import("@waves/ts-types").WithId & {
958
- sender: string;
959
- height: number;
960
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
961
- version: 1;
962
- } & import("@waves/ts-types").WithId & {
963
- sender: string;
964
- height: number;
965
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
966
- version: 2;
967
- } & import("@waves/ts-types").WithId & {
968
- sender: string;
969
- height: number;
970
- }) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
971
- version: 3;
972
- } & import("@waves/ts-types").WithId & {
973
- sender: string;
974
- height: number;
975
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
976
- version: 1;
977
- } & import("@waves/ts-types").WithId & {
978
- sender: string;
979
- height: number;
980
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
981
- version: 2;
982
- } & import("@waves/ts-types").WithId & {
983
- sender: string;
984
- height: number;
985
- }) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
986
- version: 3;
987
- } & import("@waves/ts-types").WithId & {
988
- sender: string;
989
- height: number;
990
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
991
- version: 1;
992
- } & import("@waves/ts-types").WithId & {
993
- sender: string;
994
- height: number;
995
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
996
- version: 2;
997
- } & import("@waves/ts-types").WithId & {
998
- sender: string;
999
- height: number;
1000
- }) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
1001
- version: 3;
1002
- } & import("@waves/ts-types").WithId & {
1003
- sender: string;
1004
- height: number;
1005
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
1006
- version: 1;
1007
- } & import("@waves/ts-types").WithId & {
1008
- sender: string;
1009
- height: number;
1010
- }) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
1011
- version: 2;
1012
- } & import("@waves/ts-types").WithId & {
1013
- sender: string;
1014
- height: number;
1015
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
1016
- version: 1;
1017
- } & import("@waves/ts-types").WithId & {
1018
- sender: string;
1019
- height: number;
1020
- }) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
1021
- version: 2;
1022
- } & import("@waves/ts-types").WithId & {
1023
- sender: string;
1024
- height: number;
1025
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
1026
- version: 1;
1027
- } & import("@waves/ts-types").WithId & {
1028
- sender: string;
1029
- height: number;
1030
- }) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
1031
- version: 2;
1032
- } & import("@waves/ts-types").WithId & {
1033
- sender: string;
1034
- height: number;
1035
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
1036
- version: 1;
1037
- } & import("@waves/ts-types").WithId & {
1038
- sender: string;
1039
- height: number;
1040
- }) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
1041
- version: 2;
1042
- } & import("@waves/ts-types").WithId & {
1043
- sender: string;
1044
- height: number;
1045
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
1046
- version: 1;
1047
- } & import("@waves/ts-types").WithId & {
1048
- sender: string;
1049
- height: number;
1050
- }) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
1051
- version: 2;
1052
- } & import("@waves/ts-types").WithId & {
1053
- sender: string;
1054
- height: number;
1055
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
1056
- version: 1;
1057
- } & import("@waves/ts-types").WithId & {
1058
- sender: string;
1059
- height: number;
1060
- }) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
1061
- version: 2;
1062
- } & import("@waves/ts-types").WithId & {
1063
- sender: string;
1064
- height: number;
1065
- }) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
1066
- version: 1;
1067
- } & import("@waves/ts-types").WithId & {
1068
- sender: string;
1069
- height: number;
1070
- }))[];
1071
- assets: Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>;
1072
- }>;
1073
- availableSponsoredBalances: (address: string, wavesFee: import("@waves/ts-types").Long) => Promise<import("./tools/adresses/availableSponsoredBalances").TAssetFeeInfo[]>;
1074
- };
1075
- utils: typeof toolsUtilsModule;
1076
- query: typeof query;
1077
- resolve: typeof resolve;
1078
- request: typeof request;
1079
- parse: typeof parse;
1080
- };
1081
- peers: TWrapRecord<typeof peersModule>;
1082
- rewards: TWrapRecord<typeof rewardsModule>;
1083
- utils: TWrapRecord<typeof utilsModule>;
1084
- debug: TWrapRecord<typeof debugModule>;
1085
- alias: TWrapRecord<typeof aliasModule>;
1086
- consensus: TWrapRecord<typeof consensusModule>;
1087
- activation: TWrapRecord<typeof activationModule>;
1088
- node: TWrapRecord<typeof nodeModule>;
1089
- assets: TWrapRecord<typeof assetsModule>;
1090
- eth: TWrapRecord<typeof ethModule>;
1091
- };
1092
- export default create;
4
+ import ethTxId2waves from "./tools/transactions/ethTxId2waves";
5
+ import { create as createFn } from './create';
6
+ export { wavesAddress2eth, ethAddress2waves, wavesAsset2Eth, ethTxId2waves };
7
+ export declare const create: typeof createFn;
8
+ export default createFn;