@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,2882 @@
1
+ import * as __ from './../../_';
2
+ import * as _ from './../..';
3
+ export type Blake2b224 = string;
4
+ export type Blake2b256 = string;
5
+ export type HexBytes = string;
6
+ export type Lovelace = number;
7
+ export type AssetUnit = string;
8
+ export type MetadataLabel = string;
9
+ export type Bech32 = string;
10
+ export declare const SubmissionStatus: {
11
+ readonly pending: "pending";
12
+ readonly submitted: "submitted";
13
+ readonly confirmed: "confirmed";
14
+ readonly failed: "failed";
15
+ };
16
+ export type SubmissionStatus = "pending" | "submitted" | "confirmed" | "failed";
17
+ export declare const SigningStatus: {
18
+ readonly pending: "pending";
19
+ readonly signed: "signed";
20
+ readonly verified: "verified";
21
+ readonly submitted: "submitted";
22
+ readonly expired: "expired";
23
+ readonly failed: "failed";
24
+ };
25
+ export type SigningStatus = "pending" | "signed" | "verified" | "submitted" | "expired" | "failed";
26
+ export declare function _AssetSliceAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
27
+ new (...args: any[]): {
28
+ quantity?: Lovelace | null;
29
+ policyId?: Blake2b224 | null;
30
+ assetNameHex?: string | null;
31
+ assetName?: string | null;
32
+ fingerprint?: string | null;
33
+ };
34
+ readonly kind: "entity" | "type" | "aspect";
35
+ readonly keys: __.KeysOf<{
36
+ quantity?: Lovelace | null;
37
+ policyId?: Blake2b224 | null;
38
+ assetNameHex?: string | null;
39
+ assetName?: string | null;
40
+ fingerprint?: string | null;
41
+ }>;
42
+ readonly elements: __.ElementsOf<{
43
+ quantity?: Lovelace | null;
44
+ policyId?: Blake2b224 | null;
45
+ assetNameHex?: string | null;
46
+ assetName?: string | null;
47
+ fingerprint?: string | null;
48
+ }>;
49
+ readonly actions: globalThis.Record<never, never>;
50
+ } & TBase;
51
+ declare const AssetSlice_base: {
52
+ new (...args: any[]): {
53
+ quantity?: Lovelace | null;
54
+ policyId?: Blake2b224 | null;
55
+ assetNameHex?: string | null;
56
+ assetName?: string | null;
57
+ fingerprint?: string | null;
58
+ };
59
+ readonly kind: "entity" | "type" | "aspect";
60
+ readonly keys: __.KeysOf<{
61
+ quantity?: Lovelace | null;
62
+ policyId?: Blake2b224 | null;
63
+ assetNameHex?: string | null;
64
+ assetName?: string | null;
65
+ fingerprint?: string | null;
66
+ }>;
67
+ readonly elements: __.ElementsOf<{
68
+ quantity?: Lovelace | null;
69
+ policyId?: Blake2b224 | null;
70
+ assetNameHex?: string | null;
71
+ assetName?: string | null;
72
+ fingerprint?: string | null;
73
+ }>;
74
+ readonly actions: globalThis.Record<never, never>;
75
+ } & typeof __.Entity;
76
+ export declare class AssetSlice extends AssetSlice_base {
77
+ }
78
+ export declare function _MetadataSliceAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
79
+ new (...args: any[]): {
80
+ label?: MetadataLabel | null;
81
+ payload?: string | null;
82
+ };
83
+ readonly kind: "entity" | "type" | "aspect";
84
+ readonly keys: __.KeysOf<{
85
+ label?: MetadataLabel | null;
86
+ payload?: string | null;
87
+ }>;
88
+ readonly elements: __.ElementsOf<{
89
+ label?: MetadataLabel | null;
90
+ payload?: string | null;
91
+ }>;
92
+ readonly actions: globalThis.Record<never, never>;
93
+ } & TBase;
94
+ declare const MetadataSlice_base: {
95
+ new (...args: any[]): {
96
+ label?: MetadataLabel | null;
97
+ payload?: string | null;
98
+ };
99
+ readonly kind: "entity" | "type" | "aspect";
100
+ readonly keys: __.KeysOf<{
101
+ label?: MetadataLabel | null;
102
+ payload?: string | null;
103
+ }>;
104
+ readonly elements: __.ElementsOf<{
105
+ label?: MetadataLabel | null;
106
+ payload?: string | null;
107
+ }>;
108
+ readonly actions: globalThis.Record<never, never>;
109
+ } & typeof __.Entity;
110
+ export declare class MetadataSlice extends MetadataSlice_base {
111
+ }
112
+ export declare function _UTxODataSliceAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
113
+ new (...args: any[]): {
114
+ dataHash?: Blake2b256 | null;
115
+ inlineDatum?: string | null;
116
+ referenceScriptHash?: Blake2b256 | null;
117
+ };
118
+ readonly kind: "entity" | "type" | "aspect";
119
+ readonly keys: __.KeysOf<{
120
+ dataHash?: Blake2b256 | null;
121
+ inlineDatum?: string | null;
122
+ referenceScriptHash?: Blake2b256 | null;
123
+ }>;
124
+ readonly elements: __.ElementsOf<{
125
+ dataHash?: Blake2b256 | null;
126
+ inlineDatum?: string | null;
127
+ referenceScriptHash?: Blake2b256 | null;
128
+ }>;
129
+ readonly actions: globalThis.Record<never, never>;
130
+ } & TBase;
131
+ declare const UTxODataSlice_base: {
132
+ new (...args: any[]): {
133
+ dataHash?: Blake2b256 | null;
134
+ inlineDatum?: string | null;
135
+ referenceScriptHash?: Blake2b256 | null;
136
+ };
137
+ readonly kind: "entity" | "type" | "aspect";
138
+ readonly keys: __.KeysOf<{
139
+ dataHash?: Blake2b256 | null;
140
+ inlineDatum?: string | null;
141
+ referenceScriptHash?: Blake2b256 | null;
142
+ }>;
143
+ readonly elements: __.ElementsOf<{
144
+ dataHash?: Blake2b256 | null;
145
+ inlineDatum?: string | null;
146
+ referenceScriptHash?: Blake2b256 | null;
147
+ }>;
148
+ readonly actions: globalThis.Record<never, never>;
149
+ } & typeof __.Entity;
150
+ export declare class UTxODataSlice extends UTxODataSlice_base {
151
+ }
152
+ export declare function _NetworkInformationAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
153
+ new (...args: any[]): {
154
+ network?: __.Key<string>;
155
+ maxSupply?: Lovelace | null;
156
+ totalSupply?: Lovelace | null;
157
+ circulatingSupply?: Lovelace | null;
158
+ lockedSupply?: Lovelace | null;
159
+ treasurySupply?: Lovelace | null;
160
+ reservesSupply?: Lovelace | null;
161
+ liveStake?: Lovelace | null;
162
+ activeStake?: Lovelace | null;
163
+ validFrom?: __.CdsTimestamp | null;
164
+ validTo?: __.CdsTimestamp | null;
165
+ };
166
+ readonly kind: "entity" | "type" | "aspect";
167
+ readonly keys: __.KeysOf<{
168
+ network?: __.Key<string>;
169
+ maxSupply?: Lovelace | null;
170
+ totalSupply?: Lovelace | null;
171
+ circulatingSupply?: Lovelace | null;
172
+ lockedSupply?: Lovelace | null;
173
+ treasurySupply?: Lovelace | null;
174
+ reservesSupply?: Lovelace | null;
175
+ liveStake?: Lovelace | null;
176
+ activeStake?: Lovelace | null;
177
+ validFrom?: __.CdsTimestamp | null;
178
+ validTo?: __.CdsTimestamp | null;
179
+ }>;
180
+ readonly elements: __.ElementsOf<{
181
+ network?: __.Key<string>;
182
+ maxSupply?: Lovelace | null;
183
+ totalSupply?: Lovelace | null;
184
+ circulatingSupply?: Lovelace | null;
185
+ lockedSupply?: Lovelace | null;
186
+ treasurySupply?: Lovelace | null;
187
+ reservesSupply?: Lovelace | null;
188
+ liveStake?: Lovelace | null;
189
+ activeStake?: Lovelace | null;
190
+ validFrom?: __.CdsTimestamp | null;
191
+ validTo?: __.CdsTimestamp | null;
192
+ }>;
193
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
194
+ } & TBase;
195
+ declare const NetworkInformation_base: {
196
+ new (...args: any[]): {
197
+ network?: __.Key<string>;
198
+ maxSupply?: Lovelace | null;
199
+ totalSupply?: Lovelace | null;
200
+ circulatingSupply?: Lovelace | null;
201
+ lockedSupply?: Lovelace | null;
202
+ treasurySupply?: Lovelace | null;
203
+ reservesSupply?: Lovelace | null;
204
+ liveStake?: Lovelace | null;
205
+ activeStake?: Lovelace | null;
206
+ validFrom?: __.CdsTimestamp | null;
207
+ validTo?: __.CdsTimestamp | null;
208
+ };
209
+ readonly kind: "entity" | "type" | "aspect";
210
+ readonly keys: __.KeysOf<{
211
+ network?: __.Key<string>;
212
+ maxSupply?: Lovelace | null;
213
+ totalSupply?: Lovelace | null;
214
+ circulatingSupply?: Lovelace | null;
215
+ lockedSupply?: Lovelace | null;
216
+ treasurySupply?: Lovelace | null;
217
+ reservesSupply?: Lovelace | null;
218
+ liveStake?: Lovelace | null;
219
+ activeStake?: Lovelace | null;
220
+ validFrom?: __.CdsTimestamp | null;
221
+ validTo?: __.CdsTimestamp | null;
222
+ }>;
223
+ readonly elements: __.ElementsOf<{
224
+ network?: __.Key<string>;
225
+ maxSupply?: Lovelace | null;
226
+ totalSupply?: Lovelace | null;
227
+ circulatingSupply?: Lovelace | null;
228
+ lockedSupply?: Lovelace | null;
229
+ treasurySupply?: Lovelace | null;
230
+ reservesSupply?: Lovelace | null;
231
+ liveStake?: Lovelace | null;
232
+ activeStake?: Lovelace | null;
233
+ validFrom?: __.CdsTimestamp | null;
234
+ validTo?: __.CdsTimestamp | null;
235
+ }>;
236
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
237
+ } & typeof __.Entity;
238
+ export declare class NetworkInformation extends NetworkInformation_base {
239
+ }
240
+ export declare class NetworkInformation_ extends Array<NetworkInformation> {
241
+ $count?: number;
242
+ }
243
+ export declare function _BlockAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
244
+ new (...args: any[]): {
245
+ hash?: __.Key<string>;
246
+ time?: string | null;
247
+ height?: number | null;
248
+ slotLeader?: string | null;
249
+ epochNumber?: number | null;
250
+ epoch?: __.Association.to<Epoch> | null;
251
+ epochSlot?: number | null;
252
+ size?: number | null;
253
+ txCount?: number | null;
254
+ fees?: Lovelace | null;
255
+ };
256
+ readonly kind: "entity" | "type" | "aspect";
257
+ readonly keys: __.KeysOf<{
258
+ hash?: __.Key<string>;
259
+ time?: string | null;
260
+ height?: number | null;
261
+ slotLeader?: string | null;
262
+ epochNumber?: number | null;
263
+ epoch?: __.Association.to<Epoch> | null;
264
+ epochSlot?: number | null;
265
+ size?: number | null;
266
+ txCount?: number | null;
267
+ fees?: Lovelace | null;
268
+ }>;
269
+ readonly elements: __.ElementsOf<{
270
+ hash?: __.Key<string>;
271
+ time?: string | null;
272
+ height?: number | null;
273
+ slotLeader?: string | null;
274
+ epochNumber?: number | null;
275
+ epoch?: __.Association.to<Epoch> | null;
276
+ epochSlot?: number | null;
277
+ size?: number | null;
278
+ txCount?: number | null;
279
+ fees?: Lovelace | null;
280
+ }>;
281
+ readonly actions: globalThis.Record<never, never>;
282
+ } & TBase;
283
+ declare const Block_base: {
284
+ new (...args: any[]): {
285
+ hash?: __.Key<string>;
286
+ time?: string | null;
287
+ height?: number | null;
288
+ slotLeader?: string | null;
289
+ epochNumber?: number | null;
290
+ epoch?: __.Association.to<Epoch> | null;
291
+ epochSlot?: number | null;
292
+ size?: number | null;
293
+ txCount?: number | null;
294
+ fees?: Lovelace | null;
295
+ };
296
+ readonly kind: "entity" | "type" | "aspect";
297
+ readonly keys: __.KeysOf<{
298
+ hash?: __.Key<string>;
299
+ time?: string | null;
300
+ height?: number | null;
301
+ slotLeader?: string | null;
302
+ epochNumber?: number | null;
303
+ epoch?: __.Association.to<Epoch> | null;
304
+ epochSlot?: number | null;
305
+ size?: number | null;
306
+ txCount?: number | null;
307
+ fees?: Lovelace | null;
308
+ }>;
309
+ readonly elements: __.ElementsOf<{
310
+ hash?: __.Key<string>;
311
+ time?: string | null;
312
+ height?: number | null;
313
+ slotLeader?: string | null;
314
+ epochNumber?: number | null;
315
+ epoch?: __.Association.to<Epoch> | null;
316
+ epochSlot?: number | null;
317
+ size?: number | null;
318
+ txCount?: number | null;
319
+ fees?: Lovelace | null;
320
+ }>;
321
+ readonly actions: globalThis.Record<never, never>;
322
+ } & typeof __.Entity;
323
+ export declare class Block extends Block_base {
324
+ }
325
+ export declare class Blocks extends Array<Block> {
326
+ $count?: number;
327
+ }
328
+ export declare function _EpochAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
329
+ new (...args: any[]): {
330
+ epoch?: __.Key<number>;
331
+ startTime?: number | null;
332
+ endTime?: number | null;
333
+ firstBlockTime?: number | null;
334
+ lastBlockTime?: number | null;
335
+ blockCount?: number | null;
336
+ txCount?: number | null;
337
+ output?: string | null;
338
+ fees?: Lovelace | null;
339
+ activeStake?: Lovelace | null;
340
+ };
341
+ readonly kind: "entity" | "type" | "aspect";
342
+ readonly keys: __.KeysOf<{
343
+ epoch?: __.Key<number>;
344
+ startTime?: number | null;
345
+ endTime?: number | null;
346
+ firstBlockTime?: number | null;
347
+ lastBlockTime?: number | null;
348
+ blockCount?: number | null;
349
+ txCount?: number | null;
350
+ output?: string | null;
351
+ fees?: Lovelace | null;
352
+ activeStake?: Lovelace | null;
353
+ }>;
354
+ readonly elements: __.ElementsOf<{
355
+ epoch?: __.Key<number>;
356
+ startTime?: number | null;
357
+ endTime?: number | null;
358
+ firstBlockTime?: number | null;
359
+ lastBlockTime?: number | null;
360
+ blockCount?: number | null;
361
+ txCount?: number | null;
362
+ output?: string | null;
363
+ fees?: Lovelace | null;
364
+ activeStake?: Lovelace | null;
365
+ }>;
366
+ readonly actions: globalThis.Record<never, never>;
367
+ } & TBase;
368
+ declare const Epoch_base: {
369
+ new (...args: any[]): {
370
+ epoch?: __.Key<number>;
371
+ startTime?: number | null;
372
+ endTime?: number | null;
373
+ firstBlockTime?: number | null;
374
+ lastBlockTime?: number | null;
375
+ blockCount?: number | null;
376
+ txCount?: number | null;
377
+ output?: string | null;
378
+ fees?: Lovelace | null;
379
+ activeStake?: Lovelace | null;
380
+ };
381
+ readonly kind: "entity" | "type" | "aspect";
382
+ readonly keys: __.KeysOf<{
383
+ epoch?: __.Key<number>;
384
+ startTime?: number | null;
385
+ endTime?: number | null;
386
+ firstBlockTime?: number | null;
387
+ lastBlockTime?: number | null;
388
+ blockCount?: number | null;
389
+ txCount?: number | null;
390
+ output?: string | null;
391
+ fees?: Lovelace | null;
392
+ activeStake?: Lovelace | null;
393
+ }>;
394
+ readonly elements: __.ElementsOf<{
395
+ epoch?: __.Key<number>;
396
+ startTime?: number | null;
397
+ endTime?: number | null;
398
+ firstBlockTime?: number | null;
399
+ lastBlockTime?: number | null;
400
+ blockCount?: number | null;
401
+ txCount?: number | null;
402
+ output?: string | null;
403
+ fees?: Lovelace | null;
404
+ activeStake?: Lovelace | null;
405
+ }>;
406
+ readonly actions: globalThis.Record<never, never>;
407
+ } & typeof __.Entity;
408
+ export declare class Epoch extends Epoch_base {
409
+ }
410
+ export declare class Epochs extends Array<Epoch> {
411
+ $count?: number;
412
+ }
413
+ export declare function _PoolAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
414
+ new (...args: any[]): {
415
+ poolId?: __.Key<string>;
416
+ vrfKeyHash?: string | null;
417
+ blocksMinted?: number | null;
418
+ blocksEpoch?: number | null;
419
+ liveStake?: Lovelace | null;
420
+ liveSize?: number | null;
421
+ liveSaturation?: number | null;
422
+ liveDelegators?: number | null;
423
+ activeStake?: Lovelace | null;
424
+ activeSize?: number | null;
425
+ pledge?: Lovelace | null;
426
+ margin?: number | null;
427
+ fixedCost?: Lovelace | null;
428
+ rewardAccount?: string | null;
429
+ };
430
+ readonly kind: "entity" | "type" | "aspect";
431
+ readonly keys: __.KeysOf<{
432
+ poolId?: __.Key<string>;
433
+ vrfKeyHash?: string | null;
434
+ blocksMinted?: number | null;
435
+ blocksEpoch?: number | null;
436
+ liveStake?: Lovelace | null;
437
+ liveSize?: number | null;
438
+ liveSaturation?: number | null;
439
+ liveDelegators?: number | null;
440
+ activeStake?: Lovelace | null;
441
+ activeSize?: number | null;
442
+ pledge?: Lovelace | null;
443
+ margin?: number | null;
444
+ fixedCost?: Lovelace | null;
445
+ rewardAccount?: string | null;
446
+ }>;
447
+ readonly elements: __.ElementsOf<{
448
+ poolId?: __.Key<string>;
449
+ vrfKeyHash?: string | null;
450
+ blocksMinted?: number | null;
451
+ blocksEpoch?: number | null;
452
+ liveStake?: Lovelace | null;
453
+ liveSize?: number | null;
454
+ liveSaturation?: number | null;
455
+ liveDelegators?: number | null;
456
+ activeStake?: Lovelace | null;
457
+ activeSize?: number | null;
458
+ pledge?: Lovelace | null;
459
+ margin?: number | null;
460
+ fixedCost?: Lovelace | null;
461
+ rewardAccount?: string | null;
462
+ }>;
463
+ readonly actions: globalThis.Record<never, never>;
464
+ } & TBase;
465
+ declare const Pool_base: {
466
+ new (...args: any[]): {
467
+ poolId?: __.Key<string>;
468
+ vrfKeyHash?: string | null;
469
+ blocksMinted?: number | null;
470
+ blocksEpoch?: number | null;
471
+ liveStake?: Lovelace | null;
472
+ liveSize?: number | null;
473
+ liveSaturation?: number | null;
474
+ liveDelegators?: number | null;
475
+ activeStake?: Lovelace | null;
476
+ activeSize?: number | null;
477
+ pledge?: Lovelace | null;
478
+ margin?: number | null;
479
+ fixedCost?: Lovelace | null;
480
+ rewardAccount?: string | null;
481
+ };
482
+ readonly kind: "entity" | "type" | "aspect";
483
+ readonly keys: __.KeysOf<{
484
+ poolId?: __.Key<string>;
485
+ vrfKeyHash?: string | null;
486
+ blocksMinted?: number | null;
487
+ blocksEpoch?: number | null;
488
+ liveStake?: Lovelace | null;
489
+ liveSize?: number | null;
490
+ liveSaturation?: number | null;
491
+ liveDelegators?: number | null;
492
+ activeStake?: Lovelace | null;
493
+ activeSize?: number | null;
494
+ pledge?: Lovelace | null;
495
+ margin?: number | null;
496
+ fixedCost?: Lovelace | null;
497
+ rewardAccount?: string | null;
498
+ }>;
499
+ readonly elements: __.ElementsOf<{
500
+ poolId?: __.Key<string>;
501
+ vrfKeyHash?: string | null;
502
+ blocksMinted?: number | null;
503
+ blocksEpoch?: number | null;
504
+ liveStake?: Lovelace | null;
505
+ liveSize?: number | null;
506
+ liveSaturation?: number | null;
507
+ liveDelegators?: number | null;
508
+ activeStake?: Lovelace | null;
509
+ activeSize?: number | null;
510
+ pledge?: Lovelace | null;
511
+ margin?: number | null;
512
+ fixedCost?: Lovelace | null;
513
+ rewardAccount?: string | null;
514
+ }>;
515
+ readonly actions: globalThis.Record<never, never>;
516
+ } & typeof __.Entity;
517
+ export declare class Pool extends Pool_base {
518
+ }
519
+ export declare class Pools extends Array<Pool> {
520
+ $count?: number;
521
+ }
522
+ export declare function _DrepAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
523
+ new (...args: any[]): {
524
+ drepId?: __.Key<string>;
525
+ hex?: string | null;
526
+ amount?: Lovelace | null;
527
+ hasScript?: boolean | null;
528
+ lastActiveEpoch?: number | null;
529
+ retired?: boolean | null;
530
+ expired?: boolean | null;
531
+ };
532
+ readonly kind: "entity" | "type" | "aspect";
533
+ readonly keys: __.KeysOf<{
534
+ drepId?: __.Key<string>;
535
+ hex?: string | null;
536
+ amount?: Lovelace | null;
537
+ hasScript?: boolean | null;
538
+ lastActiveEpoch?: number | null;
539
+ retired?: boolean | null;
540
+ expired?: boolean | null;
541
+ }>;
542
+ readonly elements: __.ElementsOf<{
543
+ drepId?: __.Key<string>;
544
+ hex?: string | null;
545
+ amount?: Lovelace | null;
546
+ hasScript?: boolean | null;
547
+ lastActiveEpoch?: number | null;
548
+ retired?: boolean | null;
549
+ expired?: boolean | null;
550
+ }>;
551
+ readonly actions: globalThis.Record<never, never>;
552
+ } & TBase;
553
+ declare const Drep_base: {
554
+ new (...args: any[]): {
555
+ drepId?: __.Key<string>;
556
+ hex?: string | null;
557
+ amount?: Lovelace | null;
558
+ hasScript?: boolean | null;
559
+ lastActiveEpoch?: number | null;
560
+ retired?: boolean | null;
561
+ expired?: boolean | null;
562
+ };
563
+ readonly kind: "entity" | "type" | "aspect";
564
+ readonly keys: __.KeysOf<{
565
+ drepId?: __.Key<string>;
566
+ hex?: string | null;
567
+ amount?: Lovelace | null;
568
+ hasScript?: boolean | null;
569
+ lastActiveEpoch?: number | null;
570
+ retired?: boolean | null;
571
+ expired?: boolean | null;
572
+ }>;
573
+ readonly elements: __.ElementsOf<{
574
+ drepId?: __.Key<string>;
575
+ hex?: string | null;
576
+ amount?: Lovelace | null;
577
+ hasScript?: boolean | null;
578
+ lastActiveEpoch?: number | null;
579
+ retired?: boolean | null;
580
+ expired?: boolean | null;
581
+ }>;
582
+ readonly actions: globalThis.Record<never, never>;
583
+ } & typeof __.Entity;
584
+ export declare class Drep extends Drep_base {
585
+ }
586
+ export declare class Dreps extends Array<Drep> {
587
+ $count?: number;
588
+ }
589
+ export declare function _AddressAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
590
+ new (...args: any[]): {
591
+ address?: __.Key<Bech32>;
592
+ stakeAddress?: Bech32 | null;
593
+ type?: string | null;
594
+ isScript?: boolean | null;
595
+ totalLovelace?: Lovelace | null;
596
+ transactions?: __.Composition.of.many<AddressTransactions>;
597
+ assets?: __.Composition.of.many<AddressAssets>;
598
+ utxos?: __.Composition.of.many<AddressUTxOs>;
599
+ hasTransactions?: boolean | null;
600
+ hasAssets?: boolean | null;
601
+ hasUTxOs?: boolean | null;
602
+ validFrom?: __.CdsTimestamp | null;
603
+ validTo?: __.CdsTimestamp | null;
604
+ };
605
+ readonly kind: "entity" | "type" | "aspect";
606
+ readonly keys: __.KeysOf<{
607
+ address?: __.Key<Bech32>;
608
+ stakeAddress?: Bech32 | null;
609
+ type?: string | null;
610
+ isScript?: boolean | null;
611
+ totalLovelace?: Lovelace | null;
612
+ transactions?: __.Composition.of.many<AddressTransactions>;
613
+ assets?: __.Composition.of.many<AddressAssets>;
614
+ utxos?: __.Composition.of.many<AddressUTxOs>;
615
+ hasTransactions?: boolean | null;
616
+ hasAssets?: boolean | null;
617
+ hasUTxOs?: boolean | null;
618
+ validFrom?: __.CdsTimestamp | null;
619
+ validTo?: __.CdsTimestamp | null;
620
+ }>;
621
+ readonly elements: __.ElementsOf<{
622
+ address?: __.Key<Bech32>;
623
+ stakeAddress?: Bech32 | null;
624
+ type?: string | null;
625
+ isScript?: boolean | null;
626
+ totalLovelace?: Lovelace | null;
627
+ transactions?: __.Composition.of.many<AddressTransactions>;
628
+ assets?: __.Composition.of.many<AddressAssets>;
629
+ utxos?: __.Composition.of.many<AddressUTxOs>;
630
+ hasTransactions?: boolean | null;
631
+ hasAssets?: boolean | null;
632
+ hasUTxOs?: boolean | null;
633
+ validFrom?: __.CdsTimestamp | null;
634
+ validTo?: __.CdsTimestamp | null;
635
+ }>;
636
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
637
+ } & TBase;
638
+ declare const Address_base: {
639
+ new (...args: any[]): {
640
+ address?: __.Key<Bech32>;
641
+ stakeAddress?: Bech32 | null;
642
+ type?: string | null;
643
+ isScript?: boolean | null;
644
+ totalLovelace?: Lovelace | null;
645
+ transactions?: __.Composition.of.many<AddressTransactions>;
646
+ assets?: __.Composition.of.many<AddressAssets>;
647
+ utxos?: __.Composition.of.many<AddressUTxOs>;
648
+ hasTransactions?: boolean | null;
649
+ hasAssets?: boolean | null;
650
+ hasUTxOs?: boolean | null;
651
+ validFrom?: __.CdsTimestamp | null;
652
+ validTo?: __.CdsTimestamp | null;
653
+ };
654
+ readonly kind: "entity" | "type" | "aspect";
655
+ readonly keys: __.KeysOf<{
656
+ address?: __.Key<Bech32>;
657
+ stakeAddress?: Bech32 | null;
658
+ type?: string | null;
659
+ isScript?: boolean | null;
660
+ totalLovelace?: Lovelace | null;
661
+ transactions?: __.Composition.of.many<AddressTransactions>;
662
+ assets?: __.Composition.of.many<AddressAssets>;
663
+ utxos?: __.Composition.of.many<AddressUTxOs>;
664
+ hasTransactions?: boolean | null;
665
+ hasAssets?: boolean | null;
666
+ hasUTxOs?: boolean | null;
667
+ validFrom?: __.CdsTimestamp | null;
668
+ validTo?: __.CdsTimestamp | null;
669
+ }>;
670
+ readonly elements: __.ElementsOf<{
671
+ address?: __.Key<Bech32>;
672
+ stakeAddress?: Bech32 | null;
673
+ type?: string | null;
674
+ isScript?: boolean | null;
675
+ totalLovelace?: Lovelace | null;
676
+ transactions?: __.Composition.of.many<AddressTransactions>;
677
+ assets?: __.Composition.of.many<AddressAssets>;
678
+ utxos?: __.Composition.of.many<AddressUTxOs>;
679
+ hasTransactions?: boolean | null;
680
+ hasAssets?: boolean | null;
681
+ hasUTxOs?: boolean | null;
682
+ validFrom?: __.CdsTimestamp | null;
683
+ validTo?: __.CdsTimestamp | null;
684
+ }>;
685
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
686
+ } & typeof __.Entity;
687
+ export declare class Address extends Address_base {
688
+ }
689
+ export declare class Addresses extends Array<Address> {
690
+ $count?: number;
691
+ }
692
+ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
693
+ new (...args: any[]): {
694
+ address?: __.Key<__.Association.to<Address>>;
695
+ address_address?: __.Key<Bech32>;
696
+ unit?: __.Key<AssetUnit>;
697
+ asset_quantity?: Lovelace | null;
698
+ asset_policyId?: Blake2b224 | null;
699
+ asset_assetNameHex?: string | null;
700
+ asset_assetName?: string | null;
701
+ asset_fingerprint?: string | null;
702
+ validFrom?: __.CdsTimestamp | null;
703
+ validTo?: __.CdsTimestamp | null;
704
+ };
705
+ readonly kind: "entity" | "type" | "aspect";
706
+ readonly keys: __.KeysOf<{
707
+ address?: __.Key<__.Association.to<Address>>;
708
+ address_address?: __.Key<Bech32>;
709
+ unit?: __.Key<AssetUnit>;
710
+ asset_quantity?: Lovelace | null;
711
+ asset_policyId?: Blake2b224 | null;
712
+ asset_assetNameHex?: string | null;
713
+ asset_assetName?: string | null;
714
+ asset_fingerprint?: string | null;
715
+ validFrom?: __.CdsTimestamp | null;
716
+ validTo?: __.CdsTimestamp | null;
717
+ }>;
718
+ readonly elements: __.ElementsOf<{
719
+ address?: __.Key<__.Association.to<Address>>;
720
+ address_address?: __.Key<Bech32>;
721
+ unit?: __.Key<AssetUnit>;
722
+ asset_quantity?: Lovelace | null;
723
+ asset_policyId?: Blake2b224 | null;
724
+ asset_assetNameHex?: string | null;
725
+ asset_assetName?: string | null;
726
+ asset_fingerprint?: string | null;
727
+ validFrom?: __.CdsTimestamp | null;
728
+ validTo?: __.CdsTimestamp | null;
729
+ }>;
730
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
731
+ } & TBase;
732
+ declare const AddressAsset_base: {
733
+ new (...args: any[]): {
734
+ address?: __.Key<__.Association.to<Address>>;
735
+ address_address?: __.Key<Bech32>;
736
+ unit?: __.Key<AssetUnit>;
737
+ asset_quantity?: Lovelace | null;
738
+ asset_policyId?: Blake2b224 | null;
739
+ asset_assetNameHex?: string | null;
740
+ asset_assetName?: string | null;
741
+ asset_fingerprint?: string | null;
742
+ validFrom?: __.CdsTimestamp | null;
743
+ validTo?: __.CdsTimestamp | null;
744
+ };
745
+ readonly kind: "entity" | "type" | "aspect";
746
+ readonly keys: __.KeysOf<{
747
+ address?: __.Key<__.Association.to<Address>>;
748
+ address_address?: __.Key<Bech32>;
749
+ unit?: __.Key<AssetUnit>;
750
+ asset_quantity?: Lovelace | null;
751
+ asset_policyId?: Blake2b224 | null;
752
+ asset_assetNameHex?: string | null;
753
+ asset_assetName?: string | null;
754
+ asset_fingerprint?: string | null;
755
+ validFrom?: __.CdsTimestamp | null;
756
+ validTo?: __.CdsTimestamp | null;
757
+ }>;
758
+ readonly elements: __.ElementsOf<{
759
+ address?: __.Key<__.Association.to<Address>>;
760
+ address_address?: __.Key<Bech32>;
761
+ unit?: __.Key<AssetUnit>;
762
+ asset_quantity?: Lovelace | null;
763
+ asset_policyId?: Blake2b224 | null;
764
+ asset_assetNameHex?: string | null;
765
+ asset_assetName?: string | null;
766
+ asset_fingerprint?: string | null;
767
+ validFrom?: __.CdsTimestamp | null;
768
+ validTo?: __.CdsTimestamp | null;
769
+ }>;
770
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
771
+ } & typeof __.Entity;
772
+ export declare class AddressAsset extends AddressAsset_base {
773
+ }
774
+ export declare class AddressAssets extends Array<AddressAsset> {
775
+ $count?: number;
776
+ }
777
+ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
778
+ new (...args: any[]): {
779
+ address?: __.Key<__.Association.to<Address>>;
780
+ address_address?: __.Key<Bech32>;
781
+ hash?: __.Key<Blake2b256>;
782
+ index?: __.Key<number>;
783
+ blockHash?: Blake2b256 | null;
784
+ utxodata_dataHash?: Blake2b256 | null;
785
+ utxodata_inlineDatum?: string | null;
786
+ utxodata_referenceScriptHash?: Blake2b256 | null;
787
+ lovelace?: Lovelace | null;
788
+ assets?: __.Composition.of.many<UTxOAssets>;
789
+ hasAssets?: boolean | null;
790
+ validFrom?: __.CdsTimestamp | null;
791
+ validTo?: __.CdsTimestamp | null;
792
+ };
793
+ readonly kind: "entity" | "type" | "aspect";
794
+ readonly keys: __.KeysOf<{
795
+ address?: __.Key<__.Association.to<Address>>;
796
+ address_address?: __.Key<Bech32>;
797
+ hash?: __.Key<Blake2b256>;
798
+ index?: __.Key<number>;
799
+ blockHash?: Blake2b256 | null;
800
+ utxodata_dataHash?: Blake2b256 | null;
801
+ utxodata_inlineDatum?: string | null;
802
+ utxodata_referenceScriptHash?: Blake2b256 | null;
803
+ lovelace?: Lovelace | null;
804
+ assets?: __.Composition.of.many<UTxOAssets>;
805
+ hasAssets?: boolean | null;
806
+ validFrom?: __.CdsTimestamp | null;
807
+ validTo?: __.CdsTimestamp | null;
808
+ }>;
809
+ readonly elements: __.ElementsOf<{
810
+ address?: __.Key<__.Association.to<Address>>;
811
+ address_address?: __.Key<Bech32>;
812
+ hash?: __.Key<Blake2b256>;
813
+ index?: __.Key<number>;
814
+ blockHash?: Blake2b256 | null;
815
+ utxodata_dataHash?: Blake2b256 | null;
816
+ utxodata_inlineDatum?: string | null;
817
+ utxodata_referenceScriptHash?: Blake2b256 | null;
818
+ lovelace?: Lovelace | null;
819
+ assets?: __.Composition.of.many<UTxOAssets>;
820
+ hasAssets?: boolean | null;
821
+ validFrom?: __.CdsTimestamp | null;
822
+ validTo?: __.CdsTimestamp | null;
823
+ }>;
824
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
825
+ } & TBase;
826
+ declare const AddressUTxO_base: {
827
+ new (...args: any[]): {
828
+ address?: __.Key<__.Association.to<Address>>;
829
+ address_address?: __.Key<Bech32>;
830
+ hash?: __.Key<Blake2b256>;
831
+ index?: __.Key<number>;
832
+ blockHash?: Blake2b256 | null;
833
+ utxodata_dataHash?: Blake2b256 | null;
834
+ utxodata_inlineDatum?: string | null;
835
+ utxodata_referenceScriptHash?: Blake2b256 | null;
836
+ lovelace?: Lovelace | null;
837
+ assets?: __.Composition.of.many<UTxOAssets>;
838
+ hasAssets?: boolean | null;
839
+ validFrom?: __.CdsTimestamp | null;
840
+ validTo?: __.CdsTimestamp | null;
841
+ };
842
+ readonly kind: "entity" | "type" | "aspect";
843
+ readonly keys: __.KeysOf<{
844
+ address?: __.Key<__.Association.to<Address>>;
845
+ address_address?: __.Key<Bech32>;
846
+ hash?: __.Key<Blake2b256>;
847
+ index?: __.Key<number>;
848
+ blockHash?: Blake2b256 | null;
849
+ utxodata_dataHash?: Blake2b256 | null;
850
+ utxodata_inlineDatum?: string | null;
851
+ utxodata_referenceScriptHash?: Blake2b256 | null;
852
+ lovelace?: Lovelace | null;
853
+ assets?: __.Composition.of.many<UTxOAssets>;
854
+ hasAssets?: boolean | null;
855
+ validFrom?: __.CdsTimestamp | null;
856
+ validTo?: __.CdsTimestamp | null;
857
+ }>;
858
+ readonly elements: __.ElementsOf<{
859
+ address?: __.Key<__.Association.to<Address>>;
860
+ address_address?: __.Key<Bech32>;
861
+ hash?: __.Key<Blake2b256>;
862
+ index?: __.Key<number>;
863
+ blockHash?: Blake2b256 | null;
864
+ utxodata_dataHash?: Blake2b256 | null;
865
+ utxodata_inlineDatum?: string | null;
866
+ utxodata_referenceScriptHash?: Blake2b256 | null;
867
+ lovelace?: Lovelace | null;
868
+ assets?: __.Composition.of.many<UTxOAssets>;
869
+ hasAssets?: boolean | null;
870
+ validFrom?: __.CdsTimestamp | null;
871
+ validTo?: __.CdsTimestamp | null;
872
+ }>;
873
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
874
+ } & typeof __.Entity;
875
+ export declare class AddressUTxO extends AddressUTxO_base {
876
+ }
877
+ export declare class AddressUTxOs extends Array<AddressUTxO> {
878
+ $count?: number;
879
+ }
880
+ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
881
+ new (...args: any[]): {
882
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
883
+ utxo_hash?: __.Key<Blake2b256>;
884
+ utxo_index?: __.Key<number>;
885
+ utxo_address_address?: __.Key<Bech32>;
886
+ unit?: __.Key<AssetUnit>;
887
+ asset_quantity?: Lovelace | null;
888
+ asset_policyId?: Blake2b224 | null;
889
+ asset_assetNameHex?: string | null;
890
+ asset_assetName?: string | null;
891
+ asset_fingerprint?: string | null;
892
+ validFrom?: __.CdsTimestamp | null;
893
+ validTo?: __.CdsTimestamp | null;
894
+ };
895
+ readonly kind: "entity" | "type" | "aspect";
896
+ readonly keys: __.KeysOf<{
897
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
898
+ utxo_hash?: __.Key<Blake2b256>;
899
+ utxo_index?: __.Key<number>;
900
+ utxo_address_address?: __.Key<Bech32>;
901
+ unit?: __.Key<AssetUnit>;
902
+ asset_quantity?: Lovelace | null;
903
+ asset_policyId?: Blake2b224 | null;
904
+ asset_assetNameHex?: string | null;
905
+ asset_assetName?: string | null;
906
+ asset_fingerprint?: string | null;
907
+ validFrom?: __.CdsTimestamp | null;
908
+ validTo?: __.CdsTimestamp | null;
909
+ }>;
910
+ readonly elements: __.ElementsOf<{
911
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
912
+ utxo_hash?: __.Key<Blake2b256>;
913
+ utxo_index?: __.Key<number>;
914
+ utxo_address_address?: __.Key<Bech32>;
915
+ unit?: __.Key<AssetUnit>;
916
+ asset_quantity?: Lovelace | null;
917
+ asset_policyId?: Blake2b224 | null;
918
+ asset_assetNameHex?: string | null;
919
+ asset_assetName?: string | null;
920
+ asset_fingerprint?: string | null;
921
+ validFrom?: __.CdsTimestamp | null;
922
+ validTo?: __.CdsTimestamp | null;
923
+ }>;
924
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
925
+ } & TBase;
926
+ declare const UTxOAsset_base: {
927
+ new (...args: any[]): {
928
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
929
+ utxo_hash?: __.Key<Blake2b256>;
930
+ utxo_index?: __.Key<number>;
931
+ utxo_address_address?: __.Key<Bech32>;
932
+ unit?: __.Key<AssetUnit>;
933
+ asset_quantity?: Lovelace | null;
934
+ asset_policyId?: Blake2b224 | null;
935
+ asset_assetNameHex?: string | null;
936
+ asset_assetName?: string | null;
937
+ asset_fingerprint?: string | null;
938
+ validFrom?: __.CdsTimestamp | null;
939
+ validTo?: __.CdsTimestamp | null;
940
+ };
941
+ readonly kind: "entity" | "type" | "aspect";
942
+ readonly keys: __.KeysOf<{
943
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
944
+ utxo_hash?: __.Key<Blake2b256>;
945
+ utxo_index?: __.Key<number>;
946
+ utxo_address_address?: __.Key<Bech32>;
947
+ unit?: __.Key<AssetUnit>;
948
+ asset_quantity?: Lovelace | null;
949
+ asset_policyId?: Blake2b224 | null;
950
+ asset_assetNameHex?: string | null;
951
+ asset_assetName?: string | null;
952
+ asset_fingerprint?: string | null;
953
+ validFrom?: __.CdsTimestamp | null;
954
+ validTo?: __.CdsTimestamp | null;
955
+ }>;
956
+ readonly elements: __.ElementsOf<{
957
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
958
+ utxo_hash?: __.Key<Blake2b256>;
959
+ utxo_index?: __.Key<number>;
960
+ utxo_address_address?: __.Key<Bech32>;
961
+ unit?: __.Key<AssetUnit>;
962
+ asset_quantity?: Lovelace | null;
963
+ asset_policyId?: Blake2b224 | null;
964
+ asset_assetNameHex?: string | null;
965
+ asset_assetName?: string | null;
966
+ asset_fingerprint?: string | null;
967
+ validFrom?: __.CdsTimestamp | null;
968
+ validTo?: __.CdsTimestamp | null;
969
+ }>;
970
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
971
+ } & typeof __.Entity;
972
+ export declare class UTxOAsset extends UTxOAsset_base {
973
+ }
974
+ export declare class UTxOAssets extends Array<UTxOAsset> {
975
+ $count?: number;
976
+ }
977
+ export declare function _AccountAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
978
+ new (...args: any[]): {
979
+ stakeAddress?: __.Key<string>;
980
+ active?: boolean | null;
981
+ activeEpoch?: number | null;
982
+ controlledAmount?: Lovelace | null;
983
+ rewardsSum?: Lovelace | null;
984
+ withdrawalsSum?: Lovelace | null;
985
+ reservesSum?: Lovelace | null;
986
+ treasurySum?: Lovelace | null;
987
+ withdrawableAmount?: Lovelace | null;
988
+ poolId?: __.Association.to<Pool> | null;
989
+ poolId_poolId?: string | null;
990
+ drepId?: __.Association.to<Drep> | null;
991
+ drepId_drepId?: string | null;
992
+ Address?: __.Composition.of.many<Addresses>;
993
+ hasAddresses?: boolean | null;
994
+ validFrom?: __.CdsTimestamp | null;
995
+ validTo?: __.CdsTimestamp | null;
996
+ };
997
+ readonly kind: "entity" | "type" | "aspect";
998
+ readonly keys: __.KeysOf<{
999
+ stakeAddress?: __.Key<string>;
1000
+ active?: boolean | null;
1001
+ activeEpoch?: number | null;
1002
+ controlledAmount?: Lovelace | null;
1003
+ rewardsSum?: Lovelace | null;
1004
+ withdrawalsSum?: Lovelace | null;
1005
+ reservesSum?: Lovelace | null;
1006
+ treasurySum?: Lovelace | null;
1007
+ withdrawableAmount?: Lovelace | null;
1008
+ poolId?: __.Association.to<Pool> | null;
1009
+ poolId_poolId?: string | null;
1010
+ drepId?: __.Association.to<Drep> | null;
1011
+ drepId_drepId?: string | null;
1012
+ Address?: __.Composition.of.many<Addresses>;
1013
+ hasAddresses?: boolean | null;
1014
+ validFrom?: __.CdsTimestamp | null;
1015
+ validTo?: __.CdsTimestamp | null;
1016
+ }>;
1017
+ readonly elements: __.ElementsOf<{
1018
+ stakeAddress?: __.Key<string>;
1019
+ active?: boolean | null;
1020
+ activeEpoch?: number | null;
1021
+ controlledAmount?: Lovelace | null;
1022
+ rewardsSum?: Lovelace | null;
1023
+ withdrawalsSum?: Lovelace | null;
1024
+ reservesSum?: Lovelace | null;
1025
+ treasurySum?: Lovelace | null;
1026
+ withdrawableAmount?: Lovelace | null;
1027
+ poolId?: __.Association.to<Pool> | null;
1028
+ poolId_poolId?: string | null;
1029
+ drepId?: __.Association.to<Drep> | null;
1030
+ drepId_drepId?: string | null;
1031
+ Address?: __.Composition.of.many<Addresses>;
1032
+ hasAddresses?: boolean | null;
1033
+ validFrom?: __.CdsTimestamp | null;
1034
+ validTo?: __.CdsTimestamp | null;
1035
+ }>;
1036
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
1037
+ } & TBase;
1038
+ declare const Account_base: {
1039
+ new (...args: any[]): {
1040
+ stakeAddress?: __.Key<string>;
1041
+ active?: boolean | null;
1042
+ activeEpoch?: number | null;
1043
+ controlledAmount?: Lovelace | null;
1044
+ rewardsSum?: Lovelace | null;
1045
+ withdrawalsSum?: Lovelace | null;
1046
+ reservesSum?: Lovelace | null;
1047
+ treasurySum?: Lovelace | null;
1048
+ withdrawableAmount?: Lovelace | null;
1049
+ poolId?: __.Association.to<Pool> | null;
1050
+ poolId_poolId?: string | null;
1051
+ drepId?: __.Association.to<Drep> | null;
1052
+ drepId_drepId?: string | null;
1053
+ Address?: __.Composition.of.many<Addresses>;
1054
+ hasAddresses?: boolean | null;
1055
+ validFrom?: __.CdsTimestamp | null;
1056
+ validTo?: __.CdsTimestamp | null;
1057
+ };
1058
+ readonly kind: "entity" | "type" | "aspect";
1059
+ readonly keys: __.KeysOf<{
1060
+ stakeAddress?: __.Key<string>;
1061
+ active?: boolean | null;
1062
+ activeEpoch?: number | null;
1063
+ controlledAmount?: Lovelace | null;
1064
+ rewardsSum?: Lovelace | null;
1065
+ withdrawalsSum?: Lovelace | null;
1066
+ reservesSum?: Lovelace | null;
1067
+ treasurySum?: Lovelace | null;
1068
+ withdrawableAmount?: Lovelace | null;
1069
+ poolId?: __.Association.to<Pool> | null;
1070
+ poolId_poolId?: string | null;
1071
+ drepId?: __.Association.to<Drep> | null;
1072
+ drepId_drepId?: string | null;
1073
+ Address?: __.Composition.of.many<Addresses>;
1074
+ hasAddresses?: boolean | null;
1075
+ validFrom?: __.CdsTimestamp | null;
1076
+ validTo?: __.CdsTimestamp | null;
1077
+ }>;
1078
+ readonly elements: __.ElementsOf<{
1079
+ stakeAddress?: __.Key<string>;
1080
+ active?: boolean | null;
1081
+ activeEpoch?: number | null;
1082
+ controlledAmount?: Lovelace | null;
1083
+ rewardsSum?: Lovelace | null;
1084
+ withdrawalsSum?: Lovelace | null;
1085
+ reservesSum?: Lovelace | null;
1086
+ treasurySum?: Lovelace | null;
1087
+ withdrawableAmount?: Lovelace | null;
1088
+ poolId?: __.Association.to<Pool> | null;
1089
+ poolId_poolId?: string | null;
1090
+ drepId?: __.Association.to<Drep> | null;
1091
+ drepId_drepId?: string | null;
1092
+ Address?: __.Composition.of.many<Addresses>;
1093
+ hasAddresses?: boolean | null;
1094
+ validFrom?: __.CdsTimestamp | null;
1095
+ validTo?: __.CdsTimestamp | null;
1096
+ }>;
1097
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
1098
+ } & typeof __.Entity;
1099
+ export declare class Account extends Account_base {
1100
+ }
1101
+ export declare class Accounts extends Array<Account> {
1102
+ $count?: number;
1103
+ }
1104
+ export declare function _TransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1105
+ new (...args: any[]): {
1106
+ hash?: __.Key<Blake2b256>;
1107
+ blockHash?: Blake2b256 | null;
1108
+ blockHeight?: number | null;
1109
+ blockTime?: number | null;
1110
+ slot?: number | null;
1111
+ txIndex?: number | null;
1112
+ fee?: Lovelace | null;
1113
+ deposit?: Lovelace | null;
1114
+ size?: number | null;
1115
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1116
+ inputs?: __.Composition.of.many<TransactionInputs>;
1117
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1118
+ hasMetadata?: boolean | null;
1119
+ hasInputs?: boolean | null;
1120
+ hasOutputs?: boolean | null;
1121
+ };
1122
+ readonly kind: "entity" | "type" | "aspect";
1123
+ readonly keys: __.KeysOf<{
1124
+ hash?: __.Key<Blake2b256>;
1125
+ blockHash?: Blake2b256 | null;
1126
+ blockHeight?: number | null;
1127
+ blockTime?: number | null;
1128
+ slot?: number | null;
1129
+ txIndex?: number | null;
1130
+ fee?: Lovelace | null;
1131
+ deposit?: Lovelace | null;
1132
+ size?: number | null;
1133
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1134
+ inputs?: __.Composition.of.many<TransactionInputs>;
1135
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1136
+ hasMetadata?: boolean | null;
1137
+ hasInputs?: boolean | null;
1138
+ hasOutputs?: boolean | null;
1139
+ }>;
1140
+ readonly elements: __.ElementsOf<{
1141
+ hash?: __.Key<Blake2b256>;
1142
+ blockHash?: Blake2b256 | null;
1143
+ blockHeight?: number | null;
1144
+ blockTime?: number | null;
1145
+ slot?: number | null;
1146
+ txIndex?: number | null;
1147
+ fee?: Lovelace | null;
1148
+ deposit?: Lovelace | null;
1149
+ size?: number | null;
1150
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1151
+ inputs?: __.Composition.of.many<TransactionInputs>;
1152
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1153
+ hasMetadata?: boolean | null;
1154
+ hasInputs?: boolean | null;
1155
+ hasOutputs?: boolean | null;
1156
+ }>;
1157
+ readonly actions: globalThis.Record<never, never>;
1158
+ } & TBase;
1159
+ declare const Transaction_base: {
1160
+ new (...args: any[]): {
1161
+ hash?: __.Key<Blake2b256>;
1162
+ blockHash?: Blake2b256 | null;
1163
+ blockHeight?: number | null;
1164
+ blockTime?: number | null;
1165
+ slot?: number | null;
1166
+ txIndex?: number | null;
1167
+ fee?: Lovelace | null;
1168
+ deposit?: Lovelace | null;
1169
+ size?: number | null;
1170
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1171
+ inputs?: __.Composition.of.many<TransactionInputs>;
1172
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1173
+ hasMetadata?: boolean | null;
1174
+ hasInputs?: boolean | null;
1175
+ hasOutputs?: boolean | null;
1176
+ };
1177
+ readonly kind: "entity" | "type" | "aspect";
1178
+ readonly keys: __.KeysOf<{
1179
+ hash?: __.Key<Blake2b256>;
1180
+ blockHash?: Blake2b256 | null;
1181
+ blockHeight?: number | null;
1182
+ blockTime?: number | null;
1183
+ slot?: number | null;
1184
+ txIndex?: number | null;
1185
+ fee?: Lovelace | null;
1186
+ deposit?: Lovelace | null;
1187
+ size?: number | null;
1188
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1189
+ inputs?: __.Composition.of.many<TransactionInputs>;
1190
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1191
+ hasMetadata?: boolean | null;
1192
+ hasInputs?: boolean | null;
1193
+ hasOutputs?: boolean | null;
1194
+ }>;
1195
+ readonly elements: __.ElementsOf<{
1196
+ hash?: __.Key<Blake2b256>;
1197
+ blockHash?: Blake2b256 | null;
1198
+ blockHeight?: number | null;
1199
+ blockTime?: number | null;
1200
+ slot?: number | null;
1201
+ txIndex?: number | null;
1202
+ fee?: Lovelace | null;
1203
+ deposit?: Lovelace | null;
1204
+ size?: number | null;
1205
+ metadata?: __.Composition.of.many<TransactionMetadata_>;
1206
+ inputs?: __.Composition.of.many<TransactionInputs>;
1207
+ outputs?: __.Composition.of.many<TransactionOutputs>;
1208
+ hasMetadata?: boolean | null;
1209
+ hasInputs?: boolean | null;
1210
+ hasOutputs?: boolean | null;
1211
+ }>;
1212
+ readonly actions: globalThis.Record<never, never>;
1213
+ } & typeof __.Entity;
1214
+ export declare class Transaction extends Transaction_base {
1215
+ }
1216
+ export declare class Transactions extends Array<Transaction> {
1217
+ $count?: number;
1218
+ }
1219
+ export declare function _TransactionInputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1220
+ new (...args: any[]): {
1221
+ tx?: __.Key<__.Association.to<Transaction>>;
1222
+ tx_hash?: __.Key<Blake2b256>;
1223
+ inputIndex?: __.Key<number>;
1224
+ address?: __.Association.to<Address> | null;
1225
+ address_address?: Bech32 | null;
1226
+ utxoData_dataHash?: Blake2b256 | null;
1227
+ utxoData_inlineDatum?: string | null;
1228
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1229
+ isCollateral?: boolean | null;
1230
+ isReference?: boolean | null;
1231
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1232
+ hasAddresses?: boolean | null;
1233
+ hasAssets?: boolean | null;
1234
+ };
1235
+ readonly kind: "entity" | "type" | "aspect";
1236
+ readonly keys: __.KeysOf<{
1237
+ tx?: __.Key<__.Association.to<Transaction>>;
1238
+ tx_hash?: __.Key<Blake2b256>;
1239
+ inputIndex?: __.Key<number>;
1240
+ address?: __.Association.to<Address> | null;
1241
+ address_address?: Bech32 | null;
1242
+ utxoData_dataHash?: Blake2b256 | null;
1243
+ utxoData_inlineDatum?: string | null;
1244
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1245
+ isCollateral?: boolean | null;
1246
+ isReference?: boolean | null;
1247
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1248
+ hasAddresses?: boolean | null;
1249
+ hasAssets?: boolean | null;
1250
+ }>;
1251
+ readonly elements: __.ElementsOf<{
1252
+ tx?: __.Key<__.Association.to<Transaction>>;
1253
+ tx_hash?: __.Key<Blake2b256>;
1254
+ inputIndex?: __.Key<number>;
1255
+ address?: __.Association.to<Address> | null;
1256
+ address_address?: Bech32 | null;
1257
+ utxoData_dataHash?: Blake2b256 | null;
1258
+ utxoData_inlineDatum?: string | null;
1259
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1260
+ isCollateral?: boolean | null;
1261
+ isReference?: boolean | null;
1262
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1263
+ hasAddresses?: boolean | null;
1264
+ hasAssets?: boolean | null;
1265
+ }>;
1266
+ readonly actions: globalThis.Record<never, never>;
1267
+ } & TBase;
1268
+ declare const TransactionInput_base: {
1269
+ new (...args: any[]): {
1270
+ tx?: __.Key<__.Association.to<Transaction>>;
1271
+ tx_hash?: __.Key<Blake2b256>;
1272
+ inputIndex?: __.Key<number>;
1273
+ address?: __.Association.to<Address> | null;
1274
+ address_address?: Bech32 | null;
1275
+ utxoData_dataHash?: Blake2b256 | null;
1276
+ utxoData_inlineDatum?: string | null;
1277
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1278
+ isCollateral?: boolean | null;
1279
+ isReference?: boolean | null;
1280
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1281
+ hasAddresses?: boolean | null;
1282
+ hasAssets?: boolean | null;
1283
+ };
1284
+ readonly kind: "entity" | "type" | "aspect";
1285
+ readonly keys: __.KeysOf<{
1286
+ tx?: __.Key<__.Association.to<Transaction>>;
1287
+ tx_hash?: __.Key<Blake2b256>;
1288
+ inputIndex?: __.Key<number>;
1289
+ address?: __.Association.to<Address> | null;
1290
+ address_address?: Bech32 | null;
1291
+ utxoData_dataHash?: Blake2b256 | null;
1292
+ utxoData_inlineDatum?: string | null;
1293
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1294
+ isCollateral?: boolean | null;
1295
+ isReference?: boolean | null;
1296
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1297
+ hasAddresses?: boolean | null;
1298
+ hasAssets?: boolean | null;
1299
+ }>;
1300
+ readonly elements: __.ElementsOf<{
1301
+ tx?: __.Key<__.Association.to<Transaction>>;
1302
+ tx_hash?: __.Key<Blake2b256>;
1303
+ inputIndex?: __.Key<number>;
1304
+ address?: __.Association.to<Address> | null;
1305
+ address_address?: Bech32 | null;
1306
+ utxoData_dataHash?: Blake2b256 | null;
1307
+ utxoData_inlineDatum?: string | null;
1308
+ utxoData_referenceScriptHash?: Blake2b256 | null;
1309
+ isCollateral?: boolean | null;
1310
+ isReference?: boolean | null;
1311
+ assets?: __.Composition.of.many<TransactionInputAssets>;
1312
+ hasAddresses?: boolean | null;
1313
+ hasAssets?: boolean | null;
1314
+ }>;
1315
+ readonly actions: globalThis.Record<never, never>;
1316
+ } & typeof __.Entity;
1317
+ export declare class TransactionInput extends TransactionInput_base {
1318
+ }
1319
+ export declare class TransactionInputs extends Array<TransactionInput> {
1320
+ $count?: number;
1321
+ }
1322
+ export declare function _TransactionInputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1323
+ new (...args: any[]): {
1324
+ input?: __.Key<__.Association.to<TransactionInput>>;
1325
+ input_inputIndex?: __.Key<number>;
1326
+ input_tx_hash?: __.Key<Blake2b256>;
1327
+ unit?: __.Key<AssetUnit>;
1328
+ asset_quantity?: Lovelace | null;
1329
+ asset_policyId?: Blake2b224 | null;
1330
+ asset_assetNameHex?: string | null;
1331
+ asset_assetName?: string | null;
1332
+ asset_fingerprint?: string | null;
1333
+ };
1334
+ readonly kind: "entity" | "type" | "aspect";
1335
+ readonly keys: __.KeysOf<{
1336
+ input?: __.Key<__.Association.to<TransactionInput>>;
1337
+ input_inputIndex?: __.Key<number>;
1338
+ input_tx_hash?: __.Key<Blake2b256>;
1339
+ unit?: __.Key<AssetUnit>;
1340
+ asset_quantity?: Lovelace | null;
1341
+ asset_policyId?: Blake2b224 | null;
1342
+ asset_assetNameHex?: string | null;
1343
+ asset_assetName?: string | null;
1344
+ asset_fingerprint?: string | null;
1345
+ }>;
1346
+ readonly elements: __.ElementsOf<{
1347
+ input?: __.Key<__.Association.to<TransactionInput>>;
1348
+ input_inputIndex?: __.Key<number>;
1349
+ input_tx_hash?: __.Key<Blake2b256>;
1350
+ unit?: __.Key<AssetUnit>;
1351
+ asset_quantity?: Lovelace | null;
1352
+ asset_policyId?: Blake2b224 | null;
1353
+ asset_assetNameHex?: string | null;
1354
+ asset_assetName?: string | null;
1355
+ asset_fingerprint?: string | null;
1356
+ }>;
1357
+ readonly actions: globalThis.Record<never, never>;
1358
+ } & TBase;
1359
+ declare const TransactionInputAsset_base: {
1360
+ new (...args: any[]): {
1361
+ input?: __.Key<__.Association.to<TransactionInput>>;
1362
+ input_inputIndex?: __.Key<number>;
1363
+ input_tx_hash?: __.Key<Blake2b256>;
1364
+ unit?: __.Key<AssetUnit>;
1365
+ asset_quantity?: Lovelace | null;
1366
+ asset_policyId?: Blake2b224 | null;
1367
+ asset_assetNameHex?: string | null;
1368
+ asset_assetName?: string | null;
1369
+ asset_fingerprint?: string | null;
1370
+ };
1371
+ readonly kind: "entity" | "type" | "aspect";
1372
+ readonly keys: __.KeysOf<{
1373
+ input?: __.Key<__.Association.to<TransactionInput>>;
1374
+ input_inputIndex?: __.Key<number>;
1375
+ input_tx_hash?: __.Key<Blake2b256>;
1376
+ unit?: __.Key<AssetUnit>;
1377
+ asset_quantity?: Lovelace | null;
1378
+ asset_policyId?: Blake2b224 | null;
1379
+ asset_assetNameHex?: string | null;
1380
+ asset_assetName?: string | null;
1381
+ asset_fingerprint?: string | null;
1382
+ }>;
1383
+ readonly elements: __.ElementsOf<{
1384
+ input?: __.Key<__.Association.to<TransactionInput>>;
1385
+ input_inputIndex?: __.Key<number>;
1386
+ input_tx_hash?: __.Key<Blake2b256>;
1387
+ unit?: __.Key<AssetUnit>;
1388
+ asset_quantity?: Lovelace | null;
1389
+ asset_policyId?: Blake2b224 | null;
1390
+ asset_assetNameHex?: string | null;
1391
+ asset_assetName?: string | null;
1392
+ asset_fingerprint?: string | null;
1393
+ }>;
1394
+ readonly actions: globalThis.Record<never, never>;
1395
+ } & typeof __.Entity;
1396
+ export declare class TransactionInputAsset extends TransactionInputAsset_base {
1397
+ }
1398
+ export declare class TransactionInputAssets extends Array<TransactionInputAsset> {
1399
+ $count?: number;
1400
+ }
1401
+ export declare function _TransactionOutputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1402
+ new (...args: any[]): {
1403
+ tx?: __.Key<__.Association.to<Transaction>>;
1404
+ tx_hash?: __.Key<Blake2b256>;
1405
+ outputIndex?: __.Key<number>;
1406
+ address?: __.Association.to<Address> | null;
1407
+ address_address?: Bech32 | null;
1408
+ utxo_dataHash?: Blake2b256 | null;
1409
+ utxo_inlineDatum?: string | null;
1410
+ utxo_referenceScriptHash?: Blake2b256 | null;
1411
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1412
+ hasAddresses?: boolean | null;
1413
+ hasAssets?: boolean | null;
1414
+ };
1415
+ readonly kind: "entity" | "type" | "aspect";
1416
+ readonly keys: __.KeysOf<{
1417
+ tx?: __.Key<__.Association.to<Transaction>>;
1418
+ tx_hash?: __.Key<Blake2b256>;
1419
+ outputIndex?: __.Key<number>;
1420
+ address?: __.Association.to<Address> | null;
1421
+ address_address?: Bech32 | null;
1422
+ utxo_dataHash?: Blake2b256 | null;
1423
+ utxo_inlineDatum?: string | null;
1424
+ utxo_referenceScriptHash?: Blake2b256 | null;
1425
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1426
+ hasAddresses?: boolean | null;
1427
+ hasAssets?: boolean | null;
1428
+ }>;
1429
+ readonly elements: __.ElementsOf<{
1430
+ tx?: __.Key<__.Association.to<Transaction>>;
1431
+ tx_hash?: __.Key<Blake2b256>;
1432
+ outputIndex?: __.Key<number>;
1433
+ address?: __.Association.to<Address> | null;
1434
+ address_address?: Bech32 | null;
1435
+ utxo_dataHash?: Blake2b256 | null;
1436
+ utxo_inlineDatum?: string | null;
1437
+ utxo_referenceScriptHash?: Blake2b256 | null;
1438
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1439
+ hasAddresses?: boolean | null;
1440
+ hasAssets?: boolean | null;
1441
+ }>;
1442
+ readonly actions: globalThis.Record<never, never>;
1443
+ } & TBase;
1444
+ declare const TransactionOutput_base: {
1445
+ new (...args: any[]): {
1446
+ tx?: __.Key<__.Association.to<Transaction>>;
1447
+ tx_hash?: __.Key<Blake2b256>;
1448
+ outputIndex?: __.Key<number>;
1449
+ address?: __.Association.to<Address> | null;
1450
+ address_address?: Bech32 | null;
1451
+ utxo_dataHash?: Blake2b256 | null;
1452
+ utxo_inlineDatum?: string | null;
1453
+ utxo_referenceScriptHash?: Blake2b256 | null;
1454
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1455
+ hasAddresses?: boolean | null;
1456
+ hasAssets?: boolean | null;
1457
+ };
1458
+ readonly kind: "entity" | "type" | "aspect";
1459
+ readonly keys: __.KeysOf<{
1460
+ tx?: __.Key<__.Association.to<Transaction>>;
1461
+ tx_hash?: __.Key<Blake2b256>;
1462
+ outputIndex?: __.Key<number>;
1463
+ address?: __.Association.to<Address> | null;
1464
+ address_address?: Bech32 | null;
1465
+ utxo_dataHash?: Blake2b256 | null;
1466
+ utxo_inlineDatum?: string | null;
1467
+ utxo_referenceScriptHash?: Blake2b256 | null;
1468
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1469
+ hasAddresses?: boolean | null;
1470
+ hasAssets?: boolean | null;
1471
+ }>;
1472
+ readonly elements: __.ElementsOf<{
1473
+ tx?: __.Key<__.Association.to<Transaction>>;
1474
+ tx_hash?: __.Key<Blake2b256>;
1475
+ outputIndex?: __.Key<number>;
1476
+ address?: __.Association.to<Address> | null;
1477
+ address_address?: Bech32 | null;
1478
+ utxo_dataHash?: Blake2b256 | null;
1479
+ utxo_inlineDatum?: string | null;
1480
+ utxo_referenceScriptHash?: Blake2b256 | null;
1481
+ assets?: __.Composition.of.many<TransactionOutputAssets>;
1482
+ hasAddresses?: boolean | null;
1483
+ hasAssets?: boolean | null;
1484
+ }>;
1485
+ readonly actions: globalThis.Record<never, never>;
1486
+ } & typeof __.Entity;
1487
+ export declare class TransactionOutput extends TransactionOutput_base {
1488
+ }
1489
+ export declare class TransactionOutputs extends Array<TransactionOutput> {
1490
+ $count?: number;
1491
+ }
1492
+ export declare function _TransactionOutputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1493
+ new (...args: any[]): {
1494
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1495
+ output_outputIndex?: __.Key<number>;
1496
+ output_tx_hash?: __.Key<Blake2b256>;
1497
+ unit?: __.Key<AssetUnit>;
1498
+ asset_quantity?: Lovelace | null;
1499
+ asset_policyId?: Blake2b224 | null;
1500
+ asset_assetNameHex?: string | null;
1501
+ asset_assetName?: string | null;
1502
+ asset_fingerprint?: string | null;
1503
+ };
1504
+ readonly kind: "entity" | "type" | "aspect";
1505
+ readonly keys: __.KeysOf<{
1506
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1507
+ output_outputIndex?: __.Key<number>;
1508
+ output_tx_hash?: __.Key<Blake2b256>;
1509
+ unit?: __.Key<AssetUnit>;
1510
+ asset_quantity?: Lovelace | null;
1511
+ asset_policyId?: Blake2b224 | null;
1512
+ asset_assetNameHex?: string | null;
1513
+ asset_assetName?: string | null;
1514
+ asset_fingerprint?: string | null;
1515
+ }>;
1516
+ readonly elements: __.ElementsOf<{
1517
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1518
+ output_outputIndex?: __.Key<number>;
1519
+ output_tx_hash?: __.Key<Blake2b256>;
1520
+ unit?: __.Key<AssetUnit>;
1521
+ asset_quantity?: Lovelace | null;
1522
+ asset_policyId?: Blake2b224 | null;
1523
+ asset_assetNameHex?: string | null;
1524
+ asset_assetName?: string | null;
1525
+ asset_fingerprint?: string | null;
1526
+ }>;
1527
+ readonly actions: globalThis.Record<never, never>;
1528
+ } & TBase;
1529
+ declare const TransactionOutputAsset_base: {
1530
+ new (...args: any[]): {
1531
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1532
+ output_outputIndex?: __.Key<number>;
1533
+ output_tx_hash?: __.Key<Blake2b256>;
1534
+ unit?: __.Key<AssetUnit>;
1535
+ asset_quantity?: Lovelace | null;
1536
+ asset_policyId?: Blake2b224 | null;
1537
+ asset_assetNameHex?: string | null;
1538
+ asset_assetName?: string | null;
1539
+ asset_fingerprint?: string | null;
1540
+ };
1541
+ readonly kind: "entity" | "type" | "aspect";
1542
+ readonly keys: __.KeysOf<{
1543
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1544
+ output_outputIndex?: __.Key<number>;
1545
+ output_tx_hash?: __.Key<Blake2b256>;
1546
+ unit?: __.Key<AssetUnit>;
1547
+ asset_quantity?: Lovelace | null;
1548
+ asset_policyId?: Blake2b224 | null;
1549
+ asset_assetNameHex?: string | null;
1550
+ asset_assetName?: string | null;
1551
+ asset_fingerprint?: string | null;
1552
+ }>;
1553
+ readonly elements: __.ElementsOf<{
1554
+ output?: __.Key<__.Association.to<TransactionOutput>>;
1555
+ output_outputIndex?: __.Key<number>;
1556
+ output_tx_hash?: __.Key<Blake2b256>;
1557
+ unit?: __.Key<AssetUnit>;
1558
+ asset_quantity?: Lovelace | null;
1559
+ asset_policyId?: Blake2b224 | null;
1560
+ asset_assetNameHex?: string | null;
1561
+ asset_assetName?: string | null;
1562
+ asset_fingerprint?: string | null;
1563
+ }>;
1564
+ readonly actions: globalThis.Record<never, never>;
1565
+ } & typeof __.Entity;
1566
+ export declare class TransactionOutputAsset extends TransactionOutputAsset_base {
1567
+ }
1568
+ export declare class TransactionOutputAssets extends Array<TransactionOutputAsset> {
1569
+ $count?: number;
1570
+ }
1571
+ export declare function _TransactionMetadataAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1572
+ new (...args: any[]): {
1573
+ id?: __.Key<number>;
1574
+ tx?: __.Key<__.Association.to<Transaction>>;
1575
+ tx_hash?: __.Key<Blake2b256>;
1576
+ label?: string | null;
1577
+ payload?: string | null;
1578
+ };
1579
+ readonly kind: "entity" | "type" | "aspect";
1580
+ readonly keys: __.KeysOf<{
1581
+ id?: __.Key<number>;
1582
+ tx?: __.Key<__.Association.to<Transaction>>;
1583
+ tx_hash?: __.Key<Blake2b256>;
1584
+ label?: string | null;
1585
+ payload?: string | null;
1586
+ }>;
1587
+ readonly elements: __.ElementsOf<{
1588
+ id?: __.Key<number>;
1589
+ tx?: __.Key<__.Association.to<Transaction>>;
1590
+ tx_hash?: __.Key<Blake2b256>;
1591
+ label?: string | null;
1592
+ payload?: string | null;
1593
+ }>;
1594
+ readonly actions: globalThis.Record<never, never>;
1595
+ } & TBase;
1596
+ declare const TransactionMetadata_base: {
1597
+ new (...args: any[]): {
1598
+ id?: __.Key<number>;
1599
+ tx?: __.Key<__.Association.to<Transaction>>;
1600
+ tx_hash?: __.Key<Blake2b256>;
1601
+ label?: string | null;
1602
+ payload?: string | null;
1603
+ };
1604
+ readonly kind: "entity" | "type" | "aspect";
1605
+ readonly keys: __.KeysOf<{
1606
+ id?: __.Key<number>;
1607
+ tx?: __.Key<__.Association.to<Transaction>>;
1608
+ tx_hash?: __.Key<Blake2b256>;
1609
+ label?: string | null;
1610
+ payload?: string | null;
1611
+ }>;
1612
+ readonly elements: __.ElementsOf<{
1613
+ id?: __.Key<number>;
1614
+ tx?: __.Key<__.Association.to<Transaction>>;
1615
+ tx_hash?: __.Key<Blake2b256>;
1616
+ label?: string | null;
1617
+ payload?: string | null;
1618
+ }>;
1619
+ readonly actions: globalThis.Record<never, never>;
1620
+ } & typeof __.Entity;
1621
+ export declare class TransactionMetadata extends TransactionMetadata_base {
1622
+ }
1623
+ export declare class TransactionMetadata_ extends Array<TransactionMetadata> {
1624
+ $count?: number;
1625
+ }
1626
+ export declare function _LedgerProtocolParameterAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1627
+ new (...args: any[]): {
1628
+ network?: __.Key<string>;
1629
+ epoch?: __.Key<number>;
1630
+ minFeeA?: number | null;
1631
+ minFeeB?: number | null;
1632
+ maxBlockSize?: number | null;
1633
+ maxTxSize?: number | null;
1634
+ maxBlockHeaderSize?: number | null;
1635
+ keyDeposit?: string | null;
1636
+ poolDeposit?: string | null;
1637
+ eMax?: number | null;
1638
+ nOpt?: number | null;
1639
+ a0?: number | null;
1640
+ rho?: number | null;
1641
+ tau?: number | null;
1642
+ minPoolCost?: string | null;
1643
+ decentralisationParam?: number | null;
1644
+ extraEntropy?: string | null;
1645
+ protocolMajorVer?: number | null;
1646
+ protocolMinorVer?: number | null;
1647
+ minUtxo?: string | null;
1648
+ nonce?: string | null;
1649
+ costModels?: string | null;
1650
+ priceMem?: number | null;
1651
+ priceStep?: number | null;
1652
+ maxTxExMem?: string | null;
1653
+ maxTxExSteps?: string | null;
1654
+ maxBlockExMem?: string | null;
1655
+ maxBlockExSteps?: string | null;
1656
+ maxValSize?: string | null;
1657
+ collateralPercent?: number | null;
1658
+ maxCollateralInputs?: number | null;
1659
+ coinsPerUtxoSize?: string | null;
1660
+ coinsPerUtxoWord?: string | null;
1661
+ fetchedAt?: __.CdsTimestamp | null;
1662
+ source?: string | null;
1663
+ };
1664
+ readonly kind: "entity" | "type" | "aspect";
1665
+ readonly keys: __.KeysOf<{
1666
+ network?: __.Key<string>;
1667
+ epoch?: __.Key<number>;
1668
+ minFeeA?: number | null;
1669
+ minFeeB?: number | null;
1670
+ maxBlockSize?: number | null;
1671
+ maxTxSize?: number | null;
1672
+ maxBlockHeaderSize?: number | null;
1673
+ keyDeposit?: string | null;
1674
+ poolDeposit?: string | null;
1675
+ eMax?: number | null;
1676
+ nOpt?: number | null;
1677
+ a0?: number | null;
1678
+ rho?: number | null;
1679
+ tau?: number | null;
1680
+ minPoolCost?: string | null;
1681
+ decentralisationParam?: number | null;
1682
+ extraEntropy?: string | null;
1683
+ protocolMajorVer?: number | null;
1684
+ protocolMinorVer?: number | null;
1685
+ minUtxo?: string | null;
1686
+ nonce?: string | null;
1687
+ costModels?: string | null;
1688
+ priceMem?: number | null;
1689
+ priceStep?: number | null;
1690
+ maxTxExMem?: string | null;
1691
+ maxTxExSteps?: string | null;
1692
+ maxBlockExMem?: string | null;
1693
+ maxBlockExSteps?: string | null;
1694
+ maxValSize?: string | null;
1695
+ collateralPercent?: number | null;
1696
+ maxCollateralInputs?: number | null;
1697
+ coinsPerUtxoSize?: string | null;
1698
+ coinsPerUtxoWord?: string | null;
1699
+ fetchedAt?: __.CdsTimestamp | null;
1700
+ source?: string | null;
1701
+ }>;
1702
+ readonly elements: __.ElementsOf<{
1703
+ network?: __.Key<string>;
1704
+ epoch?: __.Key<number>;
1705
+ minFeeA?: number | null;
1706
+ minFeeB?: number | null;
1707
+ maxBlockSize?: number | null;
1708
+ maxTxSize?: number | null;
1709
+ maxBlockHeaderSize?: number | null;
1710
+ keyDeposit?: string | null;
1711
+ poolDeposit?: string | null;
1712
+ eMax?: number | null;
1713
+ nOpt?: number | null;
1714
+ a0?: number | null;
1715
+ rho?: number | null;
1716
+ tau?: number | null;
1717
+ minPoolCost?: string | null;
1718
+ decentralisationParam?: number | null;
1719
+ extraEntropy?: string | null;
1720
+ protocolMajorVer?: number | null;
1721
+ protocolMinorVer?: number | null;
1722
+ minUtxo?: string | null;
1723
+ nonce?: string | null;
1724
+ costModels?: string | null;
1725
+ priceMem?: number | null;
1726
+ priceStep?: number | null;
1727
+ maxTxExMem?: string | null;
1728
+ maxTxExSteps?: string | null;
1729
+ maxBlockExMem?: string | null;
1730
+ maxBlockExSteps?: string | null;
1731
+ maxValSize?: string | null;
1732
+ collateralPercent?: number | null;
1733
+ maxCollateralInputs?: number | null;
1734
+ coinsPerUtxoSize?: string | null;
1735
+ coinsPerUtxoWord?: string | null;
1736
+ fetchedAt?: __.CdsTimestamp | null;
1737
+ source?: string | null;
1738
+ }>;
1739
+ readonly actions: globalThis.Record<never, never>;
1740
+ } & TBase;
1741
+ declare const LedgerProtocolParameter_base: {
1742
+ new (...args: any[]): {
1743
+ network?: __.Key<string>;
1744
+ epoch?: __.Key<number>;
1745
+ minFeeA?: number | null;
1746
+ minFeeB?: number | null;
1747
+ maxBlockSize?: number | null;
1748
+ maxTxSize?: number | null;
1749
+ maxBlockHeaderSize?: number | null;
1750
+ keyDeposit?: string | null;
1751
+ poolDeposit?: string | null;
1752
+ eMax?: number | null;
1753
+ nOpt?: number | null;
1754
+ a0?: number | null;
1755
+ rho?: number | null;
1756
+ tau?: number | null;
1757
+ minPoolCost?: string | null;
1758
+ decentralisationParam?: number | null;
1759
+ extraEntropy?: string | null;
1760
+ protocolMajorVer?: number | null;
1761
+ protocolMinorVer?: number | null;
1762
+ minUtxo?: string | null;
1763
+ nonce?: string | null;
1764
+ costModels?: string | null;
1765
+ priceMem?: number | null;
1766
+ priceStep?: number | null;
1767
+ maxTxExMem?: string | null;
1768
+ maxTxExSteps?: string | null;
1769
+ maxBlockExMem?: string | null;
1770
+ maxBlockExSteps?: string | null;
1771
+ maxValSize?: string | null;
1772
+ collateralPercent?: number | null;
1773
+ maxCollateralInputs?: number | null;
1774
+ coinsPerUtxoSize?: string | null;
1775
+ coinsPerUtxoWord?: string | null;
1776
+ fetchedAt?: __.CdsTimestamp | null;
1777
+ source?: string | null;
1778
+ };
1779
+ readonly kind: "entity" | "type" | "aspect";
1780
+ readonly keys: __.KeysOf<{
1781
+ network?: __.Key<string>;
1782
+ epoch?: __.Key<number>;
1783
+ minFeeA?: number | null;
1784
+ minFeeB?: number | null;
1785
+ maxBlockSize?: number | null;
1786
+ maxTxSize?: number | null;
1787
+ maxBlockHeaderSize?: number | null;
1788
+ keyDeposit?: string | null;
1789
+ poolDeposit?: string | null;
1790
+ eMax?: number | null;
1791
+ nOpt?: number | null;
1792
+ a0?: number | null;
1793
+ rho?: number | null;
1794
+ tau?: number | null;
1795
+ minPoolCost?: string | null;
1796
+ decentralisationParam?: number | null;
1797
+ extraEntropy?: string | null;
1798
+ protocolMajorVer?: number | null;
1799
+ protocolMinorVer?: number | null;
1800
+ minUtxo?: string | null;
1801
+ nonce?: string | null;
1802
+ costModels?: string | null;
1803
+ priceMem?: number | null;
1804
+ priceStep?: number | null;
1805
+ maxTxExMem?: string | null;
1806
+ maxTxExSteps?: string | null;
1807
+ maxBlockExMem?: string | null;
1808
+ maxBlockExSteps?: string | null;
1809
+ maxValSize?: string | null;
1810
+ collateralPercent?: number | null;
1811
+ maxCollateralInputs?: number | null;
1812
+ coinsPerUtxoSize?: string | null;
1813
+ coinsPerUtxoWord?: string | null;
1814
+ fetchedAt?: __.CdsTimestamp | null;
1815
+ source?: string | null;
1816
+ }>;
1817
+ readonly elements: __.ElementsOf<{
1818
+ network?: __.Key<string>;
1819
+ epoch?: __.Key<number>;
1820
+ minFeeA?: number | null;
1821
+ minFeeB?: number | null;
1822
+ maxBlockSize?: number | null;
1823
+ maxTxSize?: number | null;
1824
+ maxBlockHeaderSize?: number | null;
1825
+ keyDeposit?: string | null;
1826
+ poolDeposit?: string | null;
1827
+ eMax?: number | null;
1828
+ nOpt?: number | null;
1829
+ a0?: number | null;
1830
+ rho?: number | null;
1831
+ tau?: number | null;
1832
+ minPoolCost?: string | null;
1833
+ decentralisationParam?: number | null;
1834
+ extraEntropy?: string | null;
1835
+ protocolMajorVer?: number | null;
1836
+ protocolMinorVer?: number | null;
1837
+ minUtxo?: string | null;
1838
+ nonce?: string | null;
1839
+ costModels?: string | null;
1840
+ priceMem?: number | null;
1841
+ priceStep?: number | null;
1842
+ maxTxExMem?: string | null;
1843
+ maxTxExSteps?: string | null;
1844
+ maxBlockExMem?: string | null;
1845
+ maxBlockExSteps?: string | null;
1846
+ maxValSize?: string | null;
1847
+ collateralPercent?: number | null;
1848
+ maxCollateralInputs?: number | null;
1849
+ coinsPerUtxoSize?: string | null;
1850
+ coinsPerUtxoWord?: string | null;
1851
+ fetchedAt?: __.CdsTimestamp | null;
1852
+ source?: string | null;
1853
+ }>;
1854
+ readonly actions: globalThis.Record<never, never>;
1855
+ } & typeof __.Entity;
1856
+ export declare class LedgerProtocolParameter extends LedgerProtocolParameter_base {
1857
+ }
1858
+ export declare class LedgerProtocolParameters extends Array<LedgerProtocolParameter> {
1859
+ $count?: number;
1860
+ }
1861
+ export declare function _TransactionBuildAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1862
+ new (...args: any[]): {
1863
+ id?: __.Key<string>;
1864
+ network?: string | null;
1865
+ builderEngine?: string | null;
1866
+ senderAddress?: Bech32 | null;
1867
+ changeAddress?: Bech32 | null;
1868
+ unsignedTxCbor?: string | null;
1869
+ txBodyHash?: Blake2b256 | null;
1870
+ fee?: Lovelace | null;
1871
+ size?: number | null;
1872
+ createdAt?: number | null;
1873
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1874
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1875
+ submission?: __.Association.to<TransactionSubmission> | null;
1876
+ hasInputs?: boolean | null;
1877
+ hasOutputs?: boolean | null;
1878
+ wasSubmitted?: boolean | null;
1879
+ validFrom?: __.CdsTimestamp | null;
1880
+ validTo?: __.CdsTimestamp | null;
1881
+ };
1882
+ readonly kind: "entity" | "type" | "aspect";
1883
+ readonly keys: __.KeysOf<{
1884
+ id?: __.Key<string>;
1885
+ network?: string | null;
1886
+ builderEngine?: string | null;
1887
+ senderAddress?: Bech32 | null;
1888
+ changeAddress?: Bech32 | null;
1889
+ unsignedTxCbor?: string | null;
1890
+ txBodyHash?: Blake2b256 | null;
1891
+ fee?: Lovelace | null;
1892
+ size?: number | null;
1893
+ createdAt?: number | null;
1894
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1895
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1896
+ submission?: __.Association.to<TransactionSubmission> | null;
1897
+ hasInputs?: boolean | null;
1898
+ hasOutputs?: boolean | null;
1899
+ wasSubmitted?: boolean | null;
1900
+ validFrom?: __.CdsTimestamp | null;
1901
+ validTo?: __.CdsTimestamp | null;
1902
+ }>;
1903
+ readonly elements: __.ElementsOf<{
1904
+ id?: __.Key<string>;
1905
+ network?: string | null;
1906
+ builderEngine?: string | null;
1907
+ senderAddress?: Bech32 | null;
1908
+ changeAddress?: Bech32 | null;
1909
+ unsignedTxCbor?: string | null;
1910
+ txBodyHash?: Blake2b256 | null;
1911
+ fee?: Lovelace | null;
1912
+ size?: number | null;
1913
+ createdAt?: number | null;
1914
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1915
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1916
+ submission?: __.Association.to<TransactionSubmission> | null;
1917
+ hasInputs?: boolean | null;
1918
+ hasOutputs?: boolean | null;
1919
+ wasSubmitted?: boolean | null;
1920
+ validFrom?: __.CdsTimestamp | null;
1921
+ validTo?: __.CdsTimestamp | null;
1922
+ }>;
1923
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
1924
+ } & TBase;
1925
+ declare const TransactionBuild_base: {
1926
+ new (...args: any[]): {
1927
+ id?: __.Key<string>;
1928
+ network?: string | null;
1929
+ builderEngine?: string | null;
1930
+ senderAddress?: Bech32 | null;
1931
+ changeAddress?: Bech32 | null;
1932
+ unsignedTxCbor?: string | null;
1933
+ txBodyHash?: Blake2b256 | null;
1934
+ fee?: Lovelace | null;
1935
+ size?: number | null;
1936
+ createdAt?: number | null;
1937
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1938
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1939
+ submission?: __.Association.to<TransactionSubmission> | null;
1940
+ hasInputs?: boolean | null;
1941
+ hasOutputs?: boolean | null;
1942
+ wasSubmitted?: boolean | null;
1943
+ validFrom?: __.CdsTimestamp | null;
1944
+ validTo?: __.CdsTimestamp | null;
1945
+ };
1946
+ readonly kind: "entity" | "type" | "aspect";
1947
+ readonly keys: __.KeysOf<{
1948
+ id?: __.Key<string>;
1949
+ network?: string | null;
1950
+ builderEngine?: string | null;
1951
+ senderAddress?: Bech32 | null;
1952
+ changeAddress?: Bech32 | null;
1953
+ unsignedTxCbor?: string | null;
1954
+ txBodyHash?: Blake2b256 | null;
1955
+ fee?: Lovelace | null;
1956
+ size?: number | null;
1957
+ createdAt?: number | null;
1958
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1959
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1960
+ submission?: __.Association.to<TransactionSubmission> | null;
1961
+ hasInputs?: boolean | null;
1962
+ hasOutputs?: boolean | null;
1963
+ wasSubmitted?: boolean | null;
1964
+ validFrom?: __.CdsTimestamp | null;
1965
+ validTo?: __.CdsTimestamp | null;
1966
+ }>;
1967
+ readonly elements: __.ElementsOf<{
1968
+ id?: __.Key<string>;
1969
+ network?: string | null;
1970
+ builderEngine?: string | null;
1971
+ senderAddress?: Bech32 | null;
1972
+ changeAddress?: Bech32 | null;
1973
+ unsignedTxCbor?: string | null;
1974
+ txBodyHash?: Blake2b256 | null;
1975
+ fee?: Lovelace | null;
1976
+ size?: number | null;
1977
+ createdAt?: number | null;
1978
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
1979
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
1980
+ submission?: __.Association.to<TransactionSubmission> | null;
1981
+ hasInputs?: boolean | null;
1982
+ hasOutputs?: boolean | null;
1983
+ wasSubmitted?: boolean | null;
1984
+ validFrom?: __.CdsTimestamp | null;
1985
+ validTo?: __.CdsTimestamp | null;
1986
+ }>;
1987
+ readonly actions: typeof _.temporal.actions & globalThis.Record<never, never>;
1988
+ } & typeof __.Entity;
1989
+ export declare class TransactionBuild extends TransactionBuild_base {
1990
+ }
1991
+ export declare class TransactionBuilds extends Array<TransactionBuild> {
1992
+ $count?: number;
1993
+ }
1994
+ export declare function _TransactionBuildInputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1995
+ new (...args: any[]): {
1996
+ build?: __.Key<__.Association.to<TransactionBuild>>;
1997
+ build_id?: __.Key<string>;
1998
+ inputIndex?: __.Key<number>;
1999
+ txHash?: Blake2b256 | null;
2000
+ outputIndex?: number | null;
2001
+ address?: Bech32 | null;
2002
+ lovelace?: Lovelace | null;
2003
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2004
+ hasAssets?: boolean | null;
2005
+ };
2006
+ readonly kind: "entity" | "type" | "aspect";
2007
+ readonly keys: __.KeysOf<{
2008
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2009
+ build_id?: __.Key<string>;
2010
+ inputIndex?: __.Key<number>;
2011
+ txHash?: Blake2b256 | null;
2012
+ outputIndex?: number | null;
2013
+ address?: Bech32 | null;
2014
+ lovelace?: Lovelace | null;
2015
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2016
+ hasAssets?: boolean | null;
2017
+ }>;
2018
+ readonly elements: __.ElementsOf<{
2019
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2020
+ build_id?: __.Key<string>;
2021
+ inputIndex?: __.Key<number>;
2022
+ txHash?: Blake2b256 | null;
2023
+ outputIndex?: number | null;
2024
+ address?: Bech32 | null;
2025
+ lovelace?: Lovelace | null;
2026
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2027
+ hasAssets?: boolean | null;
2028
+ }>;
2029
+ readonly actions: globalThis.Record<never, never>;
2030
+ } & TBase;
2031
+ declare const TransactionBuildInput_base: {
2032
+ new (...args: any[]): {
2033
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2034
+ build_id?: __.Key<string>;
2035
+ inputIndex?: __.Key<number>;
2036
+ txHash?: Blake2b256 | null;
2037
+ outputIndex?: number | null;
2038
+ address?: Bech32 | null;
2039
+ lovelace?: Lovelace | null;
2040
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2041
+ hasAssets?: boolean | null;
2042
+ };
2043
+ readonly kind: "entity" | "type" | "aspect";
2044
+ readonly keys: __.KeysOf<{
2045
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2046
+ build_id?: __.Key<string>;
2047
+ inputIndex?: __.Key<number>;
2048
+ txHash?: Blake2b256 | null;
2049
+ outputIndex?: number | null;
2050
+ address?: Bech32 | null;
2051
+ lovelace?: Lovelace | null;
2052
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2053
+ hasAssets?: boolean | null;
2054
+ }>;
2055
+ readonly elements: __.ElementsOf<{
2056
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2057
+ build_id?: __.Key<string>;
2058
+ inputIndex?: __.Key<number>;
2059
+ txHash?: Blake2b256 | null;
2060
+ outputIndex?: number | null;
2061
+ address?: Bech32 | null;
2062
+ lovelace?: Lovelace | null;
2063
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
2064
+ hasAssets?: boolean | null;
2065
+ }>;
2066
+ readonly actions: globalThis.Record<never, never>;
2067
+ } & typeof __.Entity;
2068
+ export declare class TransactionBuildInput extends TransactionBuildInput_base {
2069
+ }
2070
+ export declare class TransactionBuildInputs extends Array<TransactionBuildInput> {
2071
+ $count?: number;
2072
+ }
2073
+ export declare function _TransactionBuildInputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2074
+ new (...args: any[]): {
2075
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2076
+ input_inputIndex?: __.Key<number>;
2077
+ input_build_id?: __.Key<string>;
2078
+ unit?: __.Key<AssetUnit>;
2079
+ asset_quantity?: Lovelace | null;
2080
+ asset_policyId?: Blake2b224 | null;
2081
+ asset_assetNameHex?: string | null;
2082
+ asset_assetName?: string | null;
2083
+ asset_fingerprint?: string | null;
2084
+ };
2085
+ readonly kind: "entity" | "type" | "aspect";
2086
+ readonly keys: __.KeysOf<{
2087
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2088
+ input_inputIndex?: __.Key<number>;
2089
+ input_build_id?: __.Key<string>;
2090
+ unit?: __.Key<AssetUnit>;
2091
+ asset_quantity?: Lovelace | null;
2092
+ asset_policyId?: Blake2b224 | null;
2093
+ asset_assetNameHex?: string | null;
2094
+ asset_assetName?: string | null;
2095
+ asset_fingerprint?: string | null;
2096
+ }>;
2097
+ readonly elements: __.ElementsOf<{
2098
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2099
+ input_inputIndex?: __.Key<number>;
2100
+ input_build_id?: __.Key<string>;
2101
+ unit?: __.Key<AssetUnit>;
2102
+ asset_quantity?: Lovelace | null;
2103
+ asset_policyId?: Blake2b224 | null;
2104
+ asset_assetNameHex?: string | null;
2105
+ asset_assetName?: string | null;
2106
+ asset_fingerprint?: string | null;
2107
+ }>;
2108
+ readonly actions: globalThis.Record<never, never>;
2109
+ } & TBase;
2110
+ declare const TransactionBuildInputAsset_base: {
2111
+ new (...args: any[]): {
2112
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2113
+ input_inputIndex?: __.Key<number>;
2114
+ input_build_id?: __.Key<string>;
2115
+ unit?: __.Key<AssetUnit>;
2116
+ asset_quantity?: Lovelace | null;
2117
+ asset_policyId?: Blake2b224 | null;
2118
+ asset_assetNameHex?: string | null;
2119
+ asset_assetName?: string | null;
2120
+ asset_fingerprint?: string | null;
2121
+ };
2122
+ readonly kind: "entity" | "type" | "aspect";
2123
+ readonly keys: __.KeysOf<{
2124
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2125
+ input_inputIndex?: __.Key<number>;
2126
+ input_build_id?: __.Key<string>;
2127
+ unit?: __.Key<AssetUnit>;
2128
+ asset_quantity?: Lovelace | null;
2129
+ asset_policyId?: Blake2b224 | null;
2130
+ asset_assetNameHex?: string | null;
2131
+ asset_assetName?: string | null;
2132
+ asset_fingerprint?: string | null;
2133
+ }>;
2134
+ readonly elements: __.ElementsOf<{
2135
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
2136
+ input_inputIndex?: __.Key<number>;
2137
+ input_build_id?: __.Key<string>;
2138
+ unit?: __.Key<AssetUnit>;
2139
+ asset_quantity?: Lovelace | null;
2140
+ asset_policyId?: Blake2b224 | null;
2141
+ asset_assetNameHex?: string | null;
2142
+ asset_assetName?: string | null;
2143
+ asset_fingerprint?: string | null;
2144
+ }>;
2145
+ readonly actions: globalThis.Record<never, never>;
2146
+ } & typeof __.Entity;
2147
+ export declare class TransactionBuildInputAsset extends TransactionBuildInputAsset_base {
2148
+ }
2149
+ export declare class TransactionBuildInputAssets extends Array<TransactionBuildInputAsset> {
2150
+ $count?: number;
2151
+ }
2152
+ export declare function _TransactionBuildOutputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2153
+ new (...args: any[]): {
2154
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2155
+ build_id?: __.Key<string>;
2156
+ outputIndex?: __.Key<number>;
2157
+ address?: Bech32 | null;
2158
+ lovelace?: Lovelace | null;
2159
+ isChange?: boolean | null;
2160
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2161
+ hasAssets?: boolean | null;
2162
+ };
2163
+ readonly kind: "entity" | "type" | "aspect";
2164
+ readonly keys: __.KeysOf<{
2165
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2166
+ build_id?: __.Key<string>;
2167
+ outputIndex?: __.Key<number>;
2168
+ address?: Bech32 | null;
2169
+ lovelace?: Lovelace | null;
2170
+ isChange?: boolean | null;
2171
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2172
+ hasAssets?: boolean | null;
2173
+ }>;
2174
+ readonly elements: __.ElementsOf<{
2175
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2176
+ build_id?: __.Key<string>;
2177
+ outputIndex?: __.Key<number>;
2178
+ address?: Bech32 | null;
2179
+ lovelace?: Lovelace | null;
2180
+ isChange?: boolean | null;
2181
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2182
+ hasAssets?: boolean | null;
2183
+ }>;
2184
+ readonly actions: globalThis.Record<never, never>;
2185
+ } & TBase;
2186
+ declare const TransactionBuildOutput_base: {
2187
+ new (...args: any[]): {
2188
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2189
+ build_id?: __.Key<string>;
2190
+ outputIndex?: __.Key<number>;
2191
+ address?: Bech32 | null;
2192
+ lovelace?: Lovelace | null;
2193
+ isChange?: boolean | null;
2194
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2195
+ hasAssets?: boolean | null;
2196
+ };
2197
+ readonly kind: "entity" | "type" | "aspect";
2198
+ readonly keys: __.KeysOf<{
2199
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2200
+ build_id?: __.Key<string>;
2201
+ outputIndex?: __.Key<number>;
2202
+ address?: Bech32 | null;
2203
+ lovelace?: Lovelace | null;
2204
+ isChange?: boolean | null;
2205
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2206
+ hasAssets?: boolean | null;
2207
+ }>;
2208
+ readonly elements: __.ElementsOf<{
2209
+ build?: __.Key<__.Association.to<TransactionBuild>>;
2210
+ build_id?: __.Key<string>;
2211
+ outputIndex?: __.Key<number>;
2212
+ address?: Bech32 | null;
2213
+ lovelace?: Lovelace | null;
2214
+ isChange?: boolean | null;
2215
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
2216
+ hasAssets?: boolean | null;
2217
+ }>;
2218
+ readonly actions: globalThis.Record<never, never>;
2219
+ } & typeof __.Entity;
2220
+ export declare class TransactionBuildOutput extends TransactionBuildOutput_base {
2221
+ }
2222
+ export declare class TransactionBuildOutputs extends Array<TransactionBuildOutput> {
2223
+ $count?: number;
2224
+ }
2225
+ export declare function _TransactionBuildOutputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2226
+ new (...args: any[]): {
2227
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2228
+ output_outputIndex?: __.Key<number>;
2229
+ output_build_id?: __.Key<string>;
2230
+ unit?: __.Key<AssetUnit>;
2231
+ asset_quantity?: Lovelace | null;
2232
+ asset_policyId?: Blake2b224 | null;
2233
+ asset_assetNameHex?: string | null;
2234
+ asset_assetName?: string | null;
2235
+ asset_fingerprint?: string | null;
2236
+ };
2237
+ readonly kind: "entity" | "type" | "aspect";
2238
+ readonly keys: __.KeysOf<{
2239
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2240
+ output_outputIndex?: __.Key<number>;
2241
+ output_build_id?: __.Key<string>;
2242
+ unit?: __.Key<AssetUnit>;
2243
+ asset_quantity?: Lovelace | null;
2244
+ asset_policyId?: Blake2b224 | null;
2245
+ asset_assetNameHex?: string | null;
2246
+ asset_assetName?: string | null;
2247
+ asset_fingerprint?: string | null;
2248
+ }>;
2249
+ readonly elements: __.ElementsOf<{
2250
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2251
+ output_outputIndex?: __.Key<number>;
2252
+ output_build_id?: __.Key<string>;
2253
+ unit?: __.Key<AssetUnit>;
2254
+ asset_quantity?: Lovelace | null;
2255
+ asset_policyId?: Blake2b224 | null;
2256
+ asset_assetNameHex?: string | null;
2257
+ asset_assetName?: string | null;
2258
+ asset_fingerprint?: string | null;
2259
+ }>;
2260
+ readonly actions: globalThis.Record<never, never>;
2261
+ } & TBase;
2262
+ declare const TransactionBuildOutputAsset_base: {
2263
+ new (...args: any[]): {
2264
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2265
+ output_outputIndex?: __.Key<number>;
2266
+ output_build_id?: __.Key<string>;
2267
+ unit?: __.Key<AssetUnit>;
2268
+ asset_quantity?: Lovelace | null;
2269
+ asset_policyId?: Blake2b224 | null;
2270
+ asset_assetNameHex?: string | null;
2271
+ asset_assetName?: string | null;
2272
+ asset_fingerprint?: string | null;
2273
+ };
2274
+ readonly kind: "entity" | "type" | "aspect";
2275
+ readonly keys: __.KeysOf<{
2276
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2277
+ output_outputIndex?: __.Key<number>;
2278
+ output_build_id?: __.Key<string>;
2279
+ unit?: __.Key<AssetUnit>;
2280
+ asset_quantity?: Lovelace | null;
2281
+ asset_policyId?: Blake2b224 | null;
2282
+ asset_assetNameHex?: string | null;
2283
+ asset_assetName?: string | null;
2284
+ asset_fingerprint?: string | null;
2285
+ }>;
2286
+ readonly elements: __.ElementsOf<{
2287
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
2288
+ output_outputIndex?: __.Key<number>;
2289
+ output_build_id?: __.Key<string>;
2290
+ unit?: __.Key<AssetUnit>;
2291
+ asset_quantity?: Lovelace | null;
2292
+ asset_policyId?: Blake2b224 | null;
2293
+ asset_assetNameHex?: string | null;
2294
+ asset_assetName?: string | null;
2295
+ asset_fingerprint?: string | null;
2296
+ }>;
2297
+ readonly actions: globalThis.Record<never, never>;
2298
+ } & typeof __.Entity;
2299
+ export declare class TransactionBuildOutputAsset extends TransactionBuildOutputAsset_base {
2300
+ }
2301
+ export declare class TransactionBuildOutputAssets extends Array<TransactionBuildOutputAsset> {
2302
+ $count?: number;
2303
+ }
2304
+ export declare function _TransactionSubmissionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2305
+ new (...args: any[]): {
2306
+ id?: __.Key<string>;
2307
+ build?: __.Association.to<TransactionBuild> | null;
2308
+ build_id?: string | null;
2309
+ signedTxCbor?: string | null;
2310
+ txHash?: Blake2b256 | null;
2311
+ submittedAt?: number | null;
2312
+ status?: SubmissionStatus | null;
2313
+ errorCode?: string | null;
2314
+ errorMessage?: string | null;
2315
+ retryCount?: number | null;
2316
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2317
+ hasErrors?: boolean | null;
2318
+ };
2319
+ readonly kind: "entity" | "type" | "aspect";
2320
+ readonly keys: __.KeysOf<{
2321
+ id?: __.Key<string>;
2322
+ build?: __.Association.to<TransactionBuild> | null;
2323
+ build_id?: string | null;
2324
+ signedTxCbor?: string | null;
2325
+ txHash?: Blake2b256 | null;
2326
+ submittedAt?: number | null;
2327
+ status?: SubmissionStatus | null;
2328
+ errorCode?: string | null;
2329
+ errorMessage?: string | null;
2330
+ retryCount?: number | null;
2331
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2332
+ hasErrors?: boolean | null;
2333
+ }>;
2334
+ readonly elements: __.ElementsOf<{
2335
+ id?: __.Key<string>;
2336
+ build?: __.Association.to<TransactionBuild> | null;
2337
+ build_id?: string | null;
2338
+ signedTxCbor?: string | null;
2339
+ txHash?: Blake2b256 | null;
2340
+ submittedAt?: number | null;
2341
+ status?: SubmissionStatus | null;
2342
+ errorCode?: string | null;
2343
+ errorMessage?: string | null;
2344
+ retryCount?: number | null;
2345
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2346
+ hasErrors?: boolean | null;
2347
+ }>;
2348
+ readonly actions: globalThis.Record<never, never>;
2349
+ } & TBase;
2350
+ declare const TransactionSubmission_base: {
2351
+ new (...args: any[]): {
2352
+ id?: __.Key<string>;
2353
+ build?: __.Association.to<TransactionBuild> | null;
2354
+ build_id?: string | null;
2355
+ signedTxCbor?: string | null;
2356
+ txHash?: Blake2b256 | null;
2357
+ submittedAt?: number | null;
2358
+ status?: SubmissionStatus | null;
2359
+ errorCode?: string | null;
2360
+ errorMessage?: string | null;
2361
+ retryCount?: number | null;
2362
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2363
+ hasErrors?: boolean | null;
2364
+ };
2365
+ readonly kind: "entity" | "type" | "aspect";
2366
+ readonly keys: __.KeysOf<{
2367
+ id?: __.Key<string>;
2368
+ build?: __.Association.to<TransactionBuild> | null;
2369
+ build_id?: string | null;
2370
+ signedTxCbor?: string | null;
2371
+ txHash?: Blake2b256 | null;
2372
+ submittedAt?: number | null;
2373
+ status?: SubmissionStatus | null;
2374
+ errorCode?: string | null;
2375
+ errorMessage?: string | null;
2376
+ retryCount?: number | null;
2377
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2378
+ hasErrors?: boolean | null;
2379
+ }>;
2380
+ readonly elements: __.ElementsOf<{
2381
+ id?: __.Key<string>;
2382
+ build?: __.Association.to<TransactionBuild> | null;
2383
+ build_id?: string | null;
2384
+ signedTxCbor?: string | null;
2385
+ txHash?: Blake2b256 | null;
2386
+ submittedAt?: number | null;
2387
+ status?: SubmissionStatus | null;
2388
+ errorCode?: string | null;
2389
+ errorMessage?: string | null;
2390
+ retryCount?: number | null;
2391
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
2392
+ hasErrors?: boolean | null;
2393
+ }>;
2394
+ readonly actions: globalThis.Record<never, never>;
2395
+ } & typeof __.Entity;
2396
+ export declare class TransactionSubmission extends TransactionSubmission_base {
2397
+ }
2398
+ export declare class TransactionSubmissions extends Array<TransactionSubmission> {
2399
+ $count?: number;
2400
+ }
2401
+ export declare function _TransactionSubmissionErrorAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2402
+ new (...args: any[]): {
2403
+ id?: __.Key<string>;
2404
+ submission?: __.Association.to<TransactionSubmission> | null;
2405
+ submission_id?: string | null;
2406
+ occurredAt?: number | null;
2407
+ errorType?: string | null;
2408
+ errorCode?: string | null;
2409
+ errorMessage?: string | null;
2410
+ errorDetails?: string | null;
2411
+ isRecoverable?: boolean | null;
2412
+ };
2413
+ readonly kind: "entity" | "type" | "aspect";
2414
+ readonly keys: __.KeysOf<{
2415
+ id?: __.Key<string>;
2416
+ submission?: __.Association.to<TransactionSubmission> | null;
2417
+ submission_id?: string | null;
2418
+ occurredAt?: number | null;
2419
+ errorType?: string | null;
2420
+ errorCode?: string | null;
2421
+ errorMessage?: string | null;
2422
+ errorDetails?: string | null;
2423
+ isRecoverable?: boolean | null;
2424
+ }>;
2425
+ readonly elements: __.ElementsOf<{
2426
+ id?: __.Key<string>;
2427
+ submission?: __.Association.to<TransactionSubmission> | null;
2428
+ submission_id?: string | null;
2429
+ occurredAt?: number | null;
2430
+ errorType?: string | null;
2431
+ errorCode?: string | null;
2432
+ errorMessage?: string | null;
2433
+ errorDetails?: string | null;
2434
+ isRecoverable?: boolean | null;
2435
+ }>;
2436
+ readonly actions: globalThis.Record<never, never>;
2437
+ } & TBase;
2438
+ declare const TransactionSubmissionError_base: {
2439
+ new (...args: any[]): {
2440
+ id?: __.Key<string>;
2441
+ submission?: __.Association.to<TransactionSubmission> | null;
2442
+ submission_id?: string | null;
2443
+ occurredAt?: number | null;
2444
+ errorType?: string | null;
2445
+ errorCode?: string | null;
2446
+ errorMessage?: string | null;
2447
+ errorDetails?: string | null;
2448
+ isRecoverable?: boolean | null;
2449
+ };
2450
+ readonly kind: "entity" | "type" | "aspect";
2451
+ readonly keys: __.KeysOf<{
2452
+ id?: __.Key<string>;
2453
+ submission?: __.Association.to<TransactionSubmission> | null;
2454
+ submission_id?: string | null;
2455
+ occurredAt?: number | null;
2456
+ errorType?: string | null;
2457
+ errorCode?: string | null;
2458
+ errorMessage?: string | null;
2459
+ errorDetails?: string | null;
2460
+ isRecoverable?: boolean | null;
2461
+ }>;
2462
+ readonly elements: __.ElementsOf<{
2463
+ id?: __.Key<string>;
2464
+ submission?: __.Association.to<TransactionSubmission> | null;
2465
+ submission_id?: string | null;
2466
+ occurredAt?: number | null;
2467
+ errorType?: string | null;
2468
+ errorCode?: string | null;
2469
+ errorMessage?: string | null;
2470
+ errorDetails?: string | null;
2471
+ isRecoverable?: boolean | null;
2472
+ }>;
2473
+ readonly actions: globalThis.Record<never, never>;
2474
+ } & typeof __.Entity;
2475
+ export declare class TransactionSubmissionError extends TransactionSubmissionError_base {
2476
+ }
2477
+ export declare class TransactionSubmissionErrors extends Array<TransactionSubmissionError> {
2478
+ $count?: number;
2479
+ }
2480
+ export declare function _AddressTransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2481
+ new (...args: any[]): {
2482
+ address?: __.Key<__.Association.to<Address>>;
2483
+ address_address?: __.Key<Bech32>;
2484
+ tx?: __.Key<__.Association.to<Transaction>>;
2485
+ tx_hash?: __.Key<Blake2b256>;
2486
+ netAmount?: number | null;
2487
+ blockTime?: number | null;
2488
+ netAssets?: string | null;
2489
+ hasAssets?: boolean | null;
2490
+ };
2491
+ readonly kind: "entity" | "type" | "aspect";
2492
+ readonly keys: __.KeysOf<{
2493
+ address?: __.Key<__.Association.to<Address>>;
2494
+ address_address?: __.Key<Bech32>;
2495
+ tx?: __.Key<__.Association.to<Transaction>>;
2496
+ tx_hash?: __.Key<Blake2b256>;
2497
+ netAmount?: number | null;
2498
+ blockTime?: number | null;
2499
+ netAssets?: string | null;
2500
+ hasAssets?: boolean | null;
2501
+ }>;
2502
+ readonly elements: __.ElementsOf<{
2503
+ address?: __.Key<__.Association.to<Address>>;
2504
+ address_address?: __.Key<Bech32>;
2505
+ tx?: __.Key<__.Association.to<Transaction>>;
2506
+ tx_hash?: __.Key<Blake2b256>;
2507
+ netAmount?: number | null;
2508
+ blockTime?: number | null;
2509
+ netAssets?: string | null;
2510
+ hasAssets?: boolean | null;
2511
+ }>;
2512
+ readonly actions: globalThis.Record<never, never>;
2513
+ } & TBase;
2514
+ declare const AddressTransaction_base: {
2515
+ new (...args: any[]): {
2516
+ address?: __.Key<__.Association.to<Address>>;
2517
+ address_address?: __.Key<Bech32>;
2518
+ tx?: __.Key<__.Association.to<Transaction>>;
2519
+ tx_hash?: __.Key<Blake2b256>;
2520
+ netAmount?: number | null;
2521
+ blockTime?: number | null;
2522
+ netAssets?: string | null;
2523
+ hasAssets?: boolean | null;
2524
+ };
2525
+ readonly kind: "entity" | "type" | "aspect";
2526
+ readonly keys: __.KeysOf<{
2527
+ address?: __.Key<__.Association.to<Address>>;
2528
+ address_address?: __.Key<Bech32>;
2529
+ tx?: __.Key<__.Association.to<Transaction>>;
2530
+ tx_hash?: __.Key<Blake2b256>;
2531
+ netAmount?: number | null;
2532
+ blockTime?: number | null;
2533
+ netAssets?: string | null;
2534
+ hasAssets?: boolean | null;
2535
+ }>;
2536
+ readonly elements: __.ElementsOf<{
2537
+ address?: __.Key<__.Association.to<Address>>;
2538
+ address_address?: __.Key<Bech32>;
2539
+ tx?: __.Key<__.Association.to<Transaction>>;
2540
+ tx_hash?: __.Key<Blake2b256>;
2541
+ netAmount?: number | null;
2542
+ blockTime?: number | null;
2543
+ netAssets?: string | null;
2544
+ hasAssets?: boolean | null;
2545
+ }>;
2546
+ readonly actions: globalThis.Record<never, never>;
2547
+ } & typeof __.Entity;
2548
+ export declare class AddressTransaction extends AddressTransaction_base {
2549
+ }
2550
+ export declare class AddressTransactions extends Array<AddressTransaction> {
2551
+ $count?: number;
2552
+ }
2553
+ export declare function _AddressSigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2554
+ new (...args: any[]): {
2555
+ address?: __.Key<__.Association.to<Address>>;
2556
+ address_address?: __.Key<Bech32>;
2557
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2558
+ signingRequest_id?: __.Key<string>;
2559
+ };
2560
+ readonly kind: "entity" | "type" | "aspect";
2561
+ readonly keys: __.KeysOf<{
2562
+ address?: __.Key<__.Association.to<Address>>;
2563
+ address_address?: __.Key<Bech32>;
2564
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2565
+ signingRequest_id?: __.Key<string>;
2566
+ }>;
2567
+ readonly elements: __.ElementsOf<{
2568
+ address?: __.Key<__.Association.to<Address>>;
2569
+ address_address?: __.Key<Bech32>;
2570
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2571
+ signingRequest_id?: __.Key<string>;
2572
+ }>;
2573
+ readonly actions: globalThis.Record<never, never>;
2574
+ } & TBase;
2575
+ declare const AddressSigningRequest_base: {
2576
+ new (...args: any[]): {
2577
+ address?: __.Key<__.Association.to<Address>>;
2578
+ address_address?: __.Key<Bech32>;
2579
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2580
+ signingRequest_id?: __.Key<string>;
2581
+ };
2582
+ readonly kind: "entity" | "type" | "aspect";
2583
+ readonly keys: __.KeysOf<{
2584
+ address?: __.Key<__.Association.to<Address>>;
2585
+ address_address?: __.Key<Bech32>;
2586
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2587
+ signingRequest_id?: __.Key<string>;
2588
+ }>;
2589
+ readonly elements: __.ElementsOf<{
2590
+ address?: __.Key<__.Association.to<Address>>;
2591
+ address_address?: __.Key<Bech32>;
2592
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
2593
+ signingRequest_id?: __.Key<string>;
2594
+ }>;
2595
+ readonly actions: globalThis.Record<never, never>;
2596
+ } & typeof __.Entity;
2597
+ export declare class AddressSigningRequest extends AddressSigningRequest_base {
2598
+ }
2599
+ export declare class AddressSigningRequests extends Array<AddressSigningRequest> {
2600
+ $count?: number;
2601
+ }
2602
+ export declare function _AddressTransactionBuildAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2603
+ new (...args: any[]): {
2604
+ address?: __.Key<__.Association.to<Address>>;
2605
+ address_address?: __.Key<Bech32>;
2606
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2607
+ txBuild_id?: __.Key<string>;
2608
+ };
2609
+ readonly kind: "entity" | "type" | "aspect";
2610
+ readonly keys: __.KeysOf<{
2611
+ address?: __.Key<__.Association.to<Address>>;
2612
+ address_address?: __.Key<Bech32>;
2613
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2614
+ txBuild_id?: __.Key<string>;
2615
+ }>;
2616
+ readonly elements: __.ElementsOf<{
2617
+ address?: __.Key<__.Association.to<Address>>;
2618
+ address_address?: __.Key<Bech32>;
2619
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2620
+ txBuild_id?: __.Key<string>;
2621
+ }>;
2622
+ readonly actions: globalThis.Record<never, never>;
2623
+ } & TBase;
2624
+ declare const AddressTransactionBuild_base: {
2625
+ new (...args: any[]): {
2626
+ address?: __.Key<__.Association.to<Address>>;
2627
+ address_address?: __.Key<Bech32>;
2628
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2629
+ txBuild_id?: __.Key<string>;
2630
+ };
2631
+ readonly kind: "entity" | "type" | "aspect";
2632
+ readonly keys: __.KeysOf<{
2633
+ address?: __.Key<__.Association.to<Address>>;
2634
+ address_address?: __.Key<Bech32>;
2635
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2636
+ txBuild_id?: __.Key<string>;
2637
+ }>;
2638
+ readonly elements: __.ElementsOf<{
2639
+ address?: __.Key<__.Association.to<Address>>;
2640
+ address_address?: __.Key<Bech32>;
2641
+ txBuild?: __.Key<__.Association.to<TransactionBuild>>;
2642
+ txBuild_id?: __.Key<string>;
2643
+ }>;
2644
+ readonly actions: globalThis.Record<never, never>;
2645
+ } & typeof __.Entity;
2646
+ export declare class AddressTransactionBuild extends AddressTransactionBuild_base {
2647
+ }
2648
+ export declare class AddressTransactionBuilds extends Array<AddressTransactionBuild> {
2649
+ $count?: number;
2650
+ }
2651
+ export declare function _SigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2652
+ new (...args: any[]): {
2653
+ id?: __.Key<string>;
2654
+ build?: __.Association.to<TransactionBuild> | null;
2655
+ build_id?: string | null;
2656
+ txBodyHash?: Blake2b256 | null;
2657
+ unsignedTxCbor?: string | null;
2658
+ network?: string | null;
2659
+ status?: SigningStatus | null;
2660
+ createdAt?: __.CdsTimestamp | null;
2661
+ expiresAt?: __.CdsTimestamp | null;
2662
+ signedAt?: __.CdsTimestamp | null;
2663
+ submittedAt?: __.CdsTimestamp | null;
2664
+ cardanoCliCommand?: string | null;
2665
+ cip30TxCbor?: string | null;
2666
+ signerType?: string | null;
2667
+ signerInfo?: string | null;
2668
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2669
+ submission?: __.Association.to<TransactionSubmission> | null;
2670
+ submission_id?: string | null;
2671
+ errorMessage?: string | null;
2672
+ };
2673
+ readonly kind: "entity" | "type" | "aspect";
2674
+ readonly keys: __.KeysOf<{
2675
+ id?: __.Key<string>;
2676
+ build?: __.Association.to<TransactionBuild> | null;
2677
+ build_id?: string | null;
2678
+ txBodyHash?: Blake2b256 | null;
2679
+ unsignedTxCbor?: string | null;
2680
+ network?: string | null;
2681
+ status?: SigningStatus | null;
2682
+ createdAt?: __.CdsTimestamp | null;
2683
+ expiresAt?: __.CdsTimestamp | null;
2684
+ signedAt?: __.CdsTimestamp | null;
2685
+ submittedAt?: __.CdsTimestamp | null;
2686
+ cardanoCliCommand?: string | null;
2687
+ cip30TxCbor?: string | null;
2688
+ signerType?: string | null;
2689
+ signerInfo?: string | null;
2690
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2691
+ submission?: __.Association.to<TransactionSubmission> | null;
2692
+ submission_id?: string | null;
2693
+ errorMessage?: string | null;
2694
+ }>;
2695
+ readonly elements: __.ElementsOf<{
2696
+ id?: __.Key<string>;
2697
+ build?: __.Association.to<TransactionBuild> | null;
2698
+ build_id?: string | null;
2699
+ txBodyHash?: Blake2b256 | null;
2700
+ unsignedTxCbor?: string | null;
2701
+ network?: string | null;
2702
+ status?: SigningStatus | null;
2703
+ createdAt?: __.CdsTimestamp | null;
2704
+ expiresAt?: __.CdsTimestamp | null;
2705
+ signedAt?: __.CdsTimestamp | null;
2706
+ submittedAt?: __.CdsTimestamp | null;
2707
+ cardanoCliCommand?: string | null;
2708
+ cip30TxCbor?: string | null;
2709
+ signerType?: string | null;
2710
+ signerInfo?: string | null;
2711
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2712
+ submission?: __.Association.to<TransactionSubmission> | null;
2713
+ submission_id?: string | null;
2714
+ errorMessage?: string | null;
2715
+ }>;
2716
+ readonly actions: globalThis.Record<never, never>;
2717
+ } & TBase;
2718
+ declare const SigningRequest_base: {
2719
+ new (...args: any[]): {
2720
+ id?: __.Key<string>;
2721
+ build?: __.Association.to<TransactionBuild> | null;
2722
+ build_id?: string | null;
2723
+ txBodyHash?: Blake2b256 | null;
2724
+ unsignedTxCbor?: string | null;
2725
+ network?: string | null;
2726
+ status?: SigningStatus | null;
2727
+ createdAt?: __.CdsTimestamp | null;
2728
+ expiresAt?: __.CdsTimestamp | null;
2729
+ signedAt?: __.CdsTimestamp | null;
2730
+ submittedAt?: __.CdsTimestamp | null;
2731
+ cardanoCliCommand?: string | null;
2732
+ cip30TxCbor?: string | null;
2733
+ signerType?: string | null;
2734
+ signerInfo?: string | null;
2735
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2736
+ submission?: __.Association.to<TransactionSubmission> | null;
2737
+ submission_id?: string | null;
2738
+ errorMessage?: string | null;
2739
+ };
2740
+ readonly kind: "entity" | "type" | "aspect";
2741
+ readonly keys: __.KeysOf<{
2742
+ id?: __.Key<string>;
2743
+ build?: __.Association.to<TransactionBuild> | null;
2744
+ build_id?: string | null;
2745
+ txBodyHash?: Blake2b256 | null;
2746
+ unsignedTxCbor?: string | null;
2747
+ network?: string | null;
2748
+ status?: SigningStatus | null;
2749
+ createdAt?: __.CdsTimestamp | null;
2750
+ expiresAt?: __.CdsTimestamp | null;
2751
+ signedAt?: __.CdsTimestamp | null;
2752
+ submittedAt?: __.CdsTimestamp | null;
2753
+ cardanoCliCommand?: string | null;
2754
+ cip30TxCbor?: string | null;
2755
+ signerType?: string | null;
2756
+ signerInfo?: string | null;
2757
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2758
+ submission?: __.Association.to<TransactionSubmission> | null;
2759
+ submission_id?: string | null;
2760
+ errorMessage?: string | null;
2761
+ }>;
2762
+ readonly elements: __.ElementsOf<{
2763
+ id?: __.Key<string>;
2764
+ build?: __.Association.to<TransactionBuild> | null;
2765
+ build_id?: string | null;
2766
+ txBodyHash?: Blake2b256 | null;
2767
+ unsignedTxCbor?: string | null;
2768
+ network?: string | null;
2769
+ status?: SigningStatus | null;
2770
+ createdAt?: __.CdsTimestamp | null;
2771
+ expiresAt?: __.CdsTimestamp | null;
2772
+ signedAt?: __.CdsTimestamp | null;
2773
+ submittedAt?: __.CdsTimestamp | null;
2774
+ cardanoCliCommand?: string | null;
2775
+ cip30TxCbor?: string | null;
2776
+ signerType?: string | null;
2777
+ signerInfo?: string | null;
2778
+ verifications?: __.Composition.of.many<SignatureVerifications>;
2779
+ submission?: __.Association.to<TransactionSubmission> | null;
2780
+ submission_id?: string | null;
2781
+ errorMessage?: string | null;
2782
+ }>;
2783
+ readonly actions: globalThis.Record<never, never>;
2784
+ } & typeof __.Entity;
2785
+ export declare class SigningRequest extends SigningRequest_base {
2786
+ }
2787
+ export declare class SigningRequests extends Array<SigningRequest> {
2788
+ $count?: number;
2789
+ }
2790
+ export declare function _SignatureVerificationAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
2791
+ new (...args: any[]): {
2792
+ id?: __.Key<string>;
2793
+ signingRequest?: __.Association.to<SigningRequest> | null;
2794
+ signingRequest_id?: string | null;
2795
+ signedTxCbor?: string | null;
2796
+ isValid?: boolean | null;
2797
+ txBodyHash?: Blake2b256 | null;
2798
+ witnessCount?: number | null;
2799
+ signerKeyHashes?: string | null;
2800
+ errorMessage?: string | null;
2801
+ warnings?: string | null;
2802
+ verifiedAt?: __.CdsTimestamp | null;
2803
+ };
2804
+ readonly kind: "entity" | "type" | "aspect";
2805
+ readonly keys: __.KeysOf<{
2806
+ id?: __.Key<string>;
2807
+ signingRequest?: __.Association.to<SigningRequest> | null;
2808
+ signingRequest_id?: string | null;
2809
+ signedTxCbor?: string | null;
2810
+ isValid?: boolean | null;
2811
+ txBodyHash?: Blake2b256 | null;
2812
+ witnessCount?: number | null;
2813
+ signerKeyHashes?: string | null;
2814
+ errorMessage?: string | null;
2815
+ warnings?: string | null;
2816
+ verifiedAt?: __.CdsTimestamp | null;
2817
+ }>;
2818
+ readonly elements: __.ElementsOf<{
2819
+ id?: __.Key<string>;
2820
+ signingRequest?: __.Association.to<SigningRequest> | null;
2821
+ signingRequest_id?: string | null;
2822
+ signedTxCbor?: string | null;
2823
+ isValid?: boolean | null;
2824
+ txBodyHash?: Blake2b256 | null;
2825
+ witnessCount?: number | null;
2826
+ signerKeyHashes?: string | null;
2827
+ errorMessage?: string | null;
2828
+ warnings?: string | null;
2829
+ verifiedAt?: __.CdsTimestamp | null;
2830
+ }>;
2831
+ readonly actions: globalThis.Record<never, never>;
2832
+ } & TBase;
2833
+ declare const SignatureVerification_base: {
2834
+ new (...args: any[]): {
2835
+ id?: __.Key<string>;
2836
+ signingRequest?: __.Association.to<SigningRequest> | null;
2837
+ signingRequest_id?: string | null;
2838
+ signedTxCbor?: string | null;
2839
+ isValid?: boolean | null;
2840
+ txBodyHash?: Blake2b256 | null;
2841
+ witnessCount?: number | null;
2842
+ signerKeyHashes?: string | null;
2843
+ errorMessage?: string | null;
2844
+ warnings?: string | null;
2845
+ verifiedAt?: __.CdsTimestamp | null;
2846
+ };
2847
+ readonly kind: "entity" | "type" | "aspect";
2848
+ readonly keys: __.KeysOf<{
2849
+ id?: __.Key<string>;
2850
+ signingRequest?: __.Association.to<SigningRequest> | null;
2851
+ signingRequest_id?: string | null;
2852
+ signedTxCbor?: string | null;
2853
+ isValid?: boolean | null;
2854
+ txBodyHash?: Blake2b256 | null;
2855
+ witnessCount?: number | null;
2856
+ signerKeyHashes?: string | null;
2857
+ errorMessage?: string | null;
2858
+ warnings?: string | null;
2859
+ verifiedAt?: __.CdsTimestamp | null;
2860
+ }>;
2861
+ readonly elements: __.ElementsOf<{
2862
+ id?: __.Key<string>;
2863
+ signingRequest?: __.Association.to<SigningRequest> | null;
2864
+ signingRequest_id?: string | null;
2865
+ signedTxCbor?: string | null;
2866
+ isValid?: boolean | null;
2867
+ txBodyHash?: Blake2b256 | null;
2868
+ witnessCount?: number | null;
2869
+ signerKeyHashes?: string | null;
2870
+ errorMessage?: string | null;
2871
+ warnings?: string | null;
2872
+ verifiedAt?: __.CdsTimestamp | null;
2873
+ }>;
2874
+ readonly actions: globalThis.Record<never, never>;
2875
+ } & typeof __.Entity;
2876
+ export declare class SignatureVerification extends SignatureVerification_base {
2877
+ }
2878
+ export declare class SignatureVerifications extends Array<SignatureVerification> {
2879
+ $count?: number;
2880
+ }
2881
+ export {};
2882
+ //# sourceMappingURL=index.d.ts.map