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