@odatano/core 0.3.17 → 0.3.18

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 (94) hide show
  1. package/@cds-models/CardanoODataService/index.d.ts +434 -427
  2. package/@cds-models/CardanoODataService/index.d.ts.map +1 -1
  3. package/@cds-models/CardanoODataService/index.js +7 -0
  4. package/@cds-models/CardanoODataService/index.js.map +1 -1
  5. package/@cds-models/CardanoODataService/index.ts +99 -92
  6. package/@cds-models/CardanoSignService/index.d.ts +1549 -0
  7. package/@cds-models/CardanoSignService/index.d.ts.map +1 -0
  8. package/@cds-models/CardanoSignService/index.js +291 -0
  9. package/@cds-models/CardanoSignService/index.js.map +1 -0
  10. package/@cds-models/CardanoSignService/index.ts +519 -0
  11. package/@cds-models/CardanoTransactionService/index.d.ts +338 -815
  12. package/@cds-models/CardanoTransactionService/index.d.ts.map +1 -1
  13. package/@cds-models/CardanoTransactionService/index.js +3 -63
  14. package/@cds-models/CardanoTransactionService/index.js.map +1 -1
  15. package/@cds-models/CardanoTransactionService/index.ts +71 -210
  16. package/@cds-models/index.d.ts +150 -1
  17. package/@cds-models/index.d.ts.map +1 -1
  18. package/@cds-models/index.js +51 -1
  19. package/@cds-models/index.js.map +1 -1
  20. package/@cds-models/index.ts +74 -2
  21. package/@cds-models/odatano/cardano/index.d.ts +553 -696
  22. package/@cds-models/odatano/cardano/index.d.ts.map +1 -1
  23. package/@cds-models/odatano/cardano/index.js +3 -52
  24. package/@cds-models/odatano/cardano/index.js.map +1 -1
  25. package/@cds-models/odatano/cardano/index.ts +93 -165
  26. package/README.md +78 -19
  27. package/db/schema.cds +6 -108
  28. package/db/types.cds +111 -0
  29. package/package.json +19 -4
  30. package/src/index.d.ts.map +1 -1
  31. package/src/index.js +8 -3
  32. package/src/index.js.map +1 -1
  33. package/src/plugin.d.ts.map +1 -1
  34. package/src/plugin.js +7 -2
  35. package/src/plugin.js.map +1 -1
  36. package/srv/blockchain/backends/koios-backend.d.ts.map +1 -1
  37. package/srv/blockchain/backends/koios-backend.js +6 -16
  38. package/srv/blockchain/backends/koios-backend.js.map +1 -1
  39. package/srv/blockchain/cardano-client.d.ts.map +1 -1
  40. package/srv/blockchain/cardano-client.js +13 -10
  41. package/srv/blockchain/cardano-client.js.map +1 -1
  42. package/srv/blockchain/cardano-indexer.d.ts.map +1 -1
  43. package/srv/blockchain/cardano-indexer.js +10 -8
  44. package/srv/blockchain/cardano-indexer.js.map +1 -1
  45. package/srv/blockchain/cardano-tx-builder.d.ts.map +1 -1
  46. package/srv/blockchain/cardano-tx-builder.js +16 -16
  47. package/srv/blockchain/cardano-tx-builder.js.map +1 -1
  48. package/srv/blockchain/signing/hsm-signer.d.ts.map +1 -0
  49. package/srv/blockchain/signing/hsm-signer.js +290 -0
  50. package/srv/blockchain/signing/hsm-signer.js.map +1 -0
  51. package/srv/blockchain/signing/signature-verifier.d.ts.map +1 -1
  52. package/srv/blockchain/signing/signature-verifier.js +7 -25
  53. package/srv/blockchain/signing/signature-verifier.js.map +1 -1
  54. package/srv/blockchain/transaction-building/buildooor-tx.d.ts.map +1 -1
  55. package/srv/blockchain/transaction-building/buildooor-tx.js +171 -437
  56. package/srv/blockchain/transaction-building/buildooor-tx.js.map +1 -1
  57. package/srv/blockchain/transaction-building/cardano-tx.d.ts.map +1 -1
  58. package/srv/blockchain/transaction-building/csl-tx.d.ts.map +1 -1
  59. package/srv/blockchain/transaction-building/csl-tx.js +230 -611
  60. package/srv/blockchain/transaction-building/csl-tx.js.map +1 -1
  61. package/srv/cardano-service.cds +17 -9
  62. package/srv/cardano-service.js +2 -14
  63. package/srv/cardano-service.js.map +1 -1
  64. package/srv/cardano-sign-service.cds +128 -0
  65. package/srv/cardano-sign-service.d.ts.map +1 -0
  66. package/srv/cardano-sign-service.js +401 -0
  67. package/srv/cardano-sign-service.js.map +1 -0
  68. package/srv/cardano-tx-service.cds +116 -196
  69. package/srv/cardano-tx-service.js +5 -308
  70. package/srv/cardano-tx-service.js.map +1 -1
  71. package/srv/server.d.ts.map +1 -1
  72. package/srv/server.js +60 -5
  73. package/srv/server.js.map +1 -1
  74. package/srv/utils/const.d.ts.map +1 -1
  75. package/srv/utils/const.js +5 -1
  76. package/srv/utils/const.js.map +1 -1
  77. package/srv/utils/error-codes.d.ts.map +1 -1
  78. package/srv/utils/error-codes.js +15 -0
  79. package/srv/utils/error-codes.js.map +1 -1
  80. package/srv/utils/errors.d.ts.map +1 -1
  81. package/srv/utils/errors.js +12 -1
  82. package/srv/utils/errors.js.map +1 -1
  83. package/srv/utils/mappers.d.ts.map +1 -1
  84. package/srv/utils/mappers.js +9 -29
  85. package/srv/utils/mappers.js.map +1 -1
  86. package/srv/utils/signing-helper.d.ts.map +1 -1
  87. package/srv/utils/signing-helper.js +3 -18
  88. package/srv/utils/signing-helper.js.map +1 -1
  89. package/srv/utils/tx-build-helper.d.ts.map +1 -1
  90. package/srv/utils/tx-build-helper.js +10 -4
  91. package/srv/utils/tx-build-helper.js.map +1 -1
  92. package/srv/utils/types.d.ts.map +1 -1
  93. package/srv/utils/types.js +2 -0
  94. package/srv/utils/types.js.map +1 -1
