@odatano/core 0.3.2 → 0.3.3

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 (52) hide show
  1. package/@cds-models/CardanoODataService/index.d.ts +1969 -0
  2. package/@cds-models/CardanoODataService/index.d.ts.map +1 -0
  3. package/@cds-models/CardanoODataService/index.js +329 -0
  4. package/@cds-models/CardanoODataService/index.js.map +1 -0
  5. package/@cds-models/CardanoODataService/index.ts +646 -0
  6. package/@cds-models/CardanoTransactionService/index.d.ts +1860 -0
  7. package/@cds-models/CardanoTransactionService/index.d.ts.map +1 -0
  8. package/@cds-models/CardanoTransactionService/index.js +328 -0
  9. package/@cds-models/CardanoTransactionService/index.js.map +1 -0
  10. package/@cds-models/CardanoTransactionService/index.ts +602 -0
  11. package/@cds-models/CardanoWatcherAdminService/index.js +113 -0
  12. package/@cds-models/CardanoWatcherAdminService/index.js.map +1 -0
  13. package/@cds-models/CardanoWatcherAdminService/index.ts +263 -0
  14. package/@cds-models/_/index.d.ts +66 -0
  15. package/@cds-models/_/index.d.ts.map +1 -0
  16. package/@cds-models/_/index.js +42 -0
  17. package/@cds-models/_/index.js.map +1 -0
  18. package/@cds-models/_/index.ts +96 -0
  19. package/@cds-models/cds/outbox/index.js +8 -0
  20. package/@cds-models/cds/outbox/index.js.map +1 -0
  21. package/@cds-models/cds/outbox/index.ts +27 -0
  22. package/@cds-models/cds/xt/MTXServices/index.js +8 -0
  23. package/@cds-models/cds/xt/MTXServices/index.js.map +1 -0
  24. package/@cds-models/cds/xt/MTXServices/index.ts +4 -0
  25. package/@cds-models/index.d.ts +168 -0
  26. package/@cds-models/index.d.ts.map +1 -0
  27. package/@cds-models/index.js +113 -0
  28. package/@cds-models/index.js.map +1 -0
  29. package/@cds-models/index.ts +84 -0
  30. package/@cds-models/odatano/cardano/index.d.ts +2882 -0
  31. package/@cds-models/odatano/cardano/index.d.ts.map +1 -0
  32. package/@cds-models/odatano/cardano/index.js +554 -0
  33. package/@cds-models/odatano/cardano/index.js.map +1 -0
  34. package/@cds-models/odatano/cardano/index.ts +802 -0
  35. package/@cds-models/odatano/reeve/index.js +83 -0
  36. package/@cds-models/odatano/reeve/index.js.map +1 -0
  37. package/@cds-models/odatano/reeve/index.ts +57 -0
  38. package/@cds-models/odatano/transactions/index.js +56 -0
  39. package/@cds-models/odatano/transactions/index.js.map +1 -0
  40. package/@cds-models/odatano/transactions/index.ts +18 -0
  41. package/@cds-models/odatano/watch/index.js +120 -0
  42. package/@cds-models/odatano/watch/index.js.map +1 -0
  43. package/@cds-models/odatano/watch/index.ts +110 -0
  44. package/@cds-models/sap/common/index.d.ts +678 -0
  45. package/@cds-models/sap/common/index.d.ts.map +1 -0
  46. package/@cds-models/sap/common/index.js +270 -0
  47. package/@cds-models/sap/common/index.js.map +1 -0
  48. package/@cds-models/sap/common/index.ts +249 -0
  49. package/package.json +1 -1
  50. package/src/plugin.d.ts.map +1 -1
  51. package/src/plugin.js +5 -0
  52. package/src/plugin.js.map +1 -1