@@ -0,0 +1,1549 @@
1
+ import * as __ from './../_';
2
+ import * as _ from './..';
3
+ import * as _odatano_cardano from './../odatano/cardano';
4
+ /**
5
+ * Cardano Sign Service
6
+ *
7
+ * Handles the external signing workflow for Cardano transactions, including:
8
+ * - Creating signing requests with transaction details and signing instructions
9
+ * - Verifying signatures of signed transactions and storing verification results
10
+ * - Submitting verified transactions to the blockchain and tracking submission status
11
+ * - Providing actions for signing with a Hardware Security Module (HSM) and retrieving HSM status
12
+ */
13
+ export default class {
14
+ static readonly VerifySignature: typeof VerifySignature;
15
+ static readonly SubmitVerifiedTransaction: typeof SubmitVerifiedTransaction;
16
+ static readonly CreateSigningRequest: typeof CreateSigningRequest;
17
+ static readonly GetSigningRequest: typeof GetSigningRequest;
18
+ static readonly GetSigningRequestsByAddress: typeof GetSigningRequestsByAddress;
19
+ static readonly SignWithHsm: typeof SignWithHsm;
20
+ static readonly SignAndSubmitWithHsm: typeof SignAndSubmitWithHsm;
21
+ static readonly GetHsmStatus: typeof GetHsmStatus;
22
+ }
23
+ export declare function _SignatureVerificationAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
24
+ new (...args: any[]): {
25
+ id?: __.Key<string>;
26
+ signingRequest?: __.Association.to<SigningRequest> | null;
27
+ signingRequest_id?: string | null;
28
+ signedTxCbor?: string | null;
29
+ isValid?: boolean | null;
30
+ txBodyHash?: _.Blake2b256 | null;
31
+ witnessCount?: number | null;
32
+ signerKeyHashes?: string | null;
33
+ errorMessage?: string | null;
34
+ warnings?: string | null;
35
+ verifiedAt?: __.CdsTimestamp | null;
36
+ };
37
+ readonly kind: "entity" | "type" | "aspect";
38
+ readonly keys: __.KeysOf<{
39
+ id?: __.Key<string>;
40
+ signingRequest?: __.Association.to<SigningRequest> | null;
41
+ signingRequest_id?: string | null;
42
+ signedTxCbor?: string | null;
43
+ isValid?: boolean | null;
44
+ txBodyHash?: _.Blake2b256 | null;
45
+ witnessCount?: number | null;
46
+ signerKeyHashes?: string | null;
47
+ errorMessage?: string | null;
48
+ warnings?: string | null;
49
+ verifiedAt?: __.CdsTimestamp | null;
50
+ }>;
51
+ readonly elements: __.ElementsOf<{
52
+ id?: __.Key<string>;
53
+ signingRequest?: __.Association.to<SigningRequest> | null;
54
+ signingRequest_id?: string | null;
55
+ signedTxCbor?: string | null;
56
+ isValid?: boolean | null;
57
+ txBodyHash?: _.Blake2b256 | null;
58
+ witnessCount?: number | null;
59
+ signerKeyHashes?: string | null;
60
+ errorMessage?: string | null;
61
+ warnings?: string | null;
62
+ verifiedAt?: __.CdsTimestamp | null;
63
+ }>;
64
+ readonly actions: globalThis.Record<never, never>;
65
+ } & TBase;
66
+ declare const SignatureVerification_base: {
67
+ new (...args: any[]): {
68
+ id?: __.Key<string>;
69
+ signingRequest?: __.Association.to<SigningRequest> | null;
70
+ signingRequest_id?: string | null;
71
+ signedTxCbor?: string | null;
72
+ isValid?: boolean | null;
73
+ txBodyHash?: _.Blake2b256 | null;
74
+ witnessCount?: number | null;
75
+ signerKeyHashes?: string | null;
76
+ errorMessage?: string | null;
77
+ warnings?: string | null;
78
+ verifiedAt?: __.CdsTimestamp | null;
79
+ };
80
+ readonly kind: "entity" | "type" | "aspect";
81
+ readonly keys: __.KeysOf<{
82
+ id?: __.Key<string>;
83
+ signingRequest?: __.Association.to<SigningRequest> | null;
84
+ signingRequest_id?: string | null;
85
+ signedTxCbor?: string | null;
86
+ isValid?: boolean | null;
87
+ txBodyHash?: _.Blake2b256 | null;
88
+ witnessCount?: number | null;
89
+ signerKeyHashes?: string | null;
90
+ errorMessage?: string | null;
91
+ warnings?: string | null;
92
+ verifiedAt?: __.CdsTimestamp | null;
93
+ }>;
94
+ readonly elements: __.ElementsOf<{
95
+ id?: __.Key<string>;
96
+ signingRequest?: __.Association.to<SigningRequest> | null;
97
+ signingRequest_id?: string | null;
98
+ signedTxCbor?: string | null;
99
+ isValid?: boolean | null;
100
+ txBodyHash?: _.Blake2b256 | null;
101
+ witnessCount?: number | null;
102
+ signerKeyHashes?: string | null;
103
+ errorMessage?: string | null;
104
+ warnings?: string | null;
105
+ verifiedAt?: __.CdsTimestamp | null;
106
+ }>;
107
+ readonly actions: globalThis.Record<never, never>;
108
+ } & typeof __.Entity;
109
+ export declare class SignatureVerification extends SignatureVerification_base {
110
+ }
111
+ export declare class SignatureVerifications extends Array<SignatureVerification> {
112
+ $count?: number;
113
+ }
114
+ export declare function _AddressSigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
115
+ new (...args: any[]): {
116
+ address?: __.Key<__.Association.to<Address>>;
117
+ address_address?: __.Key<_.Bech32>;
118
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
119
+ signingRequest_id?: __.Key<string>;
120
+ };
121
+ readonly kind: "entity" | "type" | "aspect";
122
+ readonly keys: __.KeysOf<{
123
+ address?: __.Key<__.Association.to<Address>>;
124
+ address_address?: __.Key<_.Bech32>;
125
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
126
+ signingRequest_id?: __.Key<string>;
127
+ }>;
128
+ readonly elements: __.ElementsOf<{
129
+ address?: __.Key<__.Association.to<Address>>;
130
+ address_address?: __.Key<_.Bech32>;
131
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
132
+ signingRequest_id?: __.Key<string>;
133
+ }>;
134
+ readonly actions: globalThis.Record<never, never>;
135
+ } & TBase;
136
+ declare const AddressSigningRequest_base: {
137
+ new (...args: any[]): {
138
+ address?: __.Key<__.Association.to<Address>>;
139
+ address_address?: __.Key<_.Bech32>;
140
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
141
+ signingRequest_id?: __.Key<string>;
142
+ };
143
+ readonly kind: "entity" | "type" | "aspect";
144
+ readonly keys: __.KeysOf<{
145
+ address?: __.Key<__.Association.to<Address>>;
146
+ address_address?: __.Key<_.Bech32>;
147
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
148
+ signingRequest_id?: __.Key<string>;
149
+ }>;
150
+ readonly elements: __.ElementsOf<{
151
+ address?: __.Key<__.Association.to<Address>>;
152
+ address_address?: __.Key<_.Bech32>;
153
+ signingRequest?: __.Key<__.Association.to<SigningRequest>>;
154
+ signingRequest_id?: __.Key<string>;
155
+ }>;
156
+ readonly actions: globalThis.Record<never, never>;
157
+ } & typeof __.Entity;
158
+ export declare class AddressSigningRequest extends AddressSigningRequest_base {
159
+ }
160
+ export declare class AddressSigningRequests extends Array<AddressSigningRequest> {
161
+ $count?: number;
162
+ }
163
+ export declare function _TransactionBuildAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
164
+ new (...args: any[]): {
165
+ validFrom?: __.CdsTimestamp | null;
166
+ validTo?: __.CdsTimestamp | null;
167
+ id?: __.Key<string>;
168
+ network?: string | null;
169
+ builderEngine?: string | null;
170
+ senderAddress?: _.Bech32 | null;
171
+ changeAddress?: _.Bech32 | null;
172
+ unsignedTxCbor?: string | null;
173
+ txBodyHash?: _.Blake2b256 | null;
174
+ fee?: _.Lovelace | null;
175
+ size?: number | null;
176
+ createdAt?: number | null;
177
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
178
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
179
+ submission?: __.Association.to<TransactionSubmission> | null;
180
+ hasInputs?: boolean | null;
181
+ hasOutputs?: boolean | null;
182
+ wasSubmitted?: boolean | null;
183
+ scriptHash?: string | null;
184
+ fingerprint?: string | null;
185
+ scriptAddress?: string | null;
186
+ };
187
+ readonly kind: "entity" | "type" | "aspect";
188
+ readonly keys: __.KeysOf<{
189
+ validFrom?: __.CdsTimestamp | null;
190
+ validTo?: __.CdsTimestamp | null;
191
+ id?: __.Key<string>;
192
+ network?: string | null;
193
+ builderEngine?: string | null;
194
+ senderAddress?: _.Bech32 | null;
195
+ changeAddress?: _.Bech32 | null;
196
+ unsignedTxCbor?: string | null;
197
+ txBodyHash?: _.Blake2b256 | null;
198
+ fee?: _.Lovelace | null;
199
+ size?: number | null;
200
+ createdAt?: number | null;
201
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
202
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
203
+ submission?: __.Association.to<TransactionSubmission> | null;
204
+ hasInputs?: boolean | null;
205
+ hasOutputs?: boolean | null;
206
+ wasSubmitted?: boolean | null;
207
+ scriptHash?: string | null;
208
+ fingerprint?: string | null;
209
+ scriptAddress?: string | null;
210
+ }>;
211
+ readonly elements: __.ElementsOf<{
212
+ validFrom?: __.CdsTimestamp | null;
213
+ validTo?: __.CdsTimestamp | null;
214
+ id?: __.Key<string>;
215
+ network?: string | null;
216
+ builderEngine?: string | null;
217
+ senderAddress?: _.Bech32 | null;
218
+ changeAddress?: _.Bech32 | null;
219
+ unsignedTxCbor?: string | null;
220
+ txBodyHash?: _.Blake2b256 | null;
221
+ fee?: _.Lovelace | null;
222
+ size?: number | null;
223
+ createdAt?: number | null;
224
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
225
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
226
+ submission?: __.Association.to<TransactionSubmission> | null;
227
+ hasInputs?: boolean | null;
228
+ hasOutputs?: boolean | null;
229
+ wasSubmitted?: boolean | null;
230
+ scriptHash?: string | null;
231
+ fingerprint?: string | null;
232
+ scriptAddress?: string | null;
233
+ }>;
234
+ readonly actions: globalThis.Record<never, never>;
235
+ } & TBase;
236
+ declare const TransactionBuild_base: {
237
+ new (...args: any[]): {
238
+ validFrom?: __.CdsTimestamp | null;
239
+ validTo?: __.CdsTimestamp | null;
240
+ id?: __.Key<string>;
241
+ network?: string | null;
242
+ builderEngine?: string | null;
243
+ senderAddress?: _.Bech32 | null;
244
+ changeAddress?: _.Bech32 | null;
245
+ unsignedTxCbor?: string | null;
246
+ txBodyHash?: _.Blake2b256 | null;
247
+ fee?: _.Lovelace | null;
248
+ size?: number | null;
249
+ createdAt?: number | null;
250
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
251
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
252
+ submission?: __.Association.to<TransactionSubmission> | null;
253
+ hasInputs?: boolean | null;
254
+ hasOutputs?: boolean | null;
255
+ wasSubmitted?: boolean | null;
256
+ scriptHash?: string | null;
257
+ fingerprint?: string | null;
258
+ scriptAddress?: string | null;
259
+ };
260
+ readonly kind: "entity" | "type" | "aspect";
261
+ readonly keys: __.KeysOf<{
262
+ validFrom?: __.CdsTimestamp | null;
263
+ validTo?: __.CdsTimestamp | null;
264
+ id?: __.Key<string>;
265
+ network?: string | null;
266
+ builderEngine?: string | null;
267
+ senderAddress?: _.Bech32 | null;
268
+ changeAddress?: _.Bech32 | null;
269
+ unsignedTxCbor?: string | null;
270
+ txBodyHash?: _.Blake2b256 | null;
271
+ fee?: _.Lovelace | null;
272
+ size?: number | null;
273
+ createdAt?: number | null;
274
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
275
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
276
+ submission?: __.Association.to<TransactionSubmission> | null;
277
+ hasInputs?: boolean | null;
278
+ hasOutputs?: boolean | null;
279
+ wasSubmitted?: boolean | null;
280
+ scriptHash?: string | null;
281
+ fingerprint?: string | null;
282
+ scriptAddress?: string | null;
283
+ }>;
284
+ readonly elements: __.ElementsOf<{
285
+ validFrom?: __.CdsTimestamp | null;
286
+ validTo?: __.CdsTimestamp | null;
287
+ id?: __.Key<string>;
288
+ network?: string | null;
289
+ builderEngine?: string | null;
290
+ senderAddress?: _.Bech32 | null;
291
+ changeAddress?: _.Bech32 | null;
292
+ unsignedTxCbor?: string | null;
293
+ txBodyHash?: _.Blake2b256 | null;
294
+ fee?: _.Lovelace | null;
295
+ size?: number | null;
296
+ createdAt?: number | null;
297
+ inputs?: __.Composition.of.many<TransactionBuildInputs>;
298
+ outputs?: __.Composition.of.many<TransactionBuildOutputs>;
299
+ submission?: __.Association.to<TransactionSubmission> | null;
300
+ hasInputs?: boolean | null;
301
+ hasOutputs?: boolean | null;
302
+ wasSubmitted?: boolean | null;
303
+ scriptHash?: string | null;
304
+ fingerprint?: string | null;
305
+ scriptAddress?: string | null;
306
+ }>;
307
+ readonly actions: globalThis.Record<never, never>;
308
+ } & typeof __.Entity;
309
+ export declare class TransactionBuild extends TransactionBuild_base {
310
+ }
311
+ export declare class TransactionBuilds extends Array<TransactionBuild> {
312
+ $count?: number;
313
+ }
314
+ export declare function _TransactionSubmissionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
315
+ new (...args: any[]): {
316
+ id?: __.Key<string>;
317
+ build?: __.Association.to<TransactionBuild> | null;
318
+ build_id?: string | null;
319
+ signedTxCbor?: string | null;
320
+ txHash?: _.Blake2b256 | null;
321
+ submittedAt?: number | null;
322
+ status?: _.SubmissionStatus | null;
323
+ errorCode?: string | null;
324
+ errorMessage?: string | null;
325
+ retryCount?: number | null;
326
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
327
+ hasErrors?: boolean | null;
328
+ };
329
+ readonly kind: "entity" | "type" | "aspect";
330
+ readonly keys: __.KeysOf<{
331
+ id?: __.Key<string>;
332
+ build?: __.Association.to<TransactionBuild> | null;
333
+ build_id?: string | null;
334
+ signedTxCbor?: string | null;
335
+ txHash?: _.Blake2b256 | null;
336
+ submittedAt?: number | null;
337
+ status?: _.SubmissionStatus | null;
338
+ errorCode?: string | null;
339
+ errorMessage?: string | null;
340
+ retryCount?: number | null;
341
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
342
+ hasErrors?: boolean | null;
343
+ }>;
344
+ readonly elements: __.ElementsOf<{
345
+ id?: __.Key<string>;
346
+ build?: __.Association.to<TransactionBuild> | null;
347
+ build_id?: string | null;
348
+ signedTxCbor?: string | null;
349
+ txHash?: _.Blake2b256 | null;
350
+ submittedAt?: number | null;
351
+ status?: _.SubmissionStatus | null;
352
+ errorCode?: string | null;
353
+ errorMessage?: string | null;
354
+ retryCount?: number | null;
355
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
356
+ hasErrors?: boolean | null;
357
+ }>;
358
+ readonly actions: globalThis.Record<never, never>;
359
+ } & TBase;
360
+ declare const TransactionSubmission_base: {
361
+ new (...args: any[]): {
362
+ id?: __.Key<string>;
363
+ build?: __.Association.to<TransactionBuild> | null;
364
+ build_id?: string | null;
365
+ signedTxCbor?: string | null;
366
+ txHash?: _.Blake2b256 | null;
367
+ submittedAt?: number | null;
368
+ status?: _.SubmissionStatus | null;
369
+ errorCode?: string | null;
370
+ errorMessage?: string | null;
371
+ retryCount?: number | null;
372
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
373
+ hasErrors?: boolean | null;
374
+ };
375
+ readonly kind: "entity" | "type" | "aspect";
376
+ readonly keys: __.KeysOf<{
377
+ id?: __.Key<string>;
378
+ build?: __.Association.to<TransactionBuild> | null;
379
+ build_id?: string | null;
380
+ signedTxCbor?: string | null;
381
+ txHash?: _.Blake2b256 | null;
382
+ submittedAt?: number | null;
383
+ status?: _.SubmissionStatus | null;
384
+ errorCode?: string | null;
385
+ errorMessage?: string | null;
386
+ retryCount?: number | null;
387
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
388
+ hasErrors?: boolean | null;
389
+ }>;
390
+ readonly elements: __.ElementsOf<{
391
+ id?: __.Key<string>;
392
+ build?: __.Association.to<TransactionBuild> | null;
393
+ build_id?: string | null;
394
+ signedTxCbor?: string | null;
395
+ txHash?: _.Blake2b256 | null;
396
+ submittedAt?: number | null;
397
+ status?: _.SubmissionStatus | null;
398
+ errorCode?: string | null;
399
+ errorMessage?: string | null;
400
+ retryCount?: number | null;
401
+ errors?: __.Composition.of.many<TransactionSubmissionErrors>;
402
+ hasErrors?: boolean | null;
403
+ }>;
404
+ readonly actions: globalThis.Record<never, never>;
405
+ } & typeof __.Entity;
406
+ export declare class TransactionSubmission extends TransactionSubmission_base {
407
+ }
408
+ export declare class TransactionSubmissions extends Array<TransactionSubmission> {
409
+ $count?: number;
410
+ }
411
+ export declare function _SigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
412
+ new (...args: any[]): {
413
+ id?: __.Key<string>;
414
+ build?: __.Association.to<TransactionBuild> | null;
415
+ build_id?: string | null;
416
+ txBodyHash?: _.Blake2b256 | null;
417
+ unsignedTxCbor?: string | null;
418
+ network?: string | null;
419
+ status?: _.SigningStatus | null;
420
+ createdAt?: __.CdsTimestamp | null;
421
+ expiresAt?: __.CdsTimestamp | null;
422
+ signedAt?: __.CdsTimestamp | null;
423
+ submittedAt?: __.CdsTimestamp | null;
424
+ cardanoCliCommand?: string | null;
425
+ cip30TxCbor?: string | null;
426
+ signerType?: string | null;
427
+ signerInfo?: string | null;
428
+ hsmKeyId?: string | null;
429
+ verifications?: __.Composition.of.many<SignatureVerifications>;
430
+ submission?: __.Association.to<TransactionSubmission> | null;
431
+ submission_id?: string | null;
432
+ errorMessage?: string | null;
433
+ };
434
+ readonly kind: "entity" | "type" | "aspect";
435
+ readonly keys: __.KeysOf<{
436
+ id?: __.Key<string>;
437
+ build?: __.Association.to<TransactionBuild> | null;
438
+ build_id?: string | null;
439
+ txBodyHash?: _.Blake2b256 | null;
440
+ unsignedTxCbor?: string | null;
441
+ network?: string | null;
442
+ status?: _.SigningStatus | null;
443
+ createdAt?: __.CdsTimestamp | null;
444
+ expiresAt?: __.CdsTimestamp | null;
445
+ signedAt?: __.CdsTimestamp | null;
446
+ submittedAt?: __.CdsTimestamp | null;
447
+ cardanoCliCommand?: string | null;
448
+ cip30TxCbor?: string | null;
449
+ signerType?: string | null;
450
+ signerInfo?: string | null;
451
+ hsmKeyId?: string | null;
452
+ verifications?: __.Composition.of.many<SignatureVerifications>;
453
+ submission?: __.Association.to<TransactionSubmission> | null;
454
+ submission_id?: string | null;
455
+ errorMessage?: string | null;
456
+ }>;
457
+ readonly elements: __.ElementsOf<{
458
+ id?: __.Key<string>;
459
+ build?: __.Association.to<TransactionBuild> | null;
460
+ build_id?: string | null;
461
+ txBodyHash?: _.Blake2b256 | null;
462
+ unsignedTxCbor?: string | null;
463
+ network?: string | null;
464
+ status?: _.SigningStatus | null;
465
+ createdAt?: __.CdsTimestamp | null;
466
+ expiresAt?: __.CdsTimestamp | null;
467
+ signedAt?: __.CdsTimestamp | null;
468
+ submittedAt?: __.CdsTimestamp | null;
469
+ cardanoCliCommand?: string | null;
470
+ cip30TxCbor?: string | null;
471
+ signerType?: string | null;
472
+ signerInfo?: string | null;
473
+ hsmKeyId?: string | null;
474
+ verifications?: __.Composition.of.many<SignatureVerifications>;
475
+ submission?: __.Association.to<TransactionSubmission> | null;
476
+ submission_id?: string | null;
477
+ errorMessage?: string | null;
478
+ }>;
479
+ readonly actions: globalThis.Record<never, never>;
480
+ } & TBase;
481
+ declare const SigningRequest_base: {
482
+ new (...args: any[]): {
483
+ id?: __.Key<string>;
484
+ build?: __.Association.to<TransactionBuild> | null;
485
+ build_id?: string | null;
486
+ txBodyHash?: _.Blake2b256 | null;
487
+ unsignedTxCbor?: string | null;
488
+ network?: string | null;
489
+ status?: _.SigningStatus | null;
490
+ createdAt?: __.CdsTimestamp | null;
491
+ expiresAt?: __.CdsTimestamp | null;
492
+ signedAt?: __.CdsTimestamp | null;
493
+ submittedAt?: __.CdsTimestamp | null;
494
+ cardanoCliCommand?: string | null;
495
+ cip30TxCbor?: string | null;
496
+ signerType?: string | null;
497
+ signerInfo?: string | null;
498
+ hsmKeyId?: string | null;
499
+ verifications?: __.Composition.of.many<SignatureVerifications>;
500
+ submission?: __.Association.to<TransactionSubmission> | null;
501
+ submission_id?: string | null;
502
+ errorMessage?: string | null;
503
+ };
504
+ readonly kind: "entity" | "type" | "aspect";
505
+ readonly keys: __.KeysOf<{
506
+ id?: __.Key<string>;
507
+ build?: __.Association.to<TransactionBuild> | null;
508
+ build_id?: string | null;
509
+ txBodyHash?: _.Blake2b256 | null;
510
+ unsignedTxCbor?: string | null;
511
+ network?: string | null;
512
+ status?: _.SigningStatus | null;
513
+ createdAt?: __.CdsTimestamp | null;
514
+ expiresAt?: __.CdsTimestamp | null;
515
+ signedAt?: __.CdsTimestamp | null;
516
+ submittedAt?: __.CdsTimestamp | null;
517
+ cardanoCliCommand?: string | null;
518
+ cip30TxCbor?: string | null;
519
+ signerType?: string | null;
520
+ signerInfo?: string | null;
521
+ hsmKeyId?: string | null;
522
+ verifications?: __.Composition.of.many<SignatureVerifications>;
523
+ submission?: __.Association.to<TransactionSubmission> | null;
524
+ submission_id?: string | null;
525
+ errorMessage?: string | null;
526
+ }>;
527
+ readonly elements: __.ElementsOf<{
528
+ id?: __.Key<string>;
529
+ build?: __.Association.to<TransactionBuild> | null;
530
+ build_id?: string | null;
531
+ txBodyHash?: _.Blake2b256 | null;
532
+ unsignedTxCbor?: string | null;
533
+ network?: string | null;
534
+ status?: _.SigningStatus | null;
535
+ createdAt?: __.CdsTimestamp | null;
536
+ expiresAt?: __.CdsTimestamp | null;
537
+ signedAt?: __.CdsTimestamp | null;
538
+ submittedAt?: __.CdsTimestamp | null;
539
+ cardanoCliCommand?: string | null;
540
+ cip30TxCbor?: string | null;
541
+ signerType?: string | null;
542
+ signerInfo?: string | null;
543
+ hsmKeyId?: string | null;
544
+ verifications?: __.Composition.of.many<SignatureVerifications>;
545
+ submission?: __.Association.to<TransactionSubmission> | null;
546
+ submission_id?: string | null;
547
+ errorMessage?: string | null;
548
+ }>;
549
+ readonly actions: globalThis.Record<never, never>;
550
+ } & typeof __.Entity;
551
+ export declare class SigningRequest extends SigningRequest_base {
552
+ }
553
+ export declare class SigningRequests extends Array<SigningRequest> {
554
+ $count?: number;
555
+ }
556
+ export declare function _AddressAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
557
+ new (...args: any[]): {
558
+ validFrom?: __.CdsTimestamp | null;
559
+ validTo?: __.CdsTimestamp | null;
560
+ address?: __.Key<_.Bech32>;
561
+ stakeAddress?: _.Bech32 | null;
562
+ type?: string | null;
563
+ isScript?: boolean | null;
564
+ totalLovelace?: _.Lovelace | null;
565
+ transactions?: __.Composition.of.many<AddressTransactions>;
566
+ assets?: __.Composition.of.many<AddressAssets>;
567
+ utxos?: __.Composition.of.many<AddressUTxOs>;
568
+ hasTransactions?: boolean | null;
569
+ hasAssets?: boolean | null;
570
+ hasUTxOs?: boolean | null;
571
+ };
572
+ readonly kind: "entity" | "type" | "aspect";
573
+ readonly keys: __.KeysOf<{
574
+ validFrom?: __.CdsTimestamp | null;
575
+ validTo?: __.CdsTimestamp | null;
576
+ address?: __.Key<_.Bech32>;
577
+ stakeAddress?: _.Bech32 | null;
578
+ type?: string | null;
579
+ isScript?: boolean | null;
580
+ totalLovelace?: _.Lovelace | null;
581
+ transactions?: __.Composition.of.many<AddressTransactions>;
582
+ assets?: __.Composition.of.many<AddressAssets>;
583
+ utxos?: __.Composition.of.many<AddressUTxOs>;
584
+ hasTransactions?: boolean | null;
585
+ hasAssets?: boolean | null;
586
+ hasUTxOs?: boolean | null;
587
+ }>;
588
+ readonly elements: __.ElementsOf<{
589
+ validFrom?: __.CdsTimestamp | null;
590
+ validTo?: __.CdsTimestamp | null;
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
+ }>;
603
+ readonly actions: globalThis.Record<never, never>;
604
+ } & TBase;
605
+ declare const Address_base: {
606
+ new (...args: any[]): {
607
+ validFrom?: __.CdsTimestamp | null;
608
+ validTo?: __.CdsTimestamp | null;
609
+ address?: __.Key<_.Bech32>;
610
+ stakeAddress?: _.Bech32 | null;
611
+ type?: string | null;
612
+ isScript?: boolean | null;
613
+ totalLovelace?: _.Lovelace | null;
614
+ transactions?: __.Composition.of.many<AddressTransactions>;
615
+ assets?: __.Composition.of.many<AddressAssets>;
616
+ utxos?: __.Composition.of.many<AddressUTxOs>;
617
+ hasTransactions?: boolean | null;
618
+ hasAssets?: boolean | null;
619
+ hasUTxOs?: boolean | null;
620
+ };
621
+ readonly kind: "entity" | "type" | "aspect";
622
+ readonly keys: __.KeysOf<{
623
+ validFrom?: __.CdsTimestamp | null;
624
+ validTo?: __.CdsTimestamp | null;
625
+ address?: __.Key<_.Bech32>;
626
+ stakeAddress?: _.Bech32 | null;
627
+ type?: string | null;
628
+ isScript?: boolean | null;
629
+ totalLovelace?: _.Lovelace | null;
630
+ transactions?: __.Composition.of.many<AddressTransactions>;
631
+ assets?: __.Composition.of.many<AddressAssets>;
632
+ utxos?: __.Composition.of.many<AddressUTxOs>;
633
+ hasTransactions?: boolean | null;
634
+ hasAssets?: boolean | null;
635
+ hasUTxOs?: boolean | null;
636
+ }>;
637
+ readonly elements: __.ElementsOf<{
638
+ validFrom?: __.CdsTimestamp | null;
639
+ validTo?: __.CdsTimestamp | null;
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
+ }>;
652
+ readonly actions: globalThis.Record<never, never>;
653
+ } & typeof __.Entity;
654
+ export declare class Address extends Address_base {
655
+ }
656
+ export declare class Addresses extends Array<Address> {
657
+ $count?: number;
658
+ }
659
+ export declare function _TransactionBuildInputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
660
+ new (...args: any[]): {
661
+ build?: __.Key<__.Association.to<TransactionBuild>>;
662
+ build_id?: __.Key<string>;
663
+ inputIndex?: __.Key<number>;
664
+ txHash?: _.Blake2b256 | null;
665
+ outputIndex?: number | null;
666
+ address?: _.Bech32 | null;
667
+ lovelace?: _.Lovelace | null;
668
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
669
+ hasAssets?: boolean | null;
670
+ };
671
+ readonly kind: "entity" | "type" | "aspect";
672
+ readonly keys: __.KeysOf<{
673
+ build?: __.Key<__.Association.to<TransactionBuild>>;
674
+ build_id?: __.Key<string>;
675
+ inputIndex?: __.Key<number>;
676
+ txHash?: _.Blake2b256 | null;
677
+ outputIndex?: number | null;
678
+ address?: _.Bech32 | null;
679
+ lovelace?: _.Lovelace | null;
680
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
681
+ hasAssets?: boolean | null;
682
+ }>;
683
+ readonly elements: __.ElementsOf<{
684
+ build?: __.Key<__.Association.to<TransactionBuild>>;
685
+ build_id?: __.Key<string>;
686
+ inputIndex?: __.Key<number>;
687
+ txHash?: _.Blake2b256 | null;
688
+ outputIndex?: number | null;
689
+ address?: _.Bech32 | null;
690
+ lovelace?: _.Lovelace | null;
691
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
692
+ hasAssets?: boolean | null;
693
+ }>;
694
+ readonly actions: globalThis.Record<never, never>;
695
+ } & TBase;
696
+ declare const TransactionBuildInput_base: {
697
+ new (...args: any[]): {
698
+ build?: __.Key<__.Association.to<TransactionBuild>>;
699
+ build_id?: __.Key<string>;
700
+ inputIndex?: __.Key<number>;
701
+ txHash?: _.Blake2b256 | null;
702
+ outputIndex?: number | null;
703
+ address?: _.Bech32 | null;
704
+ lovelace?: _.Lovelace | null;
705
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
706
+ hasAssets?: boolean | null;
707
+ };
708
+ readonly kind: "entity" | "type" | "aspect";
709
+ readonly keys: __.KeysOf<{
710
+ build?: __.Key<__.Association.to<TransactionBuild>>;
711
+ build_id?: __.Key<string>;
712
+ inputIndex?: __.Key<number>;
713
+ txHash?: _.Blake2b256 | null;
714
+ outputIndex?: number | null;
715
+ address?: _.Bech32 | null;
716
+ lovelace?: _.Lovelace | null;
717
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
718
+ hasAssets?: boolean | null;
719
+ }>;
720
+ readonly elements: __.ElementsOf<{
721
+ build?: __.Key<__.Association.to<TransactionBuild>>;
722
+ build_id?: __.Key<string>;
723
+ inputIndex?: __.Key<number>;
724
+ txHash?: _.Blake2b256 | null;
725
+ outputIndex?: number | null;
726
+ address?: _.Bech32 | null;
727
+ lovelace?: _.Lovelace | null;
728
+ assets?: __.Composition.of.many<TransactionBuildInputAssets>;
729
+ hasAssets?: boolean | null;
730
+ }>;
731
+ readonly actions: globalThis.Record<never, never>;
732
+ } & typeof __.Entity;
733
+ export declare class TransactionBuildInput extends TransactionBuildInput_base {
734
+ }
735
+ export declare class TransactionBuildInputs extends Array<TransactionBuildInput> {
736
+ $count?: number;
737
+ }
738
+ export declare function _TransactionBuildOutputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
739
+ new (...args: any[]): {
740
+ build?: __.Key<__.Association.to<TransactionBuild>>;
741
+ build_id?: __.Key<string>;
742
+ outputIndex?: __.Key<number>;
743
+ address?: _.Bech32 | null;
744
+ lovelace?: _.Lovelace | null;
745
+ isChange?: boolean | null;
746
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
747
+ hasAssets?: boolean | null;
748
+ };
749
+ readonly kind: "entity" | "type" | "aspect";
750
+ readonly keys: __.KeysOf<{
751
+ build?: __.Key<__.Association.to<TransactionBuild>>;
752
+ build_id?: __.Key<string>;
753
+ outputIndex?: __.Key<number>;
754
+ address?: _.Bech32 | null;
755
+ lovelace?: _.Lovelace | null;
756
+ isChange?: boolean | null;
757
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
758
+ hasAssets?: boolean | null;
759
+ }>;
760
+ readonly elements: __.ElementsOf<{
761
+ build?: __.Key<__.Association.to<TransactionBuild>>;
762
+ build_id?: __.Key<string>;
763
+ outputIndex?: __.Key<number>;
764
+ address?: _.Bech32 | null;
765
+ lovelace?: _.Lovelace | null;
766
+ isChange?: boolean | null;
767
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
768
+ hasAssets?: boolean | null;
769
+ }>;
770
+ readonly actions: globalThis.Record<never, never>;
771
+ } & TBase;
772
+ declare const TransactionBuildOutput_base: {
773
+ new (...args: any[]): {
774
+ build?: __.Key<__.Association.to<TransactionBuild>>;
775
+ build_id?: __.Key<string>;
776
+ outputIndex?: __.Key<number>;
777
+ address?: _.Bech32 | null;
778
+ lovelace?: _.Lovelace | null;
779
+ isChange?: boolean | null;
780
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
781
+ hasAssets?: boolean | null;
782
+ };
783
+ readonly kind: "entity" | "type" | "aspect";
784
+ readonly keys: __.KeysOf<{
785
+ build?: __.Key<__.Association.to<TransactionBuild>>;
786
+ build_id?: __.Key<string>;
787
+ outputIndex?: __.Key<number>;
788
+ address?: _.Bech32 | null;
789
+ lovelace?: _.Lovelace | null;
790
+ isChange?: boolean | null;
791
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
792
+ hasAssets?: boolean | null;
793
+ }>;
794
+ readonly elements: __.ElementsOf<{
795
+ build?: __.Key<__.Association.to<TransactionBuild>>;
796
+ build_id?: __.Key<string>;
797
+ outputIndex?: __.Key<number>;
798
+ address?: _.Bech32 | null;
799
+ lovelace?: _.Lovelace | null;
800
+ isChange?: boolean | null;
801
+ assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
802
+ hasAssets?: boolean | null;
803
+ }>;
804
+ readonly actions: globalThis.Record<never, never>;
805
+ } & typeof __.Entity;
806
+ export declare class TransactionBuildOutput extends TransactionBuildOutput_base {
807
+ }
808
+ export declare class TransactionBuildOutputs extends Array<TransactionBuildOutput> {
809
+ $count?: number;
810
+ }
811
+ export declare function _TransactionSubmissionErrorAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
812
+ new (...args: any[]): {
813
+ id?: __.Key<string>;
814
+ submission?: __.Association.to<TransactionSubmission> | null;
815
+ submission_id?: string | null;
816
+ occurredAt?: number | null;
817
+ errorType?: string | null;
818
+ errorCode?: string | null;
819
+ errorMessage?: string | null;
820
+ errorDetails?: string | null;
821
+ isRecoverable?: boolean | null;
822
+ };
823
+ readonly kind: "entity" | "type" | "aspect";
824
+ readonly keys: __.KeysOf<{
825
+ id?: __.Key<string>;
826
+ submission?: __.Association.to<TransactionSubmission> | null;
827
+ submission_id?: string | null;
828
+ occurredAt?: number | null;
829
+ errorType?: string | null;
830
+ errorCode?: string | null;
831
+ errorMessage?: string | null;
832
+ errorDetails?: string | null;
833
+ isRecoverable?: boolean | null;
834
+ }>;
835
+ readonly elements: __.ElementsOf<{
836
+ id?: __.Key<string>;
837
+ submission?: __.Association.to<TransactionSubmission> | null;
838
+ submission_id?: string | null;
839
+ occurredAt?: number | null;
840
+ errorType?: string | null;
841
+ errorCode?: string | null;
842
+ errorMessage?: string | null;
843
+ errorDetails?: string | null;
844
+ isRecoverable?: boolean | null;
845
+ }>;
846
+ readonly actions: globalThis.Record<never, never>;
847
+ } & TBase;
848
+ declare const TransactionSubmissionError_base: {
849
+ new (...args: any[]): {
850
+ id?: __.Key<string>;
851
+ submission?: __.Association.to<TransactionSubmission> | null;
852
+ submission_id?: string | null;
853
+ occurredAt?: number | null;
854
+ errorType?: string | null;
855
+ errorCode?: string | null;
856
+ errorMessage?: string | null;
857
+ errorDetails?: string | null;
858
+ isRecoverable?: boolean | null;
859
+ };
860
+ readonly kind: "entity" | "type" | "aspect";
861
+ readonly keys: __.KeysOf<{
862
+ id?: __.Key<string>;
863
+ submission?: __.Association.to<TransactionSubmission> | null;
864
+ submission_id?: string | null;
865
+ occurredAt?: number | null;
866
+ errorType?: string | null;
867
+ errorCode?: string | null;
868
+ errorMessage?: string | null;
869
+ errorDetails?: string | null;
870
+ isRecoverable?: boolean | null;
871
+ }>;
872
+ readonly elements: __.ElementsOf<{
873
+ id?: __.Key<string>;
874
+ submission?: __.Association.to<TransactionSubmission> | null;
875
+ submission_id?: string | null;
876
+ occurredAt?: number | null;
877
+ errorType?: string | null;
878
+ errorCode?: string | null;
879
+ errorMessage?: string | null;
880
+ errorDetails?: string | null;
881
+ isRecoverable?: boolean | null;
882
+ }>;
883
+ readonly actions: globalThis.Record<never, never>;
884
+ } & typeof __.Entity;
885
+ export declare class TransactionSubmissionError extends TransactionSubmissionError_base {
886
+ }
887
+ export declare class TransactionSubmissionErrors extends Array<TransactionSubmissionError> {
888
+ $count?: number;
889
+ }
890
+ export declare function _AddressTransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
891
+ new (...args: any[]): {
892
+ address?: __.Key<__.Association.to<Address>>;
893
+ address_address?: __.Key<_.Bech32>;
894
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
895
+ tx_hash?: __.Key<_.Blake2b256>;
896
+ netAmount?: number | null;
897
+ blockTime?: number | null;
898
+ netAssets?: string | null;
899
+ hasAssets?: boolean | null;
900
+ };
901
+ readonly kind: "entity" | "type" | "aspect";
902
+ readonly keys: __.KeysOf<{
903
+ address?: __.Key<__.Association.to<Address>>;
904
+ address_address?: __.Key<_.Bech32>;
905
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
906
+ tx_hash?: __.Key<_.Blake2b256>;
907
+ netAmount?: number | null;
908
+ blockTime?: number | null;
909
+ netAssets?: string | null;
910
+ hasAssets?: boolean | null;
911
+ }>;
912
+ readonly elements: __.ElementsOf<{
913
+ address?: __.Key<__.Association.to<Address>>;
914
+ address_address?: __.Key<_.Bech32>;
915
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
916
+ tx_hash?: __.Key<_.Blake2b256>;
917
+ netAmount?: number | null;
918
+ blockTime?: number | null;
919
+ netAssets?: string | null;
920
+ hasAssets?: boolean | null;
921
+ }>;
922
+ readonly actions: globalThis.Record<never, never>;
923
+ } & TBase;
924
+ declare const AddressTransaction_base: {
925
+ new (...args: any[]): {
926
+ address?: __.Key<__.Association.to<Address>>;
927
+ address_address?: __.Key<_.Bech32>;
928
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
929
+ tx_hash?: __.Key<_.Blake2b256>;
930
+ netAmount?: number | null;
931
+ blockTime?: number | null;
932
+ netAssets?: string | null;
933
+ hasAssets?: boolean | null;
934
+ };
935
+ readonly kind: "entity" | "type" | "aspect";
936
+ readonly keys: __.KeysOf<{
937
+ address?: __.Key<__.Association.to<Address>>;
938
+ address_address?: __.Key<_.Bech32>;
939
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
940
+ tx_hash?: __.Key<_.Blake2b256>;
941
+ netAmount?: number | null;
942
+ blockTime?: number | null;
943
+ netAssets?: string | null;
944
+ hasAssets?: boolean | null;
945
+ }>;
946
+ readonly elements: __.ElementsOf<{
947
+ address?: __.Key<__.Association.to<Address>>;
948
+ address_address?: __.Key<_.Bech32>;
949
+ tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
950
+ tx_hash?: __.Key<_.Blake2b256>;
951
+ netAmount?: number | null;
952
+ blockTime?: number | null;
953
+ netAssets?: string | null;
954
+ hasAssets?: boolean | null;
955
+ }>;
956
+ readonly actions: globalThis.Record<never, never>;
957
+ } & typeof __.Entity;
958
+ export declare class AddressTransaction extends AddressTransaction_base {
959
+ }
960
+ export declare class AddressTransactions extends Array<AddressTransaction> {
961
+ $count?: number;
962
+ }
963
+ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
964
+ new (...args: any[]): {
965
+ validFrom?: __.CdsTimestamp | null;
966
+ validTo?: __.CdsTimestamp | null;
967
+ address?: __.Key<__.Association.to<Address>>;
968
+ address_address?: __.Key<_.Bech32>;
969
+ unit?: __.Key<_.AssetUnit>;
970
+ asset_quantity?: _.Lovelace | null;
971
+ asset_policyId?: _.Blake2b224 | null;
972
+ asset_assetNameHex?: _.HexBytes | null;
973
+ asset_assetName?: string | null;
974
+ asset_fingerprint?: string | null;
975
+ };
976
+ readonly kind: "entity" | "type" | "aspect";
977
+ readonly keys: __.KeysOf<{
978
+ validFrom?: __.CdsTimestamp | null;
979
+ validTo?: __.CdsTimestamp | null;
980
+ address?: __.Key<__.Association.to<Address>>;
981
+ address_address?: __.Key<_.Bech32>;
982
+ unit?: __.Key<_.AssetUnit>;
983
+ asset_quantity?: _.Lovelace | null;
984
+ asset_policyId?: _.Blake2b224 | null;
985
+ asset_assetNameHex?: _.HexBytes | null;
986
+ asset_assetName?: string | null;
987
+ asset_fingerprint?: string | null;
988
+ }>;
989
+ readonly elements: __.ElementsOf<{
990
+ validFrom?: __.CdsTimestamp | null;
991
+ validTo?: __.CdsTimestamp | null;
992
+ address?: __.Key<__.Association.to<Address>>;
993
+ address_address?: __.Key<_.Bech32>;
994
+ unit?: __.Key<_.AssetUnit>;
995
+ asset_quantity?: _.Lovelace | null;
996
+ asset_policyId?: _.Blake2b224 | null;
997
+ asset_assetNameHex?: _.HexBytes | null;
998
+ asset_assetName?: string | null;
999
+ asset_fingerprint?: string | null;
1000
+ }>;
1001
+ readonly actions: globalThis.Record<never, never>;
1002
+ } & TBase;
1003
+ declare const AddressAsset_base: {
1004
+ new (...args: any[]): {
1005
+ validFrom?: __.CdsTimestamp | null;
1006
+ validTo?: __.CdsTimestamp | null;
1007
+ address?: __.Key<__.Association.to<Address>>;
1008
+ address_address?: __.Key<_.Bech32>;
1009
+ unit?: __.Key<_.AssetUnit>;
1010
+ asset_quantity?: _.Lovelace | null;
1011
+ asset_policyId?: _.Blake2b224 | null;
1012
+ asset_assetNameHex?: _.HexBytes | null;
1013
+ asset_assetName?: string | null;
1014
+ asset_fingerprint?: string | null;
1015
+ };
1016
+ readonly kind: "entity" | "type" | "aspect";
1017
+ readonly keys: __.KeysOf<{
1018
+ validFrom?: __.CdsTimestamp | null;
1019
+ validTo?: __.CdsTimestamp | null;
1020
+ address?: __.Key<__.Association.to<Address>>;
1021
+ address_address?: __.Key<_.Bech32>;
1022
+ unit?: __.Key<_.AssetUnit>;
1023
+ asset_quantity?: _.Lovelace | null;
1024
+ asset_policyId?: _.Blake2b224 | null;
1025
+ asset_assetNameHex?: _.HexBytes | null;
1026
+ asset_assetName?: string | null;
1027
+ asset_fingerprint?: string | null;
1028
+ }>;
1029
+ readonly elements: __.ElementsOf<{
1030
+ validFrom?: __.CdsTimestamp | null;
1031
+ validTo?: __.CdsTimestamp | null;
1032
+ address?: __.Key<__.Association.to<Address>>;
1033
+ address_address?: __.Key<_.Bech32>;
1034
+ unit?: __.Key<_.AssetUnit>;
1035
+ asset_quantity?: _.Lovelace | null;
1036
+ asset_policyId?: _.Blake2b224 | null;
1037
+ asset_assetNameHex?: _.HexBytes | null;
1038
+ asset_assetName?: string | null;
1039
+ asset_fingerprint?: string | null;
1040
+ }>;
1041
+ readonly actions: globalThis.Record<never, never>;
1042
+ } & typeof __.Entity;
1043
+ export declare class AddressAsset extends AddressAsset_base {
1044
+ }
1045
+ export declare class AddressAssets extends Array<AddressAsset> {
1046
+ $count?: number;
1047
+ }
1048
+ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1049
+ new (...args: any[]): {
1050
+ validFrom?: __.CdsTimestamp | null;
1051
+ validTo?: __.CdsTimestamp | null;
1052
+ address?: __.Key<__.Association.to<Address>>;
1053
+ address_address?: __.Key<_.Bech32>;
1054
+ hash?: __.Key<_.Blake2b256>;
1055
+ index?: __.Key<number>;
1056
+ blockHash?: _.Blake2b256 | null;
1057
+ utxodata_dataHash?: _.Blake2b256 | null;
1058
+ utxodata_inlineDatum?: string | null;
1059
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1060
+ lovelace?: _.Lovelace | null;
1061
+ assets?: __.Composition.of.many<UTxOAssets>;
1062
+ hasAssets?: boolean | null;
1063
+ };
1064
+ readonly kind: "entity" | "type" | "aspect";
1065
+ readonly keys: __.KeysOf<{
1066
+ validFrom?: __.CdsTimestamp | null;
1067
+ validTo?: __.CdsTimestamp | null;
1068
+ address?: __.Key<__.Association.to<Address>>;
1069
+ address_address?: __.Key<_.Bech32>;
1070
+ hash?: __.Key<_.Blake2b256>;
1071
+ index?: __.Key<number>;
1072
+ blockHash?: _.Blake2b256 | null;
1073
+ utxodata_dataHash?: _.Blake2b256 | null;
1074
+ utxodata_inlineDatum?: string | null;
1075
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1076
+ lovelace?: _.Lovelace | null;
1077
+ assets?: __.Composition.of.many<UTxOAssets>;
1078
+ hasAssets?: boolean | null;
1079
+ }>;
1080
+ readonly elements: __.ElementsOf<{
1081
+ validFrom?: __.CdsTimestamp | null;
1082
+ validTo?: __.CdsTimestamp | null;
1083
+ address?: __.Key<__.Association.to<Address>>;
1084
+ address_address?: __.Key<_.Bech32>;
1085
+ hash?: __.Key<_.Blake2b256>;
1086
+ index?: __.Key<number>;
1087
+ blockHash?: _.Blake2b256 | null;
1088
+ utxodata_dataHash?: _.Blake2b256 | null;
1089
+ utxodata_inlineDatum?: string | null;
1090
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1091
+ lovelace?: _.Lovelace | null;
1092
+ assets?: __.Composition.of.many<UTxOAssets>;
1093
+ hasAssets?: boolean | null;
1094
+ }>;
1095
+ readonly actions: globalThis.Record<never, never>;
1096
+ } & TBase;
1097
+ declare const AddressUTxO_base: {
1098
+ new (...args: any[]): {
1099
+ validFrom?: __.CdsTimestamp | null;
1100
+ validTo?: __.CdsTimestamp | null;
1101
+ address?: __.Key<__.Association.to<Address>>;
1102
+ address_address?: __.Key<_.Bech32>;
1103
+ hash?: __.Key<_.Blake2b256>;
1104
+ index?: __.Key<number>;
1105
+ blockHash?: _.Blake2b256 | null;
1106
+ utxodata_dataHash?: _.Blake2b256 | null;
1107
+ utxodata_inlineDatum?: string | null;
1108
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1109
+ lovelace?: _.Lovelace | null;
1110
+ assets?: __.Composition.of.many<UTxOAssets>;
1111
+ hasAssets?: boolean | null;
1112
+ };
1113
+ readonly kind: "entity" | "type" | "aspect";
1114
+ readonly keys: __.KeysOf<{
1115
+ validFrom?: __.CdsTimestamp | null;
1116
+ validTo?: __.CdsTimestamp | null;
1117
+ address?: __.Key<__.Association.to<Address>>;
1118
+ address_address?: __.Key<_.Bech32>;
1119
+ hash?: __.Key<_.Blake2b256>;
1120
+ index?: __.Key<number>;
1121
+ blockHash?: _.Blake2b256 | null;
1122
+ utxodata_dataHash?: _.Blake2b256 | null;
1123
+ utxodata_inlineDatum?: string | null;
1124
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1125
+ lovelace?: _.Lovelace | null;
1126
+ assets?: __.Composition.of.many<UTxOAssets>;
1127
+ hasAssets?: boolean | null;
1128
+ }>;
1129
+ readonly elements: __.ElementsOf<{
1130
+ validFrom?: __.CdsTimestamp | null;
1131
+ validTo?: __.CdsTimestamp | null;
1132
+ address?: __.Key<__.Association.to<Address>>;
1133
+ address_address?: __.Key<_.Bech32>;
1134
+ hash?: __.Key<_.Blake2b256>;
1135
+ index?: __.Key<number>;
1136
+ blockHash?: _.Blake2b256 | null;
1137
+ utxodata_dataHash?: _.Blake2b256 | null;
1138
+ utxodata_inlineDatum?: string | null;
1139
+ utxodata_referenceScriptHash?: _.Blake2b256 | null;
1140
+ lovelace?: _.Lovelace | null;
1141
+ assets?: __.Composition.of.many<UTxOAssets>;
1142
+ hasAssets?: boolean | null;
1143
+ }>;
1144
+ readonly actions: globalThis.Record<never, never>;
1145
+ } & typeof __.Entity;
1146
+ export declare class AddressUTxO extends AddressUTxO_base {
1147
+ }
1148
+ export declare class AddressUTxOs extends Array<AddressUTxO> {
1149
+ $count?: number;
1150
+ }
1151
+ export declare function _TransactionBuildInputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1152
+ new (...args: any[]): {
1153
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1154
+ input_inputIndex?: __.Key<number>;
1155
+ input_build_id?: __.Key<string>;
1156
+ unit?: __.Key<_.AssetUnit>;
1157
+ asset_quantity?: _.Lovelace | null;
1158
+ asset_policyId?: _.Blake2b224 | null;
1159
+ asset_assetNameHex?: _.HexBytes | null;
1160
+ asset_assetName?: string | null;
1161
+ asset_fingerprint?: string | null;
1162
+ };
1163
+ readonly kind: "entity" | "type" | "aspect";
1164
+ readonly keys: __.KeysOf<{
1165
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1166
+ input_inputIndex?: __.Key<number>;
1167
+ input_build_id?: __.Key<string>;
1168
+ unit?: __.Key<_.AssetUnit>;
1169
+ asset_quantity?: _.Lovelace | null;
1170
+ asset_policyId?: _.Blake2b224 | null;
1171
+ asset_assetNameHex?: _.HexBytes | null;
1172
+ asset_assetName?: string | null;
1173
+ asset_fingerprint?: string | null;
1174
+ }>;
1175
+ readonly elements: __.ElementsOf<{
1176
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1177
+ input_inputIndex?: __.Key<number>;
1178
+ input_build_id?: __.Key<string>;
1179
+ unit?: __.Key<_.AssetUnit>;
1180
+ asset_quantity?: _.Lovelace | null;
1181
+ asset_policyId?: _.Blake2b224 | null;
1182
+ asset_assetNameHex?: _.HexBytes | null;
1183
+ asset_assetName?: string | null;
1184
+ asset_fingerprint?: string | null;
1185
+ }>;
1186
+ readonly actions: globalThis.Record<never, never>;
1187
+ } & TBase;
1188
+ declare const TransactionBuildInputAsset_base: {
1189
+ new (...args: any[]): {
1190
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1191
+ input_inputIndex?: __.Key<number>;
1192
+ input_build_id?: __.Key<string>;
1193
+ unit?: __.Key<_.AssetUnit>;
1194
+ asset_quantity?: _.Lovelace | null;
1195
+ asset_policyId?: _.Blake2b224 | null;
1196
+ asset_assetNameHex?: _.HexBytes | null;
1197
+ asset_assetName?: string | null;
1198
+ asset_fingerprint?: string | null;
1199
+ };
1200
+ readonly kind: "entity" | "type" | "aspect";
1201
+ readonly keys: __.KeysOf<{
1202
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1203
+ input_inputIndex?: __.Key<number>;
1204
+ input_build_id?: __.Key<string>;
1205
+ unit?: __.Key<_.AssetUnit>;
1206
+ asset_quantity?: _.Lovelace | null;
1207
+ asset_policyId?: _.Blake2b224 | null;
1208
+ asset_assetNameHex?: _.HexBytes | null;
1209
+ asset_assetName?: string | null;
1210
+ asset_fingerprint?: string | null;
1211
+ }>;
1212
+ readonly elements: __.ElementsOf<{
1213
+ input?: __.Key<__.Association.to<TransactionBuildInput>>;
1214
+ input_inputIndex?: __.Key<number>;
1215
+ input_build_id?: __.Key<string>;
1216
+ unit?: __.Key<_.AssetUnit>;
1217
+ asset_quantity?: _.Lovelace | null;
1218
+ asset_policyId?: _.Blake2b224 | null;
1219
+ asset_assetNameHex?: _.HexBytes | null;
1220
+ asset_assetName?: string | null;
1221
+ asset_fingerprint?: string | null;
1222
+ }>;
1223
+ readonly actions: globalThis.Record<never, never>;
1224
+ } & typeof __.Entity;
1225
+ export declare class TransactionBuildInputAsset extends TransactionBuildInputAsset_base {
1226
+ }
1227
+ export declare class TransactionBuildInputAssets extends Array<TransactionBuildInputAsset> {
1228
+ $count?: number;
1229
+ }
1230
+ export declare function _TransactionBuildOutputAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1231
+ new (...args: any[]): {
1232
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1233
+ output_outputIndex?: __.Key<number>;
1234
+ output_build_id?: __.Key<string>;
1235
+ unit?: __.Key<_.AssetUnit>;
1236
+ asset_quantity?: _.Lovelace | null;
1237
+ asset_policyId?: _.Blake2b224 | null;
1238
+ asset_assetNameHex?: _.HexBytes | null;
1239
+ asset_assetName?: string | null;
1240
+ asset_fingerprint?: string | null;
1241
+ };
1242
+ readonly kind: "entity" | "type" | "aspect";
1243
+ readonly keys: __.KeysOf<{
1244
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1245
+ output_outputIndex?: __.Key<number>;
1246
+ output_build_id?: __.Key<string>;
1247
+ unit?: __.Key<_.AssetUnit>;
1248
+ asset_quantity?: _.Lovelace | null;
1249
+ asset_policyId?: _.Blake2b224 | null;
1250
+ asset_assetNameHex?: _.HexBytes | null;
1251
+ asset_assetName?: string | null;
1252
+ asset_fingerprint?: string | null;
1253
+ }>;
1254
+ readonly elements: __.ElementsOf<{
1255
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1256
+ output_outputIndex?: __.Key<number>;
1257
+ output_build_id?: __.Key<string>;
1258
+ unit?: __.Key<_.AssetUnit>;
1259
+ asset_quantity?: _.Lovelace | null;
1260
+ asset_policyId?: _.Blake2b224 | null;
1261
+ asset_assetNameHex?: _.HexBytes | null;
1262
+ asset_assetName?: string | null;
1263
+ asset_fingerprint?: string | null;
1264
+ }>;
1265
+ readonly actions: globalThis.Record<never, never>;
1266
+ } & TBase;
1267
+ declare const TransactionBuildOutputAsset_base: {
1268
+ new (...args: any[]): {
1269
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1270
+ output_outputIndex?: __.Key<number>;
1271
+ output_build_id?: __.Key<string>;
1272
+ unit?: __.Key<_.AssetUnit>;
1273
+ asset_quantity?: _.Lovelace | null;
1274
+ asset_policyId?: _.Blake2b224 | null;
1275
+ asset_assetNameHex?: _.HexBytes | null;
1276
+ asset_assetName?: string | null;
1277
+ asset_fingerprint?: string | null;
1278
+ };
1279
+ readonly kind: "entity" | "type" | "aspect";
1280
+ readonly keys: __.KeysOf<{
1281
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1282
+ output_outputIndex?: __.Key<number>;
1283
+ output_build_id?: __.Key<string>;
1284
+ unit?: __.Key<_.AssetUnit>;
1285
+ asset_quantity?: _.Lovelace | null;
1286
+ asset_policyId?: _.Blake2b224 | null;
1287
+ asset_assetNameHex?: _.HexBytes | null;
1288
+ asset_assetName?: string | null;
1289
+ asset_fingerprint?: string | null;
1290
+ }>;
1291
+ readonly elements: __.ElementsOf<{
1292
+ output?: __.Key<__.Association.to<TransactionBuildOutput>>;
1293
+ output_outputIndex?: __.Key<number>;
1294
+ output_build_id?: __.Key<string>;
1295
+ unit?: __.Key<_.AssetUnit>;
1296
+ asset_quantity?: _.Lovelace | null;
1297
+ asset_policyId?: _.Blake2b224 | null;
1298
+ asset_assetNameHex?: _.HexBytes | null;
1299
+ asset_assetName?: string | null;
1300
+ asset_fingerprint?: string | null;
1301
+ }>;
1302
+ readonly actions: globalThis.Record<never, never>;
1303
+ } & typeof __.Entity;
1304
+ export declare class TransactionBuildOutputAsset extends TransactionBuildOutputAsset_base {
1305
+ }
1306
+ export declare class TransactionBuildOutputAssets extends Array<TransactionBuildOutputAsset> {
1307
+ $count?: number;
1308
+ }
1309
+ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
1310
+ new (...args: any[]): {
1311
+ validFrom?: __.CdsTimestamp | null;
1312
+ validTo?: __.CdsTimestamp | null;
1313
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1314
+ utxo_hash?: __.Key<_.Blake2b256>;
1315
+ utxo_index?: __.Key<number>;
1316
+ utxo_address_address?: __.Key<_.Bech32>;
1317
+ unit?: __.Key<_.AssetUnit>;
1318
+ asset_quantity?: _.Lovelace | null;
1319
+ asset_policyId?: _.Blake2b224 | null;
1320
+ asset_assetNameHex?: _.HexBytes | null;
1321
+ asset_assetName?: string | null;
1322
+ asset_fingerprint?: string | null;
1323
+ };
1324
+ readonly kind: "entity" | "type" | "aspect";
1325
+ readonly keys: __.KeysOf<{
1326
+ validFrom?: __.CdsTimestamp | null;
1327
+ validTo?: __.CdsTimestamp | null;
1328
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1329
+ utxo_hash?: __.Key<_.Blake2b256>;
1330
+ utxo_index?: __.Key<number>;
1331
+ utxo_address_address?: __.Key<_.Bech32>;
1332
+ unit?: __.Key<_.AssetUnit>;
1333
+ asset_quantity?: _.Lovelace | null;
1334
+ asset_policyId?: _.Blake2b224 | null;
1335
+ asset_assetNameHex?: _.HexBytes | null;
1336
+ asset_assetName?: string | null;
1337
+ asset_fingerprint?: string | null;
1338
+ }>;
1339
+ readonly elements: __.ElementsOf<{
1340
+ validFrom?: __.CdsTimestamp | null;
1341
+ validTo?: __.CdsTimestamp | null;
1342
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1343
+ utxo_hash?: __.Key<_.Blake2b256>;
1344
+ utxo_index?: __.Key<number>;
1345
+ utxo_address_address?: __.Key<_.Bech32>;
1346
+ unit?: __.Key<_.AssetUnit>;
1347
+ asset_quantity?: _.Lovelace | null;
1348
+ asset_policyId?: _.Blake2b224 | null;
1349
+ asset_assetNameHex?: _.HexBytes | null;
1350
+ asset_assetName?: string | null;
1351
+ asset_fingerprint?: string | null;
1352
+ }>;
1353
+ readonly actions: globalThis.Record<never, never>;
1354
+ } & TBase;
1355
+ declare const UTxOAsset_base: {
1356
+ new (...args: any[]): {
1357
+ validFrom?: __.CdsTimestamp | null;
1358
+ validTo?: __.CdsTimestamp | null;
1359
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1360
+ utxo_hash?: __.Key<_.Blake2b256>;
1361
+ utxo_index?: __.Key<number>;
1362
+ utxo_address_address?: __.Key<_.Bech32>;
1363
+ unit?: __.Key<_.AssetUnit>;
1364
+ asset_quantity?: _.Lovelace | null;
1365
+ asset_policyId?: _.Blake2b224 | null;
1366
+ asset_assetNameHex?: _.HexBytes | null;
1367
+ asset_assetName?: string | null;
1368
+ asset_fingerprint?: string | null;
1369
+ };
1370
+ readonly kind: "entity" | "type" | "aspect";
1371
+ readonly keys: __.KeysOf<{
1372
+ validFrom?: __.CdsTimestamp | null;
1373
+ validTo?: __.CdsTimestamp | null;
1374
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1375
+ utxo_hash?: __.Key<_.Blake2b256>;
1376
+ utxo_index?: __.Key<number>;
1377
+ utxo_address_address?: __.Key<_.Bech32>;
1378
+ unit?: __.Key<_.AssetUnit>;
1379
+ asset_quantity?: _.Lovelace | null;
1380
+ asset_policyId?: _.Blake2b224 | null;
1381
+ asset_assetNameHex?: _.HexBytes | null;
1382
+ asset_assetName?: string | null;
1383
+ asset_fingerprint?: string | null;
1384
+ }>;
1385
+ readonly elements: __.ElementsOf<{
1386
+ validFrom?: __.CdsTimestamp | null;
1387
+ validTo?: __.CdsTimestamp | null;
1388
+ utxo?: __.Key<__.Association.to<AddressUTxO>>;
1389
+ utxo_hash?: __.Key<_.Blake2b256>;
1390
+ utxo_index?: __.Key<number>;
1391
+ utxo_address_address?: __.Key<_.Bech32>;
1392
+ unit?: __.Key<_.AssetUnit>;
1393
+ asset_quantity?: _.Lovelace | null;
1394
+ asset_policyId?: _.Blake2b224 | null;
1395
+ asset_assetNameHex?: _.HexBytes | null;
1396
+ asset_assetName?: string | null;
1397
+ asset_fingerprint?: string | null;
1398
+ }>;
1399
+ readonly actions: globalThis.Record<never, never>;
1400
+ } & typeof __.Entity;
1401
+ export declare class UTxOAsset extends UTxOAsset_base {
1402
+ }
1403
+ export declare class UTxOAssets extends Array<UTxOAsset> {
1404
+ $count?: number;
1405
+ }
1406
+ export declare const VerifySignature: {
1407
+ (signingRequestId: string | null, signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): globalThis.Promise<SignatureVerification | null> | SignatureVerification | null;
1408
+ ({ signingRequestId, signedTxCbor, signerType, signerInfo }: {
1409
+ signingRequestId?: string | null;
1410
+ signedTxCbor?: string | null;
1411
+ signerType?: string | null;
1412
+ signerInfo?: string | null;
1413
+ }): globalThis.Promise<SignatureVerification | null> | SignatureVerification | null;
1414
+ __parameters: {
1415
+ signingRequestId?: string | null;
1416
+ signedTxCbor?: string | null;
1417
+ signerType?: string | null;
1418
+ signerInfo?: string | null;
1419
+ };
1420
+ __returns: globalThis.Promise<SignatureVerification | null> | SignatureVerification | null;
1421
+ __self: never;
1422
+ kind: 'action';
1423
+ };
1424
+ export declare const SubmitVerifiedTransaction: {
1425
+ (signingRequestId: string | null, signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1426
+ ({ signingRequestId, signedTxCbor, signerType, signerInfo }: {
1427
+ signingRequestId?: string | null;
1428
+ signedTxCbor?: string | null;
1429
+ signerType?: string | null;
1430
+ signerInfo?: string | null;
1431
+ }): globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1432
+ __parameters: {
1433
+ signingRequestId?: string | null;
1434
+ signedTxCbor?: string | null;
1435
+ signerType?: string | null;
1436
+ signerInfo?: string | null;
1437
+ };
1438
+ __returns: globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1439
+ __self: never;
1440
+ kind: 'action';
1441
+ };
1442
+ export declare const CreateSigningRequest: {
1443
+ (buildId: string | null, message: string | null): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1444
+ ({ buildId, message }: {
1445
+ buildId?: string | null;
1446
+ message?: string | null;
1447
+ }): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1448
+ __parameters: {
1449
+ buildId?: string | null;
1450
+ message?: string | null;
1451
+ };
1452
+ __returns: globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1453
+ __self: never;
1454
+ kind: 'action';
1455
+ };
1456
+ export declare const GetSigningRequest: {
1457
+ (signingRequestId: string | null): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1458
+ ({ signingRequestId }: {
1459
+ signingRequestId?: string | null;
1460
+ }): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1461
+ __parameters: {
1462
+ signingRequestId?: string | null;
1463
+ };
1464
+ __returns: globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1465
+ __self: never;
1466
+ kind: 'action';
1467
+ };
1468
+ export declare const GetSigningRequestsByAddress: {
1469
+ (address: _.Bech32 | null): globalThis.Promise<Array<AddressSigningRequest>> | Array<AddressSigningRequest>;
1470
+ ({ address }: {
1471
+ address?: _.Bech32 | null;
1472
+ }): globalThis.Promise<Array<AddressSigningRequest>> | Array<AddressSigningRequest>;
1473
+ __parameters: {
1474
+ address?: _.Bech32 | null;
1475
+ };
1476
+ __returns: globalThis.Promise<Array<AddressSigningRequest>> | Array<AddressSigningRequest>;
1477
+ __self: never;
1478
+ kind: 'action';
1479
+ };
1480
+ export declare const SignWithHsm: {
1481
+ (buildId: string | null): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1482
+ ({ buildId }: {
1483
+ buildId?: string | null;
1484
+ }): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1485
+ __parameters: {
1486
+ buildId?: string | null;
1487
+ };
1488
+ __returns: globalThis.Promise<SigningRequest | null> | SigningRequest | null;
1489
+ __self: never;
1490
+ kind: 'action';
1491
+ };
1492
+ export declare const SignAndSubmitWithHsm: {
1493
+ (buildId: string | null): globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1494
+ ({ buildId }: {
1495
+ buildId?: string | null;
1496
+ }): globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1497
+ __parameters: {
1498
+ buildId?: string | null;
1499
+ };
1500
+ __returns: globalThis.Promise<TransactionSubmission | null> | TransactionSubmission | null;
1501
+ __self: never;
1502
+ kind: 'action';
1503
+ };
1504
+ export declare const GetHsmStatus: {
1505
+ (): globalThis.Promise<{
1506
+ connected?: boolean | null;
1507
+ keyId?: string | null;
1508
+ keyLabel?: string | null;
1509
+ publicKeyHash?: string | null;
1510
+ cardanoAddress?: string | null;
1511
+ } | null> | {
1512
+ connected?: boolean | null;
1513
+ keyId?: string | null;
1514
+ keyLabel?: string | null;
1515
+ publicKeyHash?: string | null;
1516
+ cardanoAddress?: string | null;
1517
+ } | null;
1518
+ ({}: globalThis.Record<never, never>): globalThis.Promise<{
1519
+ connected?: boolean | null;
1520
+ keyId?: string | null;
1521
+ keyLabel?: string | null;
1522
+ publicKeyHash?: string | null;
1523
+ cardanoAddress?: string | null;
1524
+ } | null> | {
1525
+ connected?: boolean | null;
1526
+ keyId?: string | null;
1527
+ keyLabel?: string | null;
1528
+ publicKeyHash?: string | null;
1529
+ cardanoAddress?: string | null;
1530
+ } | null;
1531
+ __parameters: globalThis.Record<never, never>;
1532
+ __returns: globalThis.Promise<{
1533
+ connected?: boolean | null;
1534
+ keyId?: string | null;
1535
+ keyLabel?: string | null;
1536
+ publicKeyHash?: string | null;
1537
+ cardanoAddress?: string | null;
1538
+ } | null> | {
1539
+ connected?: boolean | null;
1540
+ keyId?: string | null;
1541
+ keyLabel?: string | null;
1542
+ publicKeyHash?: string | null;
1543
+ cardanoAddress?: string | null;
1544
+ } | null;
1545
+ __self: never;
1546
+ kind: 'action';
1547
+ };
1548
+ export {};
1549
+ //# sourceMappingURL=index.d.ts.map