@@ -0,0 +1,1969 @@
1
+ import * as _odatano_cardano from './../odatano/cardano';
2
+ import * as __ from './../_';
3
+ export default class {
4
+ static readonly GetNetworkInformation: typeof GetNetworkInformation;
5
+ static readonly GetBlockByHash: typeof GetBlockByHash;
6
+ static readonly GetEpochByNumber: typeof GetEpochByNumber;
7
+ static readonly GetPoolById: typeof GetPoolById;
8
+ static readonly GetDrepById: typeof GetDrepById;
9
+ static readonly GetAccountByStakeAddress: typeof GetAccountByStakeAddress;
10
+ static readonly GetTransactionByHash: typeof GetTransactionByHash;
11
+ static readonly GetMetadataByTxHash: typeof GetMetadataByTxHash;
12
+ static readonly GetAddressByBech32: typeof GetAddressByBech32;
13
+ static readonly GetUTxOsByAddress: typeof GetUTxOsByAddress;
14
+ static readonly GetAssetsByAddress: typeof GetAssetsByAddress;
15
+ static readonly GetLatestTransactionsByAddress: typeof GetLatestTransactionsByAddress;
16
+ static readonly GetLatestBlock: typeof GetLatestBlock;
17
+ static readonly GetLatestEpoch: typeof GetLatestEpoch;
18
+ static readonly GetLedgerProtocolParameters: typeof GetLedgerProtocolParameters;
19
+ }
20
+ export declare function _NetworkInformationAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
21
+ new (...args: any[]): {
22
+ validFrom?: __.CdsTimestamp | null;
23
+ validTo?: __.CdsTimestamp | null;
24
+ network?: __.Key<string>;
25
+ maxSupply?: _odatano_cardano.Lovelace | null;
26
+ totalSupply?: _odatano_cardano.Lovelace | null;
27
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
28
+ lockedSupply?: _odatano_cardano.Lovelace | null;
29
+ treasurySupply?: _odatano_cardano.Lovelace | null;
30
+ reservesSupply?: _odatano_cardano.Lovelace | null;
31
+ liveStake?: _odatano_cardano.Lovelace | null;
32
+ activeStake?: _odatano_cardano.Lovelace | null;
33
+ };
34
+ readonly kind: "entity" | "type" | "aspect";
35
+ readonly keys: __.KeysOf<{
36
+ validFrom?: __.CdsTimestamp | null;
37
+ validTo?: __.CdsTimestamp | null;
38
+ network?: __.Key<string>;
39
+ maxSupply?: _odatano_cardano.Lovelace | null;
40
+ totalSupply?: _odatano_cardano.Lovelace | null;
41
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
42
+ lockedSupply?: _odatano_cardano.Lovelace | null;
43
+ treasurySupply?: _odatano_cardano.Lovelace | null;
44
+ reservesSupply?: _odatano_cardano.Lovelace | null;
45
+ liveStake?: _odatano_cardano.Lovelace | null;
46
+ activeStake?: _odatano_cardano.Lovelace | null;
47
+ }>;
48
+ readonly elements: __.ElementsOf<{
49
+ validFrom?: __.CdsTimestamp | null;
50
+ validTo?: __.CdsTimestamp | null;
51
+ network?: __.Key<string>;
52
+ maxSupply?: _odatano_cardano.Lovelace | null;
53
+ totalSupply?: _odatano_cardano.Lovelace | null;
54
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
55
+ lockedSupply?: _odatano_cardano.Lovelace | null;
56
+ treasurySupply?: _odatano_cardano.Lovelace | null;
57
+ reservesSupply?: _odatano_cardano.Lovelace | null;
58
+ liveStake?: _odatano_cardano.Lovelace | null;
59
+ activeStake?: _odatano_cardano.Lovelace | null;
60
+ }>;
61
+ readonly actions: globalThis.Record<never, never>;
62
+ } & TBase;
63
+ declare const NetworkInformation_base: {
64
+ new (...args: any[]): {
65
+ validFrom?: __.CdsTimestamp | null;
66
+ validTo?: __.CdsTimestamp | null;
67
+ network?: __.Key<string>;
68
+ maxSupply?: _odatano_cardano.Lovelace | null;
69
+ totalSupply?: _odatano_cardano.Lovelace | null;
70
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
71
+ lockedSupply?: _odatano_cardano.Lovelace | null;
72
+ treasurySupply?: _odatano_cardano.Lovelace | null;
73
+ reservesSupply?: _odatano_cardano.Lovelace | null;
74
+ liveStake?: _odatano_cardano.Lovelace | null;
75
+ activeStake?: _odatano_cardano.Lovelace | null;
76
+ };
77
+ readonly kind: "entity" | "type" | "aspect";
78
+ readonly keys: __.KeysOf<{
79
+ validFrom?: __.CdsTimestamp | null;
80
+ validTo?: __.CdsTimestamp | null;
81
+ network?: __.Key<string>;
82
+ maxSupply?: _odatano_cardano.Lovelace | null;
83
+ totalSupply?: _odatano_cardano.Lovelace | null;
84
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
85
+ lockedSupply?: _odatano_cardano.Lovelace | null;
86
+ treasurySupply?: _odatano_cardano.Lovelace | null;
87
+ reservesSupply?: _odatano_cardano.Lovelace | null;
88
+ liveStake?: _odatano_cardano.Lovelace | null;
89
+ activeStake?: _odatano_cardano.Lovelace | null;
90
+ }>;
91
+ readonly elements: __.ElementsOf<{
92
+ validFrom?: __.CdsTimestamp | null;
93
+ validTo?: __.CdsTimestamp | null;
94
+ network?: __.Key<string>;
95
+ maxSupply?: _odatano_cardano.Lovelace | null;
96
+ totalSupply?: _odatano_cardano.Lovelace | null;
97
+ circulatingSupply?: _odatano_cardano.Lovelace | null;
98
+ lockedSupply?: _odatano_cardano.Lovelace | null;
99
+ treasurySupply?: _odatano_cardano.Lovelace | null;
100
+ reservesSupply?: _odatano_cardano.Lovelace | null;
101
+ liveStake?: _odatano_cardano.Lovelace | null;
102
+ activeStake?: _odatano_cardano.Lovelace | null;
103
+ }>;
104
+ readonly actions: globalThis.Record<never, never>;
105
+ } & typeof __.Entity;
106
+ export declare class NetworkInformation extends NetworkInformation_base {
107
+ }
108
+ export declare class NetworkInformation_ extends Array<NetworkInformation> {
109
+ $count?: number;
110
+ }
111
+ export declare function _BlockAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
112
+ new (...args: any[]): {
113
+ hash?: __.Key<string>;
114
+ time?: string | null;
115
+ height?: number | null;
116
+ slotLeader?: string | null;
117
+ epochNumber?: number | null;
118
+ epoch?: __.Association.to<Epoch> | null;
119
+ epochSlot?: number | null;
120
+ size?: number | null;
121
+ txCount?: number | null;
122
+ fees?: _odatano_cardano.Lovelace | null;
123
+ };
124
+ readonly kind: "entity" | "type" | "aspect";
125
+ readonly keys: __.KeysOf<{
126
+ hash?: __.Key<string>;
127
+ time?: string | null;
128
+ height?: number | null;
129
+ slotLeader?: string | null;
130
+ epochNumber?: number | null;
131
+ epoch?: __.Association.to<Epoch> | null;
132
+ epochSlot?: number | null;
133
+ size?: number | null;
134
+ txCount?: number | null;
135
+ fees?: _odatano_cardano.Lovelace | null;
136
+ }>;
137
+ readonly elements: __.ElementsOf<{
138
+ hash?: __.Key<string>;
139
+ time?: string | null;
140
+ height?: number | null;
141
+ slotLeader?: string | null;
142
+ epochNumber?: number | null;
143
+ epoch?: __.Association.to<Epoch> | null;
144
+ epochSlot?: number | null;
145
+ size?: number | null;
146
+ txCount?: number | null;
147
+ fees?: _odatano_cardano.Lovelace | null;
148
+ }>;
149
+ readonly actions: globalThis.Record<never, never>;
150
+ } & TBase;
151
+ declare const Block_base: {
152
+ new (...args: any[]): {
153
+ hash?: __.Key<string>;
154
+ time?: string | null;
155
+ height?: number | null;
156
+ slotLeader?: string | null;
157
+ epochNumber?: number | null;
158
+ epoch?: __.Association.to<Epoch> | null;
159
+ epochSlot?: number | null;
160
+ size?: number | null;
161
+ txCount?: number | null;
162
+ fees?: _odatano_cardano.Lovelace | null;
163
+ };
164
+ readonly kind: "entity" | "type" | "aspect";
165
+ readonly keys: __.KeysOf<{
166
+ hash?: __.Key<string>;
167
+ time?: string | null;
168
+ height?: number | null;
169
+ slotLeader?: string | null;
170
+ epochNumber?: number | null;
171
+ epoch?: __.Association.to<Epoch> | null;
172
+ epochSlot?: number | null;
173
+ size?: number | null;
174
+ txCount?: number | null;
175
+ fees?: _odatano_cardano.Lovelace | null;
176
+ }>;
177
+ readonly elements: __.ElementsOf<{
178
+ hash?: __.Key<string>;
179
+ time?: string | null;
180
+ height?: number | null;
181
+ slotLeader?: string | null;
182
+ epochNumber?: number | null;
183
+ epoch?: __.Association.to<Epoch> | null;
184
+ epochSlot?: number | null;
185
+ size?: number | null;
186
+ txCount?: number | null;
187
+ fees?: _odatano_cardano.Lovelace | null;
188
+ }>;
189
+ readonly actions: globalThis.Record<never, never>;
190
+ } & typeof __.Entity;
191
+ export declare class Block extends Block_base {
192
+ }
193
+ export declare class Blocks extends Array<Block> {
194
+ $count?: number;
195
+ }
196
+ export declare function _EpochAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
197
+ new (...args: any[]): {
198
+ epoch?: __.Key<number>;
199
+ startTime?: number | null;
200
+ endTime?: number | null;
201
+ firstBlockTime?: number | null;
202
+ lastBlockTime?: number | null;
203
+ blockCount?: number | null;
204
+ txCount?: number | null;
205
+ output?: string | null;
206
+ fees?: _odatano_cardano.Lovelace | null;
207
+ activeStake?: _odatano_cardano.Lovelace | null;
208
+ };
209
+ readonly kind: "entity" | "type" | "aspect";
210
+ readonly keys: __.KeysOf<{
211
+ epoch?: __.Key<number>;
212
+ startTime?: number | null;
213
+ endTime?: number | null;
214
+ firstBlockTime?: number | null;
215
+ lastBlockTime?: number | null;
216
+ blockCount?: number | null;
217
+ txCount?: number | null;
218
+ output?: string | null;
219
+ fees?: _odatano_cardano.Lovelace | null;
220
+ activeStake?: _odatano_cardano.Lovelace | null;
221
+ }>;
222
+ readonly elements: __.ElementsOf<{
223
+ epoch?: __.Key<number>;
224
+ startTime?: number | null;
225
+ endTime?: number | null;
226
+ firstBlockTime?: number | null;
227
+ lastBlockTime?: number | null;
228
+ blockCount?: number | null;
229
+ txCount?: number | null;
230
+ output?: string | null;
231
+ fees?: _odatano_cardano.Lovelace | null;
232
+ activeStake?: _odatano_cardano.Lovelace | null;
233
+ }>;
234
+ readonly actions: globalThis.Record<never, never>;
235
+ } & TBase;
236
+ declare const Epoch_base: {
237
+ new (...args: any[]): {
238
+ epoch?: __.Key<number>;
239
+ startTime?: number | null;
240
+ endTime?: number | null;
241
+ firstBlockTime?: number | null;
242
+ lastBlockTime?: number | null;
243
+ blockCount?: number | null;
244
+ txCount?: number | null;
245
+ output?: string | null;
246
+ fees?: _odatano_cardano.Lovelace | null;
247
+ activeStake?: _odatano_cardano.Lovelace | null;
248
+ };
249
+ readonly kind: "entity" | "type" | "aspect";
250
+ readonly keys: __.KeysOf<{
251
+ epoch?: __.Key<number>;
252
+ startTime?: number | null;
253
+ endTime?: number | null;
254
+ firstBlockTime?: number | null;
255
+ lastBlockTime?: number | null;
256
+ blockCount?: number | null;
257
+ txCount?: number | null;
258
+ output?: string | null;
259
+ fees?: _odatano_cardano.Lovelace | null;
260
+ activeStake?: _odatano_cardano.Lovelace | null;
261
+ }>;
262
+ readonly elements: __.ElementsOf<{
263
+ epoch?: __.Key<number>;
264
+ startTime?: number | null;
265
+ endTime?: number | null;
266
+ firstBlockTime?: number | null;
267
+ lastBlockTime?: number | null;
268
+ blockCount?: number | null;
269
+ txCount?: number | null;
270
+ output?: string | null;
271
+ fees?: _odatano_cardano.Lovelace | null;
272
+ activeStake?: _odatano_cardano.Lovelace | null;
273
+ }>;
274
+ readonly actions: globalThis.Record<never, never>;
275
+ } & typeof __.Entity;
276
+ export declare class Epoch extends Epoch_base {
277
+ }
278
+ export declare class Epochs extends Array<Epoch> {
279
+ $count?: number;
280
+ }
281
+ export declare function _PoolAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
282
+ new (...args: any[]): {
283
+ poolId?: __.Key<string>;
284
+ vrfKeyHash?: string | null;
285
+ blocksMinted?: number | null;
286
+ blocksEpoch?: number | null;
287
+ liveStake?: _odatano_cardano.Lovelace | null;
288
+ liveSize?: number | null;
289
+ liveSaturation?: number | null;
290
+ liveDelegators?: number | null;
291
+ activeStake?: _odatano_cardano.Lovelace | null;
292
+ activeSize?: number | null;
293
+ pledge?: _odatano_cardano.Lovelace | null;
294
+ margin?: number | null;
295
+ fixedCost?: _odatano_cardano.Lovelace | null;
296
+ rewardAccount?: string | null;
297
+ };
298
+ readonly kind: "entity" | "type" | "aspect";
299
+ readonly keys: __.KeysOf<{
300
+ poolId?: __.Key<string>;
301
+ vrfKeyHash?: string | null;
302
+ blocksMinted?: number | null;
303
+ blocksEpoch?: number | null;
304
+ liveStake?: _odatano_cardano.Lovelace | null;
305
+ liveSize?: number | null;
306
+ liveSaturation?: number | null;
307
+ liveDelegators?: number | null;
308
+ activeStake?: _odatano_cardano.Lovelace | null;
309
+ activeSize?: number | null;
310
+ pledge?: _odatano_cardano.Lovelace | null;
311
+ margin?: number | null;
312
+ fixedCost?: _odatano_cardano.Lovelace | null;
313
+ rewardAccount?: string | null;
314
+ }>;
315
+ readonly elements: __.ElementsOf<{
316
+ poolId?: __.Key<string>;
317
+ vrfKeyHash?: string | null;
318
+ blocksMinted?: number | null;
319
+ blocksEpoch?: number | null;
320
+ liveStake?: _odatano_cardano.Lovelace | null;
321
+ liveSize?: number | null;
322
+ liveSaturation?: number | null;
323
+ liveDelegators?: number | null;
324
+ activeStake?: _odatano_cardano.Lovelace | null;
325
+ activeSize?: number | null;
326
+ pledge?: _odatano_cardano.Lovelace | null;
327
+ margin?: number | null;
328
+ fixedCost?: _odatano_cardano.Lovelace | null;
329
+ rewardAccount?: string | null;
330
+ }>;
331
+ readonly actions: globalThis.Record<never, never>;
332
+ } & TBase;
333
+ declare const Pool_base: {
334
+ new (...args: any[]): {
335
+ poolId?: __.Key<string>;
336
+ vrfKeyHash?: string | null;
337
+ blocksMinted?: number | null;
338
+ blocksEpoch?: number | null;
339
+ liveStake?: _odatano_cardano.Lovelace | null;
340
+ liveSize?: number | null;
341
+ liveSaturation?: number | null;
342
+ liveDelegators?: number | null;
343
+ activeStake?: _odatano_cardano.Lovelace | null;
344
+ activeSize?: number | null;
345
+ pledge?: _odatano_cardano.Lovelace | null;
346
+ margin?: number | null;
347
+ fixedCost?: _odatano_cardano.Lovelace | null;
348
+ rewardAccount?: string | null;
349
+ };
350
+ readonly kind: "entity" | "type" | "aspect";
351
+ readonly keys: __.KeysOf<{
352
+ poolId?: __.Key<string>;
353
+ vrfKeyHash?: string | null;
354
+ blocksMinted?: number | null;
355
+ blocksEpoch?: number | null;
356
+ liveStake?: _odatano_cardano.Lovelace | null;
357
+ liveSize?: number | null;
358
+ liveSaturation?: number | null;
359
+ liveDelegators?: number | null;
360
+ activeStake?: _odatano_cardano.Lovelace | null;
361
+ activeSize?: number | null;
362
+ pledge?: _odatano_cardano.Lovelace | null;
363
+ margin?: number | null;
364
+ fixedCost?: _odatano_cardano.Lovelace | null;
365
+ rewardAccount?: string | null;
366
+ }>;
367
+ readonly elements: __.ElementsOf<{
368
+ poolId?: __.Key<string>;
369
+ vrfKeyHash?: string | null;
370
+ blocksMinted?: number | null;
371
+ blocksEpoch?: number | null;
372
+ liveStake?: _odatano_cardano.Lovelace | null;
373
+ liveSize?: number | null;
374
+ liveSaturation?: number | null;
375
+ liveDelegators?: number | null;
376
+ activeStake?: _odatano_cardano.Lovelace | null;
377
+ activeSize?: number | null;
378
+ pledge?: _odatano_cardano.Lovelace | null;
379
+ margin?: number | null;
380
+ fixedCost?: _odatano_cardano.Lovelace | null;
381
+ rewardAccount?: string | null;
382
+ }>;
383
+ readonly actions: globalThis.Record<never, never>;
384
+ } & typeof __.Entity;
385
+ export declare class Pool extends Pool_base {
386
+ }
387
+ export declare class Pools extends Array<Pool> {
388
+ $count?: number;
389
+ }
390
+ export declare function _DrepAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
391
+ new (...args: any[]): {
392
+ drepId?: __.Key<string>;
393
+ hex?: string | null;
394
+ amount?: _odatano_cardano.Lovelace | null;
395
+ hasScript?: boolean | null;
396
+ lastActiveEpoch?: number | null;
397
+ retired?: boolean | null;
398
+ expired?: boolean | null;
399
+ };
400
+ readonly kind: "entity" | "type" | "aspect";
401
+ readonly keys: __.KeysOf<{
402
+ drepId?: __.Key<string>;
403
+ hex?: string | null;
404
+ amount?: _odatano_cardano.Lovelace | null;
405
+ hasScript?: boolean | null;
406
+ lastActiveEpoch?: number | null;
407
+ retired?: boolean | null;
408
+ expired?: boolean | null;
409
+ }>;
410
+ readonly elements: __.ElementsOf<{
411
+ drepId?: __.Key<string>;
412
+ hex?: string | null;
413
+ amount?: _odatano_cardano.Lovelace | null;
414
+ hasScript?: boolean | null;
415
+ lastActiveEpoch?: number | null;
416
+ retired?: boolean | null;
417
+ expired?: boolean | null;
418
+ }>;
419
+ readonly actions: globalThis.Record<never, never>;
420
+ } & TBase;
421
+ declare const Drep_base: {
422
+ new (...args: any[]): {
423
+ drepId?: __.Key<string>;
424
+ hex?: string | null;
425
+ amount?: _odatano_cardano.Lovelace | null;
426
+ hasScript?: boolean | null;
427
+ lastActiveEpoch?: number | null;
428
+ retired?: boolean | null;
429
+ expired?: boolean | null;
430
+ };
431
+ readonly kind: "entity" | "type" | "aspect";
432
+ readonly keys: __.KeysOf<{
433
+ drepId?: __.Key<string>;
434
+ hex?: string | null;
435
+ amount?: _odatano_cardano.Lovelace | null;
436
+ hasScript?: boolean | null;
437
+ lastActiveEpoch?: number | null;
438
+ retired?: boolean | null;
439
+ expired?: boolean | null;
440
+ }>;
441
+ readonly elements: __.ElementsOf<{
442
+ drepId?: __.Key<string>;
443
+ hex?: string | null;
444
+ amount?: _odatano_cardano.Lovelace | null;
445
+ hasScript?: boolean | null;
446
+ lastActiveEpoch?: number | null;
447
+ retired?: boolean | null;
448
+ expired?: boolean | null;
449
+ }>;
450
+ readonly actions: globalThis.Record<never, never>;
451
+ } & typeof __.Entity;
452
+ export declare class Drep extends Drep_base {
453
+ }
454
+ export declare class Dreps extends Array<Drep> {
455
+ $count?: number;
456
+ }
457
+ export declare function _TransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
458
+ new (...args: any[]): {
459
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
460
+ blockHash?: _odatano_cardano.Blake2b256 | null;
461
+ blockHeight?: number | null;
462
+ blockTime?: number | null;
463
+ slot?: number | null;
464
+ txIndex?: number | null;
465
+ fee?: _odatano_cardano.Lovelace | null;
466
+ deposit?: _odatano_cardano.Lovelace | null;
467
+ size?: number | null;
468
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
469
+ inputs?: __.Composition.of.many<TransactionInputs>;
470
+ outputs?: __.Composition.of.many<TransactionOutputs>;
471
+ hasMetadata?: boolean | null;
472
+ hasInputs?: boolean | null;
473
+ hasOutputs?: boolean | null;
474
+ };
475
+ readonly kind: "entity" | "type" | "aspect";
476
+ readonly keys: __.KeysOf<{
477
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
478
+ blockHash?: _odatano_cardano.Blake2b256 | null;
479
+ blockHeight?: number | null;
480
+ blockTime?: number | null;
481
+ slot?: number | null;
482
+ txIndex?: number | null;
483
+ fee?: _odatano_cardano.Lovelace | null;
484
+ deposit?: _odatano_cardano.Lovelace | null;
485
+ size?: number | null;
486
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
487
+ inputs?: __.Composition.of.many<TransactionInputs>;
488
+ outputs?: __.Composition.of.many<TransactionOutputs>;
489
+ hasMetadata?: boolean | null;
490
+ hasInputs?: boolean | null;
491
+ hasOutputs?: boolean | null;
492
+ }>;
493
+ readonly elements: __.ElementsOf<{
494
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
495
+ blockHash?: _odatano_cardano.Blake2b256 | null;
496
+ blockHeight?: number | null;
497
+ blockTime?: number | null;
498
+ slot?: number | null;
499
+ txIndex?: number | null;
500
+ fee?: _odatano_cardano.Lovelace | null;
501
+ deposit?: _odatano_cardano.Lovelace | null;
502
+ size?: number | null;
503
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
504
+ inputs?: __.Composition.of.many<TransactionInputs>;
505
+ outputs?: __.Composition.of.many<TransactionOutputs>;
506
+ hasMetadata?: boolean | null;
507
+ hasInputs?: boolean | null;
508
+ hasOutputs?: boolean | null;
509
+ }>;
510
+ readonly actions: globalThis.Record<never, never>;
511
+ } & TBase;
512
+ declare const Transaction_base: {
513
+ new (...args: any[]): {
514
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
515
+ blockHash?: _odatano_cardano.Blake2b256 | null;
516
+ blockHeight?: number | null;
517
+ blockTime?: number | null;
518
+ slot?: number | null;
519
+ txIndex?: number | null;
520
+ fee?: _odatano_cardano.Lovelace | null;
521
+ deposit?: _odatano_cardano.Lovelace | null;
522
+ size?: number | null;
523
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
524
+ inputs?: __.Composition.of.many<TransactionInputs>;
525
+ outputs?: __.Composition.of.many<TransactionOutputs>;
526
+ hasMetadata?: boolean | null;
527
+ hasInputs?: boolean | null;
528
+ hasOutputs?: boolean | null;
529
+ };
530
+ readonly kind: "entity" | "type" | "aspect";
531
+ readonly keys: __.KeysOf<{
532
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
533
+ blockHash?: _odatano_cardano.Blake2b256 | null;
534
+ blockHeight?: number | null;
535
+ blockTime?: number | null;
536
+ slot?: number | null;
537
+ txIndex?: number | null;
538
+ fee?: _odatano_cardano.Lovelace | null;
539
+ deposit?: _odatano_cardano.Lovelace | null;
540
+ size?: number | null;
541
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
542
+ inputs?: __.Composition.of.many<TransactionInputs>;
543
+ outputs?: __.Composition.of.many<TransactionOutputs>;
544
+ hasMetadata?: boolean | null;
545
+ hasInputs?: boolean | null;
546
+ hasOutputs?: boolean | null;
547
+ }>;
548
+ readonly elements: __.ElementsOf<{
549
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
550
+ blockHash?: _odatano_cardano.Blake2b256 | null;
551
+ blockHeight?: number | null;
552
+ blockTime?: number | null;
553
+ slot?: number | null;
554
+ txIndex?: number | null;
555
+ fee?: _odatano_cardano.Lovelace | null;
556
+ deposit?: _odatano_cardano.Lovelace | null;
557
+ size?: number | null;
558
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
559
+ inputs?: __.Composition.of.many<TransactionInputs>;
560
+ outputs?: __.Composition.of.many<TransactionOutputs>;
561
+ hasMetadata?: boolean | null;
562
+ hasInputs?: boolean | null;
563
+ hasOutputs?: boolean | null;
564
+ }>;
565
+ readonly actions: globalThis.Record<never, never>;
566
+ } & typeof __.Entity;
567
+ export declare class Transaction extends Transaction_base {
568
+ }
569
+ export declare class Transactions extends Array<Transaction> {
570
+ $count?: number;
571
+ }
572
+ export declare function _TransactionInputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
573
+ new (...args: any[]): {
574
+ tx?: __.Key<__.Association.to<Transaction>>;
575
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
576
+ inputIndex?: __.Key<number>;
577
+ address?: __.Association.to<Address> | null;
578
+ address_address?: _odatano_cardano.Bech32 | null;
579
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
580
+ utxoData_inlineDatum?: string | null;
581
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
582
+ isCollateral?: boolean | null;
583
+ isReference?: boolean | null;
584
+ assets?: __.Composition.of.many<TransactionInputAssets>;
585
+ hasAddresses?: boolean | null;
586
+ hasAssets?: boolean | null;
587
+ };
588
+ readonly kind: "entity" | "type" | "aspect";
589
+ readonly keys: __.KeysOf<{
590
+ tx?: __.Key<__.Association.to<Transaction>>;
591
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
592
+ inputIndex?: __.Key<number>;
593
+ address?: __.Association.to<Address> | null;
594
+ address_address?: _odatano_cardano.Bech32 | null;
595
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
596
+ utxoData_inlineDatum?: string | null;
597
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
598
+ isCollateral?: boolean | null;
599
+ isReference?: boolean | null;
600
+ assets?: __.Composition.of.many<TransactionInputAssets>;
601
+ hasAddresses?: boolean | null;
602
+ hasAssets?: boolean | null;
603
+ }>;
604
+ readonly elements: __.ElementsOf<{
605
+ tx?: __.Key<__.Association.to<Transaction>>;
606
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
607
+ inputIndex?: __.Key<number>;
608
+ address?: __.Association.to<Address> | null;
609
+ address_address?: _odatano_cardano.Bech32 | null;
610
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
611
+ utxoData_inlineDatum?: string | null;
612
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
613
+ isCollateral?: boolean | null;
614
+ isReference?: boolean | null;
615
+ assets?: __.Composition.of.many<TransactionInputAssets>;
616
+ hasAddresses?: boolean | null;
617
+ hasAssets?: boolean | null;
618
+ }>;
619
+ readonly actions: globalThis.Record<never, never>;
620
+ } & TBase;
621
+ declare const TransactionInput_base: {
622
+ new (...args: any[]): {
623
+ tx?: __.Key<__.Association.to<Transaction>>;
624
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
625
+ inputIndex?: __.Key<number>;
626
+ address?: __.Association.to<Address> | null;
627
+ address_address?: _odatano_cardano.Bech32 | null;
628
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
629
+ utxoData_inlineDatum?: string | null;
630
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
631
+ isCollateral?: boolean | null;
632
+ isReference?: boolean | null;
633
+ assets?: __.Composition.of.many<TransactionInputAssets>;
634
+ hasAddresses?: boolean | null;
635
+ hasAssets?: boolean | null;
636
+ };
637
+ readonly kind: "entity" | "type" | "aspect";
638
+ readonly keys: __.KeysOf<{
639
+ tx?: __.Key<__.Association.to<Transaction>>;
640
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
641
+ inputIndex?: __.Key<number>;
642
+ address?: __.Association.to<Address> | null;
643
+ address_address?: _odatano_cardano.Bech32 | null;
644
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
645
+ utxoData_inlineDatum?: string | null;
646
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
647
+ isCollateral?: boolean | null;
648
+ isReference?: boolean | null;
649
+ assets?: __.Composition.of.many<TransactionInputAssets>;
650
+ hasAddresses?: boolean | null;
651
+ hasAssets?: boolean | null;
652
+ }>;
653
+ readonly elements: __.ElementsOf<{
654
+ tx?: __.Key<__.Association.to<Transaction>>;
655
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
656
+ inputIndex?: __.Key<number>;
657
+ address?: __.Association.to<Address> | null;
658
+ address_address?: _odatano_cardano.Bech32 | null;
659
+ utxoData_dataHash?: _odatano_cardano.Blake2b256 | null;
660
+ utxoData_inlineDatum?: string | null;
661
+ utxoData_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
662
+ isCollateral?: boolean | null;
663
+ isReference?: boolean | null;
664
+ assets?: __.Composition.of.many<TransactionInputAssets>;
665
+ hasAddresses?: boolean | null;
666
+ hasAssets?: boolean | null;
667
+ }>;
668
+ readonly actions: globalThis.Record<never, never>;
669
+ } & typeof __.Entity;
670
+ export declare class TransactionInput extends TransactionInput_base {
671
+ }
672
+ export declare class TransactionInputs extends Array<TransactionInput> {
673
+ $count?: number;
674
+ }
675
+ export declare function _TransactionOutputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
676
+ new (...args: any[]): {
677
+ tx?: __.Key<__.Association.to<Transaction>>;
678
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
679
+ outputIndex?: __.Key<number>;
680
+ address?: __.Association.to<Address> | null;
681
+ address_address?: _odatano_cardano.Bech32 | null;
682
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
683
+ utxo_inlineDatum?: string | null;
684
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
685
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
686
+ hasAddresses?: boolean | null;
687
+ hasAssets?: boolean | null;
688
+ };
689
+ readonly kind: "entity" | "type" | "aspect";
690
+ readonly keys: __.KeysOf<{
691
+ tx?: __.Key<__.Association.to<Transaction>>;
692
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
693
+ outputIndex?: __.Key<number>;
694
+ address?: __.Association.to<Address> | null;
695
+ address_address?: _odatano_cardano.Bech32 | null;
696
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
697
+ utxo_inlineDatum?: string | null;
698
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
699
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
700
+ hasAddresses?: boolean | null;
701
+ hasAssets?: boolean | null;
702
+ }>;
703
+ readonly elements: __.ElementsOf<{
704
+ tx?: __.Key<__.Association.to<Transaction>>;
705
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
706
+ outputIndex?: __.Key<number>;
707
+ address?: __.Association.to<Address> | null;
708
+ address_address?: _odatano_cardano.Bech32 | null;
709
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
710
+ utxo_inlineDatum?: string | null;
711
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
712
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
713
+ hasAddresses?: boolean | null;
714
+ hasAssets?: boolean | null;
715
+ }>;
716
+ readonly actions: globalThis.Record<never, never>;
717
+ } & TBase;
718
+ declare const TransactionOutput_base: {
719
+ new (...args: any[]): {
720
+ tx?: __.Key<__.Association.to<Transaction>>;
721
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
722
+ outputIndex?: __.Key<number>;
723
+ address?: __.Association.to<Address> | null;
724
+ address_address?: _odatano_cardano.Bech32 | null;
725
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
726
+ utxo_inlineDatum?: string | null;
727
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
728
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
729
+ hasAddresses?: boolean | null;
730
+ hasAssets?: boolean | null;
731
+ };
732
+ readonly kind: "entity" | "type" | "aspect";
733
+ readonly keys: __.KeysOf<{
734
+ tx?: __.Key<__.Association.to<Transaction>>;
735
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
736
+ outputIndex?: __.Key<number>;
737
+ address?: __.Association.to<Address> | null;
738
+ address_address?: _odatano_cardano.Bech32 | null;
739
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
740
+ utxo_inlineDatum?: string | null;
741
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
742
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
743
+ hasAddresses?: boolean | null;
744
+ hasAssets?: boolean | null;
745
+ }>;
746
+ readonly elements: __.ElementsOf<{
747
+ tx?: __.Key<__.Association.to<Transaction>>;
748
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
749
+ outputIndex?: __.Key<number>;
750
+ address?: __.Association.to<Address> | null;
751
+ address_address?: _odatano_cardano.Bech32 | null;
752
+ utxo_dataHash?: _odatano_cardano.Blake2b256 | null;
753
+ utxo_inlineDatum?: string | null;
754
+ utxo_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
755
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
756
+ hasAddresses?: boolean | null;
757
+ hasAssets?: boolean | null;
758
+ }>;
759
+ readonly actions: globalThis.Record<never, never>;
760
+ } & typeof __.Entity;
761
+ export declare class TransactionOutput extends TransactionOutput_base {
762
+ }
763
+ export declare class TransactionOutputs extends Array<TransactionOutput> {
764
+ $count?: number;
765
+ }
766
+ export declare function _TransactionInputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
767
+ new (...args: any[]): {
768
+ input?: __.Key<__.Association.to<TransactionInput>>;
769
+ input_inputIndex?: __.Key<number>;
770
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
771
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
772
+ asset_quantity?: _odatano_cardano.Lovelace | null;
773
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
774
+ asset_assetNameHex?: string | null;
775
+ asset_assetName?: string | null;
776
+ asset_fingerprint?: string | null;
777
+ };
778
+ readonly kind: "entity" | "type" | "aspect";
779
+ readonly keys: __.KeysOf<{
780
+ input?: __.Key<__.Association.to<TransactionInput>>;
781
+ input_inputIndex?: __.Key<number>;
782
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
783
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
784
+ asset_quantity?: _odatano_cardano.Lovelace | null;
785
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
786
+ asset_assetNameHex?: string | null;
787
+ asset_assetName?: string | null;
788
+ asset_fingerprint?: string | null;
789
+ }>;
790
+ readonly elements: __.ElementsOf<{
791
+ input?: __.Key<__.Association.to<TransactionInput>>;
792
+ input_inputIndex?: __.Key<number>;
793
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
794
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
795
+ asset_quantity?: _odatano_cardano.Lovelace | null;
796
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
797
+ asset_assetNameHex?: string | null;
798
+ asset_assetName?: string | null;
799
+ asset_fingerprint?: string | null;
800
+ }>;
801
+ readonly actions: globalThis.Record<never, never>;
802
+ } & TBase;
803
+ declare const TransactionInputAsset_base: {
804
+ new (...args: any[]): {
805
+ input?: __.Key<__.Association.to<TransactionInput>>;
806
+ input_inputIndex?: __.Key<number>;
807
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
808
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
809
+ asset_quantity?: _odatano_cardano.Lovelace | null;
810
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
811
+ asset_assetNameHex?: string | null;
812
+ asset_assetName?: string | null;
813
+ asset_fingerprint?: string | null;
814
+ };
815
+ readonly kind: "entity" | "type" | "aspect";
816
+ readonly keys: __.KeysOf<{
817
+ input?: __.Key<__.Association.to<TransactionInput>>;
818
+ input_inputIndex?: __.Key<number>;
819
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
820
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
821
+ asset_quantity?: _odatano_cardano.Lovelace | null;
822
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
823
+ asset_assetNameHex?: string | null;
824
+ asset_assetName?: string | null;
825
+ asset_fingerprint?: string | null;
826
+ }>;
827
+ readonly elements: __.ElementsOf<{
828
+ input?: __.Key<__.Association.to<TransactionInput>>;
829
+ input_inputIndex?: __.Key<number>;
830
+ input_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
831
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
832
+ asset_quantity?: _odatano_cardano.Lovelace | null;
833
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
834
+ asset_assetNameHex?: string | null;
835
+ asset_assetName?: string | null;
836
+ asset_fingerprint?: string | null;
837
+ }>;
838
+ readonly actions: globalThis.Record<never, never>;
839
+ } & typeof __.Entity;
840
+ export declare class TransactionInputAsset extends TransactionInputAsset_base {
841
+ }
842
+ export declare class TransactionInputAssets extends Array<TransactionInputAsset> {
843
+ $count?: number;
844
+ }
845
+ export declare function _TransactionOutputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
846
+ new (...args: any[]): {
847
+ output?: __.Key<__.Association.to<TransactionOutput>>;
848
+ output_outputIndex?: __.Key<number>;
849
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
850
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
851
+ asset_quantity?: _odatano_cardano.Lovelace | null;
852
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
853
+ asset_assetNameHex?: string | null;
854
+ asset_assetName?: string | null;
855
+ asset_fingerprint?: string | null;
856
+ };
857
+ readonly kind: "entity" | "type" | "aspect";
858
+ readonly keys: __.KeysOf<{
859
+ output?: __.Key<__.Association.to<TransactionOutput>>;
860
+ output_outputIndex?: __.Key<number>;
861
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
862
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
863
+ asset_quantity?: _odatano_cardano.Lovelace | null;
864
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
865
+ asset_assetNameHex?: string | null;
866
+ asset_assetName?: string | null;
867
+ asset_fingerprint?: string | null;
868
+ }>;
869
+ readonly elements: __.ElementsOf<{
870
+ output?: __.Key<__.Association.to<TransactionOutput>>;
871
+ output_outputIndex?: __.Key<number>;
872
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
873
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
874
+ asset_quantity?: _odatano_cardano.Lovelace | null;
875
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
876
+ asset_assetNameHex?: string | null;
877
+ asset_assetName?: string | null;
878
+ asset_fingerprint?: string | null;
879
+ }>;
880
+ readonly actions: globalThis.Record<never, never>;
881
+ } & TBase;
882
+ declare const TransactionOutputAsset_base: {
883
+ new (...args: any[]): {
884
+ output?: __.Key<__.Association.to<TransactionOutput>>;
885
+ output_outputIndex?: __.Key<number>;
886
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
887
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
888
+ asset_quantity?: _odatano_cardano.Lovelace | null;
889
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
890
+ asset_assetNameHex?: string | null;
891
+ asset_assetName?: string | null;
892
+ asset_fingerprint?: string | null;
893
+ };
894
+ readonly kind: "entity" | "type" | "aspect";
895
+ readonly keys: __.KeysOf<{
896
+ output?: __.Key<__.Association.to<TransactionOutput>>;
897
+ output_outputIndex?: __.Key<number>;
898
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
899
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
900
+ asset_quantity?: _odatano_cardano.Lovelace | null;
901
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
902
+ asset_assetNameHex?: string | null;
903
+ asset_assetName?: string | null;
904
+ asset_fingerprint?: string | null;
905
+ }>;
906
+ readonly elements: __.ElementsOf<{
907
+ output?: __.Key<__.Association.to<TransactionOutput>>;
908
+ output_outputIndex?: __.Key<number>;
909
+ output_tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
910
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
911
+ asset_quantity?: _odatano_cardano.Lovelace | null;
912
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
913
+ asset_assetNameHex?: string | null;
914
+ asset_assetName?: string | null;
915
+ asset_fingerprint?: string | null;
916
+ }>;
917
+ readonly actions: globalThis.Record<never, never>;
918
+ } & typeof __.Entity;
919
+ export declare class TransactionOutputAsset extends TransactionOutputAsset_base {
920
+ }
921
+ export declare class TransactionOutputAssets extends Array<TransactionOutputAsset> {
922
+ $count?: number;
923
+ }
924
+ export declare function _AccountAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
925
+ new (...args: any[]): {
926
+ validFrom?: __.CdsTimestamp | null;
927
+ validTo?: __.CdsTimestamp | null;
928
+ stakeAddress?: __.Key<string>;
929
+ active?: boolean | null;
930
+ activeEpoch?: number | null;
931
+ controlledAmount?: _odatano_cardano.Lovelace | null;
932
+ rewardsSum?: _odatano_cardano.Lovelace | null;
933
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
934
+ reservesSum?: _odatano_cardano.Lovelace | null;
935
+ treasurySum?: _odatano_cardano.Lovelace | null;
936
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
937
+ poolId?: __.Association.to<Pool> | null;
938
+ poolId_poolId?: string | null;
939
+ drepId?: __.Association.to<Drep> | null;
940
+ drepId_drepId?: string | null;
941
+ Address?: __.Composition.of.many<Addresses>;
942
+ hasAddresses?: boolean | null;
943
+ };
944
+ readonly kind: "entity" | "type" | "aspect";
945
+ readonly keys: __.KeysOf<{
946
+ validFrom?: __.CdsTimestamp | null;
947
+ validTo?: __.CdsTimestamp | null;
948
+ stakeAddress?: __.Key<string>;
949
+ active?: boolean | null;
950
+ activeEpoch?: number | null;
951
+ controlledAmount?: _odatano_cardano.Lovelace | null;
952
+ rewardsSum?: _odatano_cardano.Lovelace | null;
953
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
954
+ reservesSum?: _odatano_cardano.Lovelace | null;
955
+ treasurySum?: _odatano_cardano.Lovelace | null;
956
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
957
+ poolId?: __.Association.to<Pool> | null;
958
+ poolId_poolId?: string | null;
959
+ drepId?: __.Association.to<Drep> | null;
960
+ drepId_drepId?: string | null;
961
+ Address?: __.Composition.of.many<Addresses>;
962
+ hasAddresses?: boolean | null;
963
+ }>;
964
+ readonly elements: __.ElementsOf<{
965
+ validFrom?: __.CdsTimestamp | null;
966
+ validTo?: __.CdsTimestamp | null;
967
+ stakeAddress?: __.Key<string>;
968
+ active?: boolean | null;
969
+ activeEpoch?: number | null;
970
+ controlledAmount?: _odatano_cardano.Lovelace | null;
971
+ rewardsSum?: _odatano_cardano.Lovelace | null;
972
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
973
+ reservesSum?: _odatano_cardano.Lovelace | null;
974
+ treasurySum?: _odatano_cardano.Lovelace | null;
975
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
976
+ poolId?: __.Association.to<Pool> | null;
977
+ poolId_poolId?: string | null;
978
+ drepId?: __.Association.to<Drep> | null;
979
+ drepId_drepId?: string | null;
980
+ Address?: __.Composition.of.many<Addresses>;
981
+ hasAddresses?: boolean | null;
982
+ }>;
983
+ readonly actions: globalThis.Record<never, never>;
984
+ } & TBase;
985
+ declare const Account_base: {
986
+ new (...args: any[]): {
987
+ validFrom?: __.CdsTimestamp | null;
988
+ validTo?: __.CdsTimestamp | null;
989
+ stakeAddress?: __.Key<string>;
990
+ active?: boolean | null;
991
+ activeEpoch?: number | null;
992
+ controlledAmount?: _odatano_cardano.Lovelace | null;
993
+ rewardsSum?: _odatano_cardano.Lovelace | null;
994
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
995
+ reservesSum?: _odatano_cardano.Lovelace | null;
996
+ treasurySum?: _odatano_cardano.Lovelace | null;
997
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
998
+ poolId?: __.Association.to<Pool> | null;
999
+ poolId_poolId?: string | null;
1000
+ drepId?: __.Association.to<Drep> | null;
1001
+ drepId_drepId?: string | null;
1002
+ Address?: __.Composition.of.many<Addresses>;
1003
+ hasAddresses?: boolean | null;
1004
+ };
1005
+ readonly kind: "entity" | "type" | "aspect";
1006
+ readonly keys: __.KeysOf<{
1007
+ validFrom?: __.CdsTimestamp | null;
1008
+ validTo?: __.CdsTimestamp | null;
1009
+ stakeAddress?: __.Key<string>;
1010
+ active?: boolean | null;
1011
+ activeEpoch?: number | null;
1012
+ controlledAmount?: _odatano_cardano.Lovelace | null;
1013
+ rewardsSum?: _odatano_cardano.Lovelace | null;
1014
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
1015
+ reservesSum?: _odatano_cardano.Lovelace | null;
1016
+ treasurySum?: _odatano_cardano.Lovelace | null;
1017
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
1018
+ poolId?: __.Association.to<Pool> | null;
1019
+ poolId_poolId?: string | null;
1020
+ drepId?: __.Association.to<Drep> | null;
1021
+ drepId_drepId?: string | null;
1022
+ Address?: __.Composition.of.many<Addresses>;
1023
+ hasAddresses?: boolean | null;
1024
+ }>;
1025
+ readonly elements: __.ElementsOf<{
1026
+ validFrom?: __.CdsTimestamp | null;
1027
+ validTo?: __.CdsTimestamp | null;
1028
+ stakeAddress?: __.Key<string>;
1029
+ active?: boolean | null;
1030
+ activeEpoch?: number | null;
1031
+ controlledAmount?: _odatano_cardano.Lovelace | null;
1032
+ rewardsSum?: _odatano_cardano.Lovelace | null;
1033
+ withdrawalsSum?: _odatano_cardano.Lovelace | null;
1034
+ reservesSum?: _odatano_cardano.Lovelace | null;
1035
+ treasurySum?: _odatano_cardano.Lovelace | null;
1036
+ withdrawableAmount?: _odatano_cardano.Lovelace | null;
1037
+ poolId?: __.Association.to<Pool> | null;
1038
+ poolId_poolId?: string | null;
1039
+ drepId?: __.Association.to<Drep> | null;
1040
+ drepId_drepId?: string | null;
1041
+ Address?: __.Composition.of.many<Addresses>;
1042
+ hasAddresses?: boolean | null;
1043
+ }>;
1044
+ readonly actions: globalThis.Record<never, never>;
1045
+ } & typeof __.Entity;
1046
+ export declare class Account extends Account_base {
1047
+ }
1048
+ export declare class Accounts extends Array<Account> {
1049
+ $count?: number;
1050
+ }
1051
+ export declare function _AddressAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1052
+ new (...args: any[]): {
1053
+ validFrom?: __.CdsTimestamp | null;
1054
+ validTo?: __.CdsTimestamp | null;
1055
+ address?: __.Key<_odatano_cardano.Bech32>;
1056
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1057
+ type?: string | null;
1058
+ isScript?: boolean | null;
1059
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1060
+ transactions?: __.Composition.of.many<AddressTransactions>;
1061
+ assets?: __.Composition.of.many<AddressAssets>;
1062
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1063
+ hasTransactions?: boolean | null;
1064
+ hasAssets?: boolean | null;
1065
+ hasUTxOs?: boolean | null;
1066
+ };
1067
+ readonly kind: "entity" | "type" | "aspect";
1068
+ readonly keys: __.KeysOf<{
1069
+ validFrom?: __.CdsTimestamp | null;
1070
+ validTo?: __.CdsTimestamp | null;
1071
+ address?: __.Key<_odatano_cardano.Bech32>;
1072
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1073
+ type?: string | null;
1074
+ isScript?: boolean | null;
1075
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1076
+ transactions?: __.Composition.of.many<AddressTransactions>;
1077
+ assets?: __.Composition.of.many<AddressAssets>;
1078
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1079
+ hasTransactions?: boolean | null;
1080
+ hasAssets?: boolean | null;
1081
+ hasUTxOs?: boolean | null;
1082
+ }>;
1083
+ readonly elements: __.ElementsOf<{
1084
+ validFrom?: __.CdsTimestamp | null;
1085
+ validTo?: __.CdsTimestamp | null;
1086
+ address?: __.Key<_odatano_cardano.Bech32>;
1087
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1088
+ type?: string | null;
1089
+ isScript?: boolean | null;
1090
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1091
+ transactions?: __.Composition.of.many<AddressTransactions>;
1092
+ assets?: __.Composition.of.many<AddressAssets>;
1093
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1094
+ hasTransactions?: boolean | null;
1095
+ hasAssets?: boolean | null;
1096
+ hasUTxOs?: boolean | null;
1097
+ }>;
1098
+ readonly actions: globalThis.Record<never, never>;
1099
+ } & TBase;
1100
+ declare const Address_base: {
1101
+ new (...args: any[]): {
1102
+ validFrom?: __.CdsTimestamp | null;
1103
+ validTo?: __.CdsTimestamp | null;
1104
+ address?: __.Key<_odatano_cardano.Bech32>;
1105
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1106
+ type?: string | null;
1107
+ isScript?: boolean | null;
1108
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1109
+ transactions?: __.Composition.of.many<AddressTransactions>;
1110
+ assets?: __.Composition.of.many<AddressAssets>;
1111
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1112
+ hasTransactions?: boolean | null;
1113
+ hasAssets?: boolean | null;
1114
+ hasUTxOs?: boolean | null;
1115
+ };
1116
+ readonly kind: "entity" | "type" | "aspect";
1117
+ readonly keys: __.KeysOf<{
1118
+ validFrom?: __.CdsTimestamp | null;
1119
+ validTo?: __.CdsTimestamp | null;
1120
+ address?: __.Key<_odatano_cardano.Bech32>;
1121
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1122
+ type?: string | null;
1123
+ isScript?: boolean | null;
1124
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1125
+ transactions?: __.Composition.of.many<AddressTransactions>;
1126
+ assets?: __.Composition.of.many<AddressAssets>;
1127
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1128
+ hasTransactions?: boolean | null;
1129
+ hasAssets?: boolean | null;
1130
+ hasUTxOs?: boolean | null;
1131
+ }>;
1132
+ readonly elements: __.ElementsOf<{
1133
+ validFrom?: __.CdsTimestamp | null;
1134
+ validTo?: __.CdsTimestamp | null;
1135
+ address?: __.Key<_odatano_cardano.Bech32>;
1136
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1137
+ type?: string | null;
1138
+ isScript?: boolean | null;
1139
+ totalLovelace?: _odatano_cardano.Lovelace | null;
1140
+ transactions?: __.Composition.of.many<AddressTransactions>;
1141
+ assets?: __.Composition.of.many<AddressAssets>;
1142
+ utxos?: __.Composition.of.many<AddressUTxOs>;
1143
+ hasTransactions?: boolean | null;
1144
+ hasAssets?: boolean | null;
1145
+ hasUTxOs?: boolean | null;
1146
+ }>;
1147
+ readonly actions: globalThis.Record<never, never>;
1148
+ } & typeof __.Entity;
1149
+ export declare class Address extends Address_base {
1150
+ }
1151
+ export declare class Addresses extends Array<Address> {
1152
+ $count?: number;
1153
+ }
1154
+ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1155
+ new (...args: any[]): {
1156
+ validFrom?: __.CdsTimestamp | null;
1157
+ validTo?: __.CdsTimestamp | null;
1158
+ address?: __.Key<__.Association.to<Address>>;
1159
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1160
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1161
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1162
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1163
+ asset_assetNameHex?: string | null;
1164
+ asset_assetName?: string | null;
1165
+ asset_fingerprint?: string | null;
1166
+ };
1167
+ readonly kind: "entity" | "type" | "aspect";
1168
+ readonly keys: __.KeysOf<{
1169
+ validFrom?: __.CdsTimestamp | null;
1170
+ validTo?: __.CdsTimestamp | null;
1171
+ address?: __.Key<__.Association.to<Address>>;
1172
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1173
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1174
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1175
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1176
+ asset_assetNameHex?: string | null;
1177
+ asset_assetName?: string | null;
1178
+ asset_fingerprint?: string | null;
1179
+ }>;
1180
+ readonly elements: __.ElementsOf<{
1181
+ validFrom?: __.CdsTimestamp | null;
1182
+ validTo?: __.CdsTimestamp | null;
1183
+ address?: __.Key<__.Association.to<Address>>;
1184
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1185
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1186
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1187
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1188
+ asset_assetNameHex?: string | null;
1189
+ asset_assetName?: string | null;
1190
+ asset_fingerprint?: string | null;
1191
+ }>;
1192
+ readonly actions: globalThis.Record<never, never>;
1193
+ } & TBase;
1194
+ declare const AddressAsset_base: {
1195
+ new (...args: any[]): {
1196
+ validFrom?: __.CdsTimestamp | null;
1197
+ validTo?: __.CdsTimestamp | null;
1198
+ address?: __.Key<__.Association.to<Address>>;
1199
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1200
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1201
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1202
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1203
+ asset_assetNameHex?: string | null;
1204
+ asset_assetName?: string | null;
1205
+ asset_fingerprint?: string | null;
1206
+ };
1207
+ readonly kind: "entity" | "type" | "aspect";
1208
+ readonly keys: __.KeysOf<{
1209
+ validFrom?: __.CdsTimestamp | null;
1210
+ validTo?: __.CdsTimestamp | null;
1211
+ address?: __.Key<__.Association.to<Address>>;
1212
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1213
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1214
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1215
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1216
+ asset_assetNameHex?: string | null;
1217
+ asset_assetName?: string | null;
1218
+ asset_fingerprint?: string | null;
1219
+ }>;
1220
+ readonly elements: __.ElementsOf<{
1221
+ validFrom?: __.CdsTimestamp | null;
1222
+ validTo?: __.CdsTimestamp | null;
1223
+ address?: __.Key<__.Association.to<Address>>;
1224
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1225
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1226
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1227
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1228
+ asset_assetNameHex?: string | null;
1229
+ asset_assetName?: string | null;
1230
+ asset_fingerprint?: string | null;
1231
+ }>;
1232
+ readonly actions: globalThis.Record<never, never>;
1233
+ } & typeof __.Entity;
1234
+ export declare class AddressAsset extends AddressAsset_base {
1235
+ }
1236
+ export declare class AddressAssets extends Array<AddressAsset> {
1237
+ $count?: number;
1238
+ }
1239
+ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1240
+ new (...args: any[]): {
1241
+ validFrom?: __.CdsTimestamp | null;
1242
+ validTo?: __.CdsTimestamp | null;
1243
+ address?: __.Key<__.Association.to<Address>>;
1244
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1245
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1246
+ index?: __.Key<number>;
1247
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1248
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1249
+ utxodata_inlineDatum?: string | null;
1250
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1251
+ lovelace?: _odatano_cardano.Lovelace | null;
1252
+ assets?: __.Composition.of.many<UTxOAssets>;
1253
+ hasAssets?: boolean | null;
1254
+ };
1255
+ readonly kind: "entity" | "type" | "aspect";
1256
+ readonly keys: __.KeysOf<{
1257
+ validFrom?: __.CdsTimestamp | null;
1258
+ validTo?: __.CdsTimestamp | null;
1259
+ address?: __.Key<__.Association.to<Address>>;
1260
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1261
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1262
+ index?: __.Key<number>;
1263
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1264
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1265
+ utxodata_inlineDatum?: string | null;
1266
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1267
+ lovelace?: _odatano_cardano.Lovelace | null;
1268
+ assets?: __.Composition.of.many<UTxOAssets>;
1269
+ hasAssets?: boolean | null;
1270
+ }>;
1271
+ readonly elements: __.ElementsOf<{
1272
+ validFrom?: __.CdsTimestamp | null;
1273
+ validTo?: __.CdsTimestamp | null;
1274
+ address?: __.Key<__.Association.to<Address>>;
1275
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1276
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1277
+ index?: __.Key<number>;
1278
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1279
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1280
+ utxodata_inlineDatum?: string | null;
1281
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1282
+ lovelace?: _odatano_cardano.Lovelace | null;
1283
+ assets?: __.Composition.of.many<UTxOAssets>;
1284
+ hasAssets?: boolean | null;
1285
+ }>;
1286
+ readonly actions: globalThis.Record<never, never>;
1287
+ } & TBase;
1288
+ declare const AddressUTxO_base: {
1289
+ new (...args: any[]): {
1290
+ validFrom?: __.CdsTimestamp | null;
1291
+ validTo?: __.CdsTimestamp | null;
1292
+ address?: __.Key<__.Association.to<Address>>;
1293
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1294
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1295
+ index?: __.Key<number>;
1296
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1297
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1298
+ utxodata_inlineDatum?: string | null;
1299
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1300
+ lovelace?: _odatano_cardano.Lovelace | null;
1301
+ assets?: __.Composition.of.many<UTxOAssets>;
1302
+ hasAssets?: boolean | null;
1303
+ };
1304
+ readonly kind: "entity" | "type" | "aspect";
1305
+ readonly keys: __.KeysOf<{
1306
+ validFrom?: __.CdsTimestamp | null;
1307
+ validTo?: __.CdsTimestamp | null;
1308
+ address?: __.Key<__.Association.to<Address>>;
1309
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1310
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1311
+ index?: __.Key<number>;
1312
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1313
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1314
+ utxodata_inlineDatum?: string | null;
1315
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1316
+ lovelace?: _odatano_cardano.Lovelace | null;
1317
+ assets?: __.Composition.of.many<UTxOAssets>;
1318
+ hasAssets?: boolean | null;
1319
+ }>;
1320
+ readonly elements: __.ElementsOf<{
1321
+ validFrom?: __.CdsTimestamp | null;
1322
+ validTo?: __.CdsTimestamp | null;
1323
+ address?: __.Key<__.Association.to<Address>>;
1324
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1325
+ hash?: __.Key<_odatano_cardano.Blake2b256>;
1326
+ index?: __.Key<number>;
1327
+ blockHash?: _odatano_cardano.Blake2b256 | null;
1328
+ utxodata_dataHash?: _odatano_cardano.Blake2b256 | null;
1329
+ utxodata_inlineDatum?: string | null;
1330
+ utxodata_referenceScriptHash?: _odatano_cardano.Blake2b256 | null;
1331
+ lovelace?: _odatano_cardano.Lovelace | null;
1332
+ assets?: __.Composition.of.many<UTxOAssets>;
1333
+ hasAssets?: boolean | null;
1334
+ }>;
1335
+ readonly actions: globalThis.Record<never, never>;
1336
+ } & typeof __.Entity;
1337
+ export declare class AddressUTxO extends AddressUTxO_base {
1338
+ }
1339
+ export declare class AddressUTxOs extends Array<AddressUTxO> {
1340
+ $count?: number;
1341
+ }
1342
+ export declare function _AddressTransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1343
+ new (...args: any[]): {
1344
+ address?: __.Key<__.Association.to<Address>>;
1345
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1346
+ tx?: __.Key<__.Association.to<Transaction>>;
1347
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1348
+ netAmount?: number | null;
1349
+ blockTime?: number | null;
1350
+ netAssets?: string | null;
1351
+ hasAssets?: boolean | null;
1352
+ };
1353
+ readonly kind: "entity" | "type" | "aspect";
1354
+ readonly keys: __.KeysOf<{
1355
+ address?: __.Key<__.Association.to<Address>>;
1356
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1357
+ tx?: __.Key<__.Association.to<Transaction>>;
1358
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1359
+ netAmount?: number | null;
1360
+ blockTime?: number | null;
1361
+ netAssets?: string | null;
1362
+ hasAssets?: boolean | null;
1363
+ }>;
1364
+ readonly elements: __.ElementsOf<{
1365
+ address?: __.Key<__.Association.to<Address>>;
1366
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1367
+ tx?: __.Key<__.Association.to<Transaction>>;
1368
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1369
+ netAmount?: number | null;
1370
+ blockTime?: number | null;
1371
+ netAssets?: string | null;
1372
+ hasAssets?: boolean | null;
1373
+ }>;
1374
+ readonly actions: globalThis.Record<never, never>;
1375
+ } & TBase;
1376
+ declare const AddressTransaction_base: {
1377
+ new (...args: any[]): {
1378
+ address?: __.Key<__.Association.to<Address>>;
1379
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1380
+ tx?: __.Key<__.Association.to<Transaction>>;
1381
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1382
+ netAmount?: number | null;
1383
+ blockTime?: number | null;
1384
+ netAssets?: string | null;
1385
+ hasAssets?: boolean | null;
1386
+ };
1387
+ readonly kind: "entity" | "type" | "aspect";
1388
+ readonly keys: __.KeysOf<{
1389
+ address?: __.Key<__.Association.to<Address>>;
1390
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1391
+ tx?: __.Key<__.Association.to<Transaction>>;
1392
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1393
+ netAmount?: number | null;
1394
+ blockTime?: number | null;
1395
+ netAssets?: string | null;
1396
+ hasAssets?: boolean | null;
1397
+ }>;
1398
+ readonly elements: __.ElementsOf<{
1399
+ address?: __.Key<__.Association.to<Address>>;
1400
+ address_address?: __.Key<_odatano_cardano.Bech32>;
1401
+ tx?: __.Key<__.Association.to<Transaction>>;
1402
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1403
+ netAmount?: number | null;
1404
+ blockTime?: number | null;
1405
+ netAssets?: string | null;
1406
+ hasAssets?: boolean | null;
1407
+ }>;
1408
+ readonly actions: globalThis.Record<never, never>;
1409
+ } & typeof __.Entity;
1410
+ export declare class AddressTransaction extends AddressTransaction_base {
1411
+ }
1412
+ export declare class AddressTransactions extends Array<AddressTransaction> {
1413
+ $count?: number;
1414
+ }
1415
+ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1416
+ new (...args: any[]): {
1417
+ validFrom?: __.CdsTimestamp | null;
1418
+ validTo?: __.CdsTimestamp | null;
1419
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1420
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1421
+ utxo_index?: __.Key<number>;
1422
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1423
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1424
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1425
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1426
+ asset_assetNameHex?: string | null;
1427
+ asset_assetName?: string | null;
1428
+ asset_fingerprint?: string | null;
1429
+ };
1430
+ readonly kind: "entity" | "type" | "aspect";
1431
+ readonly keys: __.KeysOf<{
1432
+ validFrom?: __.CdsTimestamp | null;
1433
+ validTo?: __.CdsTimestamp | null;
1434
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1435
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1436
+ utxo_index?: __.Key<number>;
1437
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1438
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1439
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1440
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1441
+ asset_assetNameHex?: string | null;
1442
+ asset_assetName?: string | null;
1443
+ asset_fingerprint?: string | null;
1444
+ }>;
1445
+ readonly elements: __.ElementsOf<{
1446
+ validFrom?: __.CdsTimestamp | null;
1447
+ validTo?: __.CdsTimestamp | null;
1448
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1449
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1450
+ utxo_index?: __.Key<number>;
1451
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1452
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1453
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1454
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1455
+ asset_assetNameHex?: string | null;
1456
+ asset_assetName?: string | null;
1457
+ asset_fingerprint?: string | null;
1458
+ }>;
1459
+ readonly actions: globalThis.Record<never, never>;
1460
+ } & TBase;
1461
+ declare const UTxOAsset_base: {
1462
+ new (...args: any[]): {
1463
+ validFrom?: __.CdsTimestamp | null;
1464
+ validTo?: __.CdsTimestamp | null;
1465
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1466
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1467
+ utxo_index?: __.Key<number>;
1468
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1469
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1470
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1471
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1472
+ asset_assetNameHex?: string | null;
1473
+ asset_assetName?: string | null;
1474
+ asset_fingerprint?: string | null;
1475
+ };
1476
+ readonly kind: "entity" | "type" | "aspect";
1477
+ readonly keys: __.KeysOf<{
1478
+ validFrom?: __.CdsTimestamp | null;
1479
+ validTo?: __.CdsTimestamp | null;
1480
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1481
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1482
+ utxo_index?: __.Key<number>;
1483
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1484
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1485
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1486
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1487
+ asset_assetNameHex?: string | null;
1488
+ asset_assetName?: string | null;
1489
+ asset_fingerprint?: string | null;
1490
+ }>;
1491
+ readonly elements: __.ElementsOf<{
1492
+ validFrom?: __.CdsTimestamp | null;
1493
+ validTo?: __.CdsTimestamp | null;
1494
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1495
+ utxo_hash?: __.Key<_odatano_cardano.Blake2b256>;
1496
+ utxo_index?: __.Key<number>;
1497
+ utxo_address_address?: __.Key<_odatano_cardano.Bech32>;
1498
+ unit?: __.Key<_odatano_cardano.AssetUnit>;
1499
+ asset_quantity?: _odatano_cardano.Lovelace | null;
1500
+ asset_policyId?: _odatano_cardano.Blake2b224 | null;
1501
+ asset_assetNameHex?: string | null;
1502
+ asset_assetName?: string | null;
1503
+ asset_fingerprint?: string | null;
1504
+ }>;
1505
+ readonly actions: globalThis.Record<never, never>;
1506
+ } & typeof __.Entity;
1507
+ export declare class UTxOAsset extends UTxOAsset_base {
1508
+ }
1509
+ export declare class UTxOAssets extends Array<UTxOAsset> {
1510
+ $count?: number;
1511
+ }
1512
+ export declare function _TransactionMetadataAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1513
+ new (...args: any[]): {
1514
+ id?: __.Key<number>;
1515
+ tx?: __.Key<__.Association.to<Transaction>>;
1516
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1517
+ label?: string | null;
1518
+ payload?: string | null;
1519
+ };
1520
+ readonly kind: "entity" | "type" | "aspect";
1521
+ readonly keys: __.KeysOf<{
1522
+ id?: __.Key<number>;
1523
+ tx?: __.Key<__.Association.to<Transaction>>;
1524
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1525
+ label?: string | null;
1526
+ payload?: string | null;
1527
+ }>;
1528
+ readonly elements: __.ElementsOf<{
1529
+ id?: __.Key<number>;
1530
+ tx?: __.Key<__.Association.to<Transaction>>;
1531
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1532
+ label?: string | null;
1533
+ payload?: string | null;
1534
+ }>;
1535
+ readonly actions: globalThis.Record<never, never>;
1536
+ } & TBase;
1537
+ declare const TransactionMetadata_base: {
1538
+ new (...args: any[]): {
1539
+ id?: __.Key<number>;
1540
+ tx?: __.Key<__.Association.to<Transaction>>;
1541
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1542
+ label?: string | null;
1543
+ payload?: string | null;
1544
+ };
1545
+ readonly kind: "entity" | "type" | "aspect";
1546
+ readonly keys: __.KeysOf<{
1547
+ id?: __.Key<number>;
1548
+ tx?: __.Key<__.Association.to<Transaction>>;
1549
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1550
+ label?: string | null;
1551
+ payload?: string | null;
1552
+ }>;
1553
+ readonly elements: __.ElementsOf<{
1554
+ id?: __.Key<number>;
1555
+ tx?: __.Key<__.Association.to<Transaction>>;
1556
+ tx_hash?: __.Key<_odatano_cardano.Blake2b256>;
1557
+ label?: string | null;
1558
+ payload?: string | null;
1559
+ }>;
1560
+ readonly actions: globalThis.Record<never, never>;
1561
+ } & typeof __.Entity;
1562
+ export declare class TransactionMetadata extends TransactionMetadata_base {
1563
+ }
1564
+ export declare class TransactionMetadata_ extends Array<TransactionMetadata> {
1565
+ $count?: number;
1566
+ }
1567
+ export declare function _LedgerProtocolParameterAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1568
+ new (...args: any[]): {
1569
+ network?: __.Key<string>;
1570
+ epoch?: __.Key<number>;
1571
+ minFeeA?: number | null;
1572
+ minFeeB?: number | null;
1573
+ maxBlockSize?: number | null;
1574
+ maxTxSize?: number | null;
1575
+ maxBlockHeaderSize?: number | null;
1576
+ keyDeposit?: string | null;
1577
+ poolDeposit?: string | null;
1578
+ eMax?: number | null;
1579
+ nOpt?: number | null;
1580
+ a0?: number | null;
1581
+ rho?: number | null;
1582
+ tau?: number | null;
1583
+ minPoolCost?: string | null;
1584
+ decentralisationParam?: number | null;
1585
+ extraEntropy?: string | null;
1586
+ protocolMajorVer?: number | null;
1587
+ protocolMinorVer?: number | null;
1588
+ minUtxo?: string | null;
1589
+ nonce?: string | null;
1590
+ costModels?: string | null;
1591
+ priceMem?: number | null;
1592
+ priceStep?: number | null;
1593
+ maxTxExMem?: string | null;
1594
+ maxTxExSteps?: string | null;
1595
+ maxBlockExMem?: string | null;
1596
+ maxBlockExSteps?: string | null;
1597
+ maxValSize?: string | null;
1598
+ collateralPercent?: number | null;
1599
+ maxCollateralInputs?: number | null;
1600
+ coinsPerUtxoSize?: string | null;
1601
+ coinsPerUtxoWord?: string | null;
1602
+ fetchedAt?: __.CdsTimestamp | null;
1603
+ source?: string | null;
1604
+ };
1605
+ readonly kind: "entity" | "type" | "aspect";
1606
+ readonly keys: __.KeysOf<{
1607
+ network?: __.Key<string>;
1608
+ epoch?: __.Key<number>;
1609
+ minFeeA?: number | null;
1610
+ minFeeB?: number | null;
1611
+ maxBlockSize?: number | null;
1612
+ maxTxSize?: number | null;
1613
+ maxBlockHeaderSize?: number | null;
1614
+ keyDeposit?: string | null;
1615
+ poolDeposit?: string | null;
1616
+ eMax?: number | null;
1617
+ nOpt?: number | null;
1618
+ a0?: number | null;
1619
+ rho?: number | null;
1620
+ tau?: number | null;
1621
+ minPoolCost?: string | null;
1622
+ decentralisationParam?: number | null;
1623
+ extraEntropy?: string | null;
1624
+ protocolMajorVer?: number | null;
1625
+ protocolMinorVer?: number | null;
1626
+ minUtxo?: string | null;
1627
+ nonce?: string | null;
1628
+ costModels?: string | null;
1629
+ priceMem?: number | null;
1630
+ priceStep?: number | null;
1631
+ maxTxExMem?: string | null;
1632
+ maxTxExSteps?: string | null;
1633
+ maxBlockExMem?: string | null;
1634
+ maxBlockExSteps?: string | null;
1635
+ maxValSize?: string | null;
1636
+ collateralPercent?: number | null;
1637
+ maxCollateralInputs?: number | null;
1638
+ coinsPerUtxoSize?: string | null;
1639
+ coinsPerUtxoWord?: string | null;
1640
+ fetchedAt?: __.CdsTimestamp | null;
1641
+ source?: string | null;
1642
+ }>;
1643
+ readonly elements: __.ElementsOf<{
1644
+ network?: __.Key<string>;
1645
+ epoch?: __.Key<number>;
1646
+ minFeeA?: number | null;
1647
+ minFeeB?: number | null;
1648
+ maxBlockSize?: number | null;
1649
+ maxTxSize?: number | null;
1650
+ maxBlockHeaderSize?: number | null;
1651
+ keyDeposit?: string | null;
1652
+ poolDeposit?: string | null;
1653
+ eMax?: number | null;
1654
+ nOpt?: number | null;
1655
+ a0?: number | null;
1656
+ rho?: number | null;
1657
+ tau?: number | null;
1658
+ minPoolCost?: string | null;
1659
+ decentralisationParam?: number | null;
1660
+ extraEntropy?: string | null;
1661
+ protocolMajorVer?: number | null;
1662
+ protocolMinorVer?: number | null;
1663
+ minUtxo?: string | null;
1664
+ nonce?: string | null;
1665
+ costModels?: string | null;
1666
+ priceMem?: number | null;
1667
+ priceStep?: number | null;
1668
+ maxTxExMem?: string | null;
1669
+ maxTxExSteps?: string | null;
1670
+ maxBlockExMem?: string | null;
1671
+ maxBlockExSteps?: string | null;
1672
+ maxValSize?: string | null;
1673
+ collateralPercent?: number | null;
1674
+ maxCollateralInputs?: number | null;
1675
+ coinsPerUtxoSize?: string | null;
1676
+ coinsPerUtxoWord?: string | null;
1677
+ fetchedAt?: __.CdsTimestamp | null;
1678
+ source?: string | null;
1679
+ }>;
1680
+ readonly actions: globalThis.Record<never, never>;
1681
+ } & TBase;
1682
+ declare const LedgerProtocolParameter_base: {
1683
+ new (...args: any[]): {
1684
+ network?: __.Key<string>;
1685
+ epoch?: __.Key<number>;
1686
+ minFeeA?: number | null;
1687
+ minFeeB?: number | null;
1688
+ maxBlockSize?: number | null;
1689
+ maxTxSize?: number | null;
1690
+ maxBlockHeaderSize?: number | null;
1691
+ keyDeposit?: string | null;
1692
+ poolDeposit?: string | null;
1693
+ eMax?: number | null;
1694
+ nOpt?: number | null;
1695
+ a0?: number | null;
1696
+ rho?: number | null;
1697
+ tau?: number | null;
1698
+ minPoolCost?: string | null;
1699
+ decentralisationParam?: number | null;
1700
+ extraEntropy?: string | null;
1701
+ protocolMajorVer?: number | null;
1702
+ protocolMinorVer?: number | null;
1703
+ minUtxo?: string | null;
1704
+ nonce?: string | null;
1705
+ costModels?: string | null;
1706
+ priceMem?: number | null;
1707
+ priceStep?: number | null;
1708
+ maxTxExMem?: string | null;
1709
+ maxTxExSteps?: string | null;
1710
+ maxBlockExMem?: string | null;
1711
+ maxBlockExSteps?: string | null;
1712
+ maxValSize?: string | null;
1713
+ collateralPercent?: number | null;
1714
+ maxCollateralInputs?: number | null;
1715
+ coinsPerUtxoSize?: string | null;
1716
+ coinsPerUtxoWord?: string | null;
1717
+ fetchedAt?: __.CdsTimestamp | null;
1718
+ source?: string | null;
1719
+ };
1720
+ readonly kind: "entity" | "type" | "aspect";
1721
+ readonly keys: __.KeysOf<{
1722
+ network?: __.Key<string>;
1723
+ epoch?: __.Key<number>;
1724
+ minFeeA?: number | null;
1725
+ minFeeB?: number | null;
1726
+ maxBlockSize?: number | null;
1727
+ maxTxSize?: number | null;
1728
+ maxBlockHeaderSize?: number | null;
1729
+ keyDeposit?: string | null;
1730
+ poolDeposit?: string | null;
1731
+ eMax?: number | null;
1732
+ nOpt?: number | null;
1733
+ a0?: number | null;
1734
+ rho?: number | null;
1735
+ tau?: number | null;
1736
+ minPoolCost?: string | null;
1737
+ decentralisationParam?: number | null;
1738
+ extraEntropy?: string | null;
1739
+ protocolMajorVer?: number | null;
1740
+ protocolMinorVer?: number | null;
1741
+ minUtxo?: string | null;
1742
+ nonce?: string | null;
1743
+ costModels?: string | null;
1744
+ priceMem?: number | null;
1745
+ priceStep?: number | null;
1746
+ maxTxExMem?: string | null;
1747
+ maxTxExSteps?: string | null;
1748
+ maxBlockExMem?: string | null;
1749
+ maxBlockExSteps?: string | null;
1750
+ maxValSize?: string | null;
1751
+ collateralPercent?: number | null;
1752
+ maxCollateralInputs?: number | null;
1753
+ coinsPerUtxoSize?: string | null;
1754
+ coinsPerUtxoWord?: string | null;
1755
+ fetchedAt?: __.CdsTimestamp | null;
1756
+ source?: string | null;
1757
+ }>;
1758
+ readonly elements: __.ElementsOf<{
1759
+ network?: __.Key<string>;
1760
+ epoch?: __.Key<number>;
1761
+ minFeeA?: number | null;
1762
+ minFeeB?: number | null;
1763
+ maxBlockSize?: number | null;
1764
+ maxTxSize?: number | null;
1765
+ maxBlockHeaderSize?: number | null;
1766
+ keyDeposit?: string | null;
1767
+ poolDeposit?: string | null;
1768
+ eMax?: number | null;
1769
+ nOpt?: number | null;
1770
+ a0?: number | null;
1771
+ rho?: number | null;
1772
+ tau?: number | null;
1773
+ minPoolCost?: string | null;
1774
+ decentralisationParam?: number | null;
1775
+ extraEntropy?: string | null;
1776
+ protocolMajorVer?: number | null;
1777
+ protocolMinorVer?: number | null;
1778
+ minUtxo?: string | null;
1779
+ nonce?: string | null;
1780
+ costModels?: string | null;
1781
+ priceMem?: number | null;
1782
+ priceStep?: number | null;
1783
+ maxTxExMem?: string | null;
1784
+ maxTxExSteps?: string | null;
1785
+ maxBlockExMem?: string | null;
1786
+ maxBlockExSteps?: string | null;
1787
+ maxValSize?: string | null;
1788
+ collateralPercent?: number | null;
1789
+ maxCollateralInputs?: number | null;
1790
+ coinsPerUtxoSize?: string | null;
1791
+ coinsPerUtxoWord?: string | null;
1792
+ fetchedAt?: __.CdsTimestamp | null;
1793
+ source?: string | null;
1794
+ }>;
1795
+ readonly actions: globalThis.Record<never, never>;
1796
+ } & typeof __.Entity;
1797
+ export declare class LedgerProtocolParameter extends LedgerProtocolParameter_base {
1798
+ }
1799
+ export declare class LedgerProtocolParameters extends Array<LedgerProtocolParameter> {
1800
+ $count?: number;
1801
+ }
1802
+ export declare const GetNetworkInformation: {
1803
+ (): globalThis.Promise<NetworkInformation | null> | NetworkInformation | null;
1804
+ ({}: globalThis.Record<never, never>): globalThis.Promise<NetworkInformation | null> | NetworkInformation | null;
1805
+ __parameters: globalThis.Record<never, never>;
1806
+ __returns: globalThis.Promise<NetworkInformation | null> | NetworkInformation | null;
1807
+ __self: never;
1808
+ kind: 'action';
1809
+ };
1810
+ export declare const GetBlockByHash: {
1811
+ (hash: _odatano_cardano.Blake2b256 | null): globalThis.Promise<Block | null> | Block | null;
1812
+ ({ hash }: {
1813
+ hash?: _odatano_cardano.Blake2b256 | null;
1814
+ }): globalThis.Promise<Block | null> | Block | null;
1815
+ __parameters: {
1816
+ hash?: _odatano_cardano.Blake2b256 | null;
1817
+ };
1818
+ __returns: globalThis.Promise<Block | null> | Block | null;
1819
+ __self: never;
1820
+ kind: 'action';
1821
+ };
1822
+ export declare const GetEpochByNumber: {
1823
+ (epochNumber: number | null): globalThis.Promise<Epoch | null> | Epoch | null;
1824
+ ({ epochNumber }: {
1825
+ epochNumber?: number | null;
1826
+ }): globalThis.Promise<Epoch | null> | Epoch | null;
1827
+ __parameters: {
1828
+ epochNumber?: number | null;
1829
+ };
1830
+ __returns: globalThis.Promise<Epoch | null> | Epoch | null;
1831
+ __self: never;
1832
+ kind: 'action';
1833
+ };
1834
+ export declare const GetPoolById: {
1835
+ (poolId: string | null): globalThis.Promise<Pool | null> | Pool | null;
1836
+ ({ poolId }: {
1837
+ poolId?: string | null;
1838
+ }): globalThis.Promise<Pool | null> | Pool | null;
1839
+ __parameters: {
1840
+ poolId?: string | null;
1841
+ };
1842
+ __returns: globalThis.Promise<Pool | null> | Pool | null;
1843
+ __self: never;
1844
+ kind: 'action';
1845
+ };
1846
+ export declare const GetDrepById: {
1847
+ (drepId: string | null): globalThis.Promise<Drep | null> | Drep | null;
1848
+ ({ drepId }: {
1849
+ drepId?: string | null;
1850
+ }): globalThis.Promise<Drep | null> | Drep | null;
1851
+ __parameters: {
1852
+ drepId?: string | null;
1853
+ };
1854
+ __returns: globalThis.Promise<Drep | null> | Drep | null;
1855
+ __self: never;
1856
+ kind: 'action';
1857
+ };
1858
+ export declare const GetAccountByStakeAddress: {
1859
+ (stakeAddress: _odatano_cardano.Bech32 | null): globalThis.Promise<Account | null> | Account | null;
1860
+ ({ stakeAddress }: {
1861
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1862
+ }): globalThis.Promise<Account | null> | Account | null;
1863
+ __parameters: {
1864
+ stakeAddress?: _odatano_cardano.Bech32 | null;
1865
+ };
1866
+ __returns: globalThis.Promise<Account | null> | Account | null;
1867
+ __self: never;
1868
+ kind: 'action';
1869
+ };
1870
+ export declare const GetTransactionByHash: {
1871
+ (hash: _odatano_cardano.Blake2b256 | null): globalThis.Promise<Transaction | null> | Transaction | null;
1872
+ ({ hash }: {
1873
+ hash?: _odatano_cardano.Blake2b256 | null;
1874
+ }): globalThis.Promise<Transaction | null> | Transaction | null;
1875
+ __parameters: {
1876
+ hash?: _odatano_cardano.Blake2b256 | null;
1877
+ };
1878
+ __returns: globalThis.Promise<Transaction | null> | Transaction | null;
1879
+ __self: never;
1880
+ kind: 'action';
1881
+ };
1882
+ export declare const GetMetadataByTxHash: {
1883
+ (tx_hash: _odatano_cardano.Blake2b256 | null): globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
1884
+ ({ tx_hash }: {
1885
+ tx_hash?: _odatano_cardano.Blake2b256 | null;
1886
+ }): globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
1887
+ __parameters: {
1888
+ tx_hash?: _odatano_cardano.Blake2b256 | null;
1889
+ };
1890
+ __returns: globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
1891
+ __self: never;
1892
+ kind: 'action';
1893
+ };
1894
+ export declare const GetAddressByBech32: {
1895
+ (address: _odatano_cardano.Bech32 | null): globalThis.Promise<Address | null> | Address | null;
1896
+ ({ address }: {
1897
+ address?: _odatano_cardano.Bech32 | null;
1898
+ }): globalThis.Promise<Address | null> | Address | null;
1899
+ __parameters: {
1900
+ address?: _odatano_cardano.Bech32 | null;
1901
+ };
1902
+ __returns: globalThis.Promise<Address | null> | Address | null;
1903
+ __self: never;
1904
+ kind: 'action';
1905
+ };
1906
+ export declare const GetUTxOsByAddress: {
1907
+ (address: _odatano_cardano.Bech32 | null): globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
1908
+ ({ address }: {
1909
+ address?: _odatano_cardano.Bech32 | null;
1910
+ }): globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
1911
+ __parameters: {
1912
+ address?: _odatano_cardano.Bech32 | null;
1913
+ };
1914
+ __returns: globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
1915
+ __self: never;
1916
+ kind: 'action';
1917
+ };
1918
+ export declare const GetAssetsByAddress: {
1919
+ (address: _odatano_cardano.Bech32 | null): globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
1920
+ ({ address }: {
1921
+ address?: _odatano_cardano.Bech32 | null;
1922
+ }): globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
1923
+ __parameters: {
1924
+ address?: _odatano_cardano.Bech32 | null;
1925
+ };
1926
+ __returns: globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
1927
+ __self: never;
1928
+ kind: 'action';
1929
+ };
1930
+ export declare const GetLatestTransactionsByAddress: {
1931
+ (address: _odatano_cardano.Bech32 | null, limit: number | null): globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
1932
+ ({ address, limit }: {
1933
+ address?: _odatano_cardano.Bech32 | null;
1934
+ limit?: number | null;
1935
+ }): globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
1936
+ __parameters: {
1937
+ address?: _odatano_cardano.Bech32 | null;
1938
+ limit?: number | null;
1939
+ };
1940
+ __returns: globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
1941
+ __self: never;
1942
+ kind: 'action';
1943
+ };
1944
+ export declare const GetLatestBlock: {
1945
+ (): globalThis.Promise<Block | null> | Block | null;
1946
+ ({}: globalThis.Record<never, never>): globalThis.Promise<Block | null> | Block | null;
1947
+ __parameters: globalThis.Record<never, never>;
1948
+ __returns: globalThis.Promise<Block | null> | Block | null;
1949
+ __self: never;
1950
+ kind: 'action';
1951
+ };
1952
+ export declare const GetLatestEpoch: {
1953
+ (): globalThis.Promise<Epoch | null> | Epoch | null;
1954
+ ({}: globalThis.Record<never, never>): globalThis.Promise<Epoch | null> | Epoch | null;
1955
+ __parameters: globalThis.Record<never, never>;
1956
+ __returns: globalThis.Promise<Epoch | null> | Epoch | null;
1957
+ __self: never;
1958
+ kind: 'action';
1959
+ };
1960
+ export declare const GetLedgerProtocolParameters: {
1961
+ (): globalThis.Promise<LedgerProtocolParameter | null> | LedgerProtocolParameter | null;
1962
+ ({}: globalThis.Record<never, never>): globalThis.Promise<LedgerProtocolParameter | null> | LedgerProtocolParameter | null;
1963
+ __parameters: globalThis.Record<never, never>;
1964
+ __returns: globalThis.Promise<LedgerProtocolParameter | null> | LedgerProtocolParameter | null;
1965
+ __self: never;
1966
+ kind: 'action';
1967
+ };
1968
+ export {};
1969
+ //# sourceMappingURL=index.d.ts.map