@odatano/core 0.3.17 → 0.3.19
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.
- package/@cds-models/CardanoODataService/index.d.ts +434 -427
- package/@cds-models/CardanoODataService/index.d.ts.map +1 -1
- package/@cds-models/CardanoODataService/index.js +7 -0
- package/@cds-models/CardanoODataService/index.js.map +1 -1
- package/@cds-models/CardanoODataService/index.ts +99 -92
- package/@cds-models/CardanoSignService/index.d.ts +1549 -0
- package/@cds-models/CardanoSignService/index.d.ts.map +1 -0
- package/@cds-models/CardanoSignService/index.js +291 -0
- package/@cds-models/CardanoSignService/index.js.map +1 -0
- package/@cds-models/CardanoSignService/index.ts +519 -0
- package/@cds-models/CardanoTransactionService/index.d.ts +338 -815
- package/@cds-models/CardanoTransactionService/index.d.ts.map +1 -1
- package/@cds-models/CardanoTransactionService/index.js +3 -63
- package/@cds-models/CardanoTransactionService/index.js.map +1 -1
- package/@cds-models/CardanoTransactionService/index.ts +71 -210
- package/@cds-models/index.d.ts +150 -1
- package/@cds-models/index.d.ts.map +1 -1
- package/@cds-models/index.js +51 -1
- package/@cds-models/index.js.map +1 -1
- package/@cds-models/index.ts +74 -2
- package/@cds-models/odatano/cardano/index.d.ts +553 -696
- package/@cds-models/odatano/cardano/index.d.ts.map +1 -1
- package/@cds-models/odatano/cardano/index.js +3 -52
- package/@cds-models/odatano/cardano/index.js.map +1 -1
- package/@cds-models/odatano/cardano/index.ts +93 -165
- package/README.md +78 -19
- package/db/schema.cds +6 -108
- package/db/types.cds +111 -0
- package/package.json +20 -3
- package/src/index.d.ts.map +1 -1
- package/src/index.js +8 -3
- package/src/index.js.map +1 -1
- package/src/plugin.d.ts.map +1 -1
- package/src/plugin.js +7 -2
- package/src/plugin.js.map +1 -1
- package/srv/blockchain/backends/koios-backend.d.ts.map +1 -1
- package/srv/blockchain/backends/koios-backend.js +6 -16
- package/srv/blockchain/backends/koios-backend.js.map +1 -1
- package/srv/blockchain/cardano-client.d.ts.map +1 -1
- package/srv/blockchain/cardano-client.js +13 -10
- package/srv/blockchain/cardano-client.js.map +1 -1
- package/srv/blockchain/cardano-indexer.d.ts.map +1 -1
- package/srv/blockchain/cardano-indexer.js +10 -8
- package/srv/blockchain/cardano-indexer.js.map +1 -1
- package/srv/blockchain/cardano-tx-builder.d.ts.map +1 -1
- package/srv/blockchain/cardano-tx-builder.js +16 -16
- package/srv/blockchain/cardano-tx-builder.js.map +1 -1
- package/srv/blockchain/signing/hsm-signer.d.ts.map +1 -0
- package/srv/blockchain/signing/hsm-signer.js +296 -0
- package/srv/blockchain/signing/hsm-signer.js.map +1 -0
- package/srv/blockchain/signing/signature-verifier.d.ts.map +1 -1
- package/srv/blockchain/signing/signature-verifier.js +7 -25
- package/srv/blockchain/signing/signature-verifier.js.map +1 -1
- package/srv/blockchain/transaction-building/buildooor-tx.d.ts.map +1 -1
- package/srv/blockchain/transaction-building/buildooor-tx.js +171 -437
- package/srv/blockchain/transaction-building/buildooor-tx.js.map +1 -1
- package/srv/blockchain/transaction-building/cardano-tx.d.ts.map +1 -1
- package/srv/blockchain/transaction-building/csl-tx.d.ts.map +1 -1
- package/srv/blockchain/transaction-building/csl-tx.js +230 -611
- package/srv/blockchain/transaction-building/csl-tx.js.map +1 -1
- package/srv/cardano-service.cds +17 -9
- package/srv/cardano-service.js +2 -14
- package/srv/cardano-service.js.map +1 -1
- package/srv/cardano-sign-service.cds +128 -0
- package/srv/cardano-sign-service.d.ts.map +1 -0
- package/srv/cardano-sign-service.js +401 -0
- package/srv/cardano-sign-service.js.map +1 -0
- package/srv/cardano-tx-service.cds +116 -196
- package/srv/cardano-tx-service.js +5 -308
- package/srv/cardano-tx-service.js.map +1 -1
- package/srv/server.d.ts.map +1 -1
- package/srv/server.js +60 -5
- package/srv/server.js.map +1 -1
- package/srv/utils/const.d.ts.map +1 -1
- package/srv/utils/const.js +5 -1
- package/srv/utils/const.js.map +1 -1
- package/srv/utils/error-codes.d.ts.map +1 -1
- package/srv/utils/error-codes.js +15 -0
- package/srv/utils/error-codes.js.map +1 -1
- package/srv/utils/errors.d.ts.map +1 -1
- package/srv/utils/errors.js +12 -1
- package/srv/utils/errors.js.map +1 -1
- package/srv/utils/mappers.d.ts.map +1 -1
- package/srv/utils/mappers.js +9 -29
- package/srv/utils/mappers.js.map +1 -1
- package/srv/utils/signing-helper.d.ts.map +1 -1
- package/srv/utils/signing-helper.js +3 -18
- package/srv/utils/signing-helper.js.map +1 -1
- package/srv/utils/tx-build-helper.d.ts.map +1 -1
- package/srv/utils/tx-build-helper.js +10 -4
- package/srv/utils/tx-build-helper.js.map +1 -1
- package/srv/utils/types.d.ts.map +1 -1
- package/srv/utils/types.js +2 -0
- package/srv/utils/types.js.map +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _ from './..';
|
|
2
2
|
import * as __ from './../_';
|
|
3
|
+
import * as _odatano_cardano from './../odatano/cardano';
|
|
3
4
|
/**
|
|
4
5
|
* Cardano Transaction Service
|
|
5
6
|
*
|
|
@@ -12,14 +13,11 @@ export default class {
|
|
|
12
13
|
static readonly BuildTransactionWithMetadata: typeof BuildTransactionWithMetadata;
|
|
13
14
|
static readonly BuildMultiAssetTransaction: typeof BuildMultiAssetTransaction;
|
|
14
15
|
static readonly BuildMintTransaction: typeof BuildMintTransaction;
|
|
15
|
-
static readonly BuildPlutusSpendTransaction: typeof BuildPlutusSpendTransaction;
|
|
16
|
-
static readonly SetCollateral: typeof SetCollateral;
|
|
17
16
|
static readonly GetBuildDetails: typeof GetBuildDetails;
|
|
18
17
|
static readonly SubmitTransaction: typeof SubmitTransaction;
|
|
19
18
|
static readonly SubmitSignedTransaction: typeof SubmitSignedTransaction;
|
|
20
|
-
static readonly
|
|
21
|
-
static readonly
|
|
22
|
-
static readonly GetSigningRequestsByAddress: typeof GetSigningRequestsByAddress;
|
|
19
|
+
static readonly BuildPlutusSpendTransaction: typeof BuildPlutusSpendTransaction;
|
|
20
|
+
static readonly SetCollateral: typeof SetCollateral;
|
|
23
21
|
static readonly GetTransactionBuildsByAddress: typeof GetTransactionBuildsByAddress;
|
|
24
22
|
}
|
|
25
23
|
export declare function _TransactionBuildAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
@@ -29,11 +27,11 @@ export declare function _TransactionBuildAspect<TBase extends new (...args: any[
|
|
|
29
27
|
id?: __.Key<string>;
|
|
30
28
|
network?: string | null;
|
|
31
29
|
builderEngine?: string | null;
|
|
32
|
-
senderAddress?:
|
|
33
|
-
changeAddress?:
|
|
30
|
+
senderAddress?: _.Bech32 | null;
|
|
31
|
+
changeAddress?: _.Bech32 | null;
|
|
34
32
|
unsignedTxCbor?: string | null;
|
|
35
|
-
txBodyHash?:
|
|
36
|
-
fee?:
|
|
33
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
34
|
+
fee?: _.Lovelace | null;
|
|
37
35
|
size?: number | null;
|
|
38
36
|
createdAt?: number | null;
|
|
39
37
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -53,11 +51,11 @@ export declare function _TransactionBuildAspect<TBase extends new (...args: any[
|
|
|
53
51
|
id?: __.Key<string>;
|
|
54
52
|
network?: string | null;
|
|
55
53
|
builderEngine?: string | null;
|
|
56
|
-
senderAddress?:
|
|
57
|
-
changeAddress?:
|
|
54
|
+
senderAddress?: _.Bech32 | null;
|
|
55
|
+
changeAddress?: _.Bech32 | null;
|
|
58
56
|
unsignedTxCbor?: string | null;
|
|
59
|
-
txBodyHash?:
|
|
60
|
-
fee?:
|
|
57
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
58
|
+
fee?: _.Lovelace | null;
|
|
61
59
|
size?: number | null;
|
|
62
60
|
createdAt?: number | null;
|
|
63
61
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -76,11 +74,11 @@ export declare function _TransactionBuildAspect<TBase extends new (...args: any[
|
|
|
76
74
|
id?: __.Key<string>;
|
|
77
75
|
network?: string | null;
|
|
78
76
|
builderEngine?: string | null;
|
|
79
|
-
senderAddress?:
|
|
80
|
-
changeAddress?:
|
|
77
|
+
senderAddress?: _.Bech32 | null;
|
|
78
|
+
changeAddress?: _.Bech32 | null;
|
|
81
79
|
unsignedTxCbor?: string | null;
|
|
82
|
-
txBodyHash?:
|
|
83
|
-
fee?:
|
|
80
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
81
|
+
fee?: _.Lovelace | null;
|
|
84
82
|
size?: number | null;
|
|
85
83
|
createdAt?: number | null;
|
|
86
84
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -102,11 +100,11 @@ declare const TransactionBuild_base: {
|
|
|
102
100
|
id?: __.Key<string>;
|
|
103
101
|
network?: string | null;
|
|
104
102
|
builderEngine?: string | null;
|
|
105
|
-
senderAddress?:
|
|
106
|
-
changeAddress?:
|
|
103
|
+
senderAddress?: _.Bech32 | null;
|
|
104
|
+
changeAddress?: _.Bech32 | null;
|
|
107
105
|
unsignedTxCbor?: string | null;
|
|
108
|
-
txBodyHash?:
|
|
109
|
-
fee?:
|
|
106
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
107
|
+
fee?: _.Lovelace | null;
|
|
110
108
|
size?: number | null;
|
|
111
109
|
createdAt?: number | null;
|
|
112
110
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -126,11 +124,11 @@ declare const TransactionBuild_base: {
|
|
|
126
124
|
id?: __.Key<string>;
|
|
127
125
|
network?: string | null;
|
|
128
126
|
builderEngine?: string | null;
|
|
129
|
-
senderAddress?:
|
|
130
|
-
changeAddress?:
|
|
127
|
+
senderAddress?: _.Bech32 | null;
|
|
128
|
+
changeAddress?: _.Bech32 | null;
|
|
131
129
|
unsignedTxCbor?: string | null;
|
|
132
|
-
txBodyHash?:
|
|
133
|
-
fee?:
|
|
130
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
131
|
+
fee?: _.Lovelace | null;
|
|
134
132
|
size?: number | null;
|
|
135
133
|
createdAt?: number | null;
|
|
136
134
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -149,11 +147,11 @@ declare const TransactionBuild_base: {
|
|
|
149
147
|
id?: __.Key<string>;
|
|
150
148
|
network?: string | null;
|
|
151
149
|
builderEngine?: string | null;
|
|
152
|
-
senderAddress?:
|
|
153
|
-
changeAddress?:
|
|
150
|
+
senderAddress?: _.Bech32 | null;
|
|
151
|
+
changeAddress?: _.Bech32 | null;
|
|
154
152
|
unsignedTxCbor?: string | null;
|
|
155
|
-
txBodyHash?:
|
|
156
|
-
fee?:
|
|
153
|
+
txBodyHash?: _.Blake2b256 | null;
|
|
154
|
+
fee?: _.Lovelace | null;
|
|
157
155
|
size?: number | null;
|
|
158
156
|
createdAt?: number | null;
|
|
159
157
|
inputs?: __.Composition.of.many<TransactionBuildInputs>;
|
|
@@ -178,10 +176,10 @@ export declare function _TransactionBuildInputAspect<TBase extends new (...args:
|
|
|
178
176
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
179
177
|
build_id?: __.Key<string>;
|
|
180
178
|
inputIndex?: __.Key<number>;
|
|
181
|
-
txHash?:
|
|
179
|
+
txHash?: _.Blake2b256 | null;
|
|
182
180
|
outputIndex?: number | null;
|
|
183
|
-
address?:
|
|
184
|
-
lovelace?:
|
|
181
|
+
address?: _.Bech32 | null;
|
|
182
|
+
lovelace?: _.Lovelace | null;
|
|
185
183
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
186
184
|
hasAssets?: boolean | null;
|
|
187
185
|
};
|
|
@@ -190,10 +188,10 @@ export declare function _TransactionBuildInputAspect<TBase extends new (...args:
|
|
|
190
188
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
191
189
|
build_id?: __.Key<string>;
|
|
192
190
|
inputIndex?: __.Key<number>;
|
|
193
|
-
txHash?:
|
|
191
|
+
txHash?: _.Blake2b256 | null;
|
|
194
192
|
outputIndex?: number | null;
|
|
195
|
-
address?:
|
|
196
|
-
lovelace?:
|
|
193
|
+
address?: _.Bech32 | null;
|
|
194
|
+
lovelace?: _.Lovelace | null;
|
|
197
195
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
198
196
|
hasAssets?: boolean | null;
|
|
199
197
|
}>;
|
|
@@ -201,10 +199,10 @@ export declare function _TransactionBuildInputAspect<TBase extends new (...args:
|
|
|
201
199
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
202
200
|
build_id?: __.Key<string>;
|
|
203
201
|
inputIndex?: __.Key<number>;
|
|
204
|
-
txHash?:
|
|
202
|
+
txHash?: _.Blake2b256 | null;
|
|
205
203
|
outputIndex?: number | null;
|
|
206
|
-
address?:
|
|
207
|
-
lovelace?:
|
|
204
|
+
address?: _.Bech32 | null;
|
|
205
|
+
lovelace?: _.Lovelace | null;
|
|
208
206
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
209
207
|
hasAssets?: boolean | null;
|
|
210
208
|
}>;
|
|
@@ -215,10 +213,10 @@ declare const TransactionBuildInput_base: {
|
|
|
215
213
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
216
214
|
build_id?: __.Key<string>;
|
|
217
215
|
inputIndex?: __.Key<number>;
|
|
218
|
-
txHash?:
|
|
216
|
+
txHash?: _.Blake2b256 | null;
|
|
219
217
|
outputIndex?: number | null;
|
|
220
|
-
address?:
|
|
221
|
-
lovelace?:
|
|
218
|
+
address?: _.Bech32 | null;
|
|
219
|
+
lovelace?: _.Lovelace | null;
|
|
222
220
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
223
221
|
hasAssets?: boolean | null;
|
|
224
222
|
};
|
|
@@ -227,10 +225,10 @@ declare const TransactionBuildInput_base: {
|
|
|
227
225
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
228
226
|
build_id?: __.Key<string>;
|
|
229
227
|
inputIndex?: __.Key<number>;
|
|
230
|
-
txHash?:
|
|
228
|
+
txHash?: _.Blake2b256 | null;
|
|
231
229
|
outputIndex?: number | null;
|
|
232
|
-
address?:
|
|
233
|
-
lovelace?:
|
|
230
|
+
address?: _.Bech32 | null;
|
|
231
|
+
lovelace?: _.Lovelace | null;
|
|
234
232
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
235
233
|
hasAssets?: boolean | null;
|
|
236
234
|
}>;
|
|
@@ -238,10 +236,10 @@ declare const TransactionBuildInput_base: {
|
|
|
238
236
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
239
237
|
build_id?: __.Key<string>;
|
|
240
238
|
inputIndex?: __.Key<number>;
|
|
241
|
-
txHash?:
|
|
239
|
+
txHash?: _.Blake2b256 | null;
|
|
242
240
|
outputIndex?: number | null;
|
|
243
|
-
address?:
|
|
244
|
-
lovelace?:
|
|
241
|
+
address?: _.Bech32 | null;
|
|
242
|
+
lovelace?: _.Lovelace | null;
|
|
245
243
|
assets?: __.Composition.of.many<TransactionBuildInputAssets>;
|
|
246
244
|
hasAssets?: boolean | null;
|
|
247
245
|
}>;
|
|
@@ -257,8 +255,8 @@ export declare function _TransactionBuildOutputAspect<TBase extends new (...args
|
|
|
257
255
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
258
256
|
build_id?: __.Key<string>;
|
|
259
257
|
outputIndex?: __.Key<number>;
|
|
260
|
-
address?:
|
|
261
|
-
lovelace?:
|
|
258
|
+
address?: _.Bech32 | null;
|
|
259
|
+
lovelace?: _.Lovelace | null;
|
|
262
260
|
isChange?: boolean | null;
|
|
263
261
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
264
262
|
hasAssets?: boolean | null;
|
|
@@ -268,8 +266,8 @@ export declare function _TransactionBuildOutputAspect<TBase extends new (...args
|
|
|
268
266
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
269
267
|
build_id?: __.Key<string>;
|
|
270
268
|
outputIndex?: __.Key<number>;
|
|
271
|
-
address?:
|
|
272
|
-
lovelace?:
|
|
269
|
+
address?: _.Bech32 | null;
|
|
270
|
+
lovelace?: _.Lovelace | null;
|
|
273
271
|
isChange?: boolean | null;
|
|
274
272
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
275
273
|
hasAssets?: boolean | null;
|
|
@@ -278,8 +276,8 @@ export declare function _TransactionBuildOutputAspect<TBase extends new (...args
|
|
|
278
276
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
279
277
|
build_id?: __.Key<string>;
|
|
280
278
|
outputIndex?: __.Key<number>;
|
|
281
|
-
address?:
|
|
282
|
-
lovelace?:
|
|
279
|
+
address?: _.Bech32 | null;
|
|
280
|
+
lovelace?: _.Lovelace | null;
|
|
283
281
|
isChange?: boolean | null;
|
|
284
282
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
285
283
|
hasAssets?: boolean | null;
|
|
@@ -291,8 +289,8 @@ declare const TransactionBuildOutput_base: {
|
|
|
291
289
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
292
290
|
build_id?: __.Key<string>;
|
|
293
291
|
outputIndex?: __.Key<number>;
|
|
294
|
-
address?:
|
|
295
|
-
lovelace?:
|
|
292
|
+
address?: _.Bech32 | null;
|
|
293
|
+
lovelace?: _.Lovelace | null;
|
|
296
294
|
isChange?: boolean | null;
|
|
297
295
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
298
296
|
hasAssets?: boolean | null;
|
|
@@ -302,8 +300,8 @@ declare const TransactionBuildOutput_base: {
|
|
|
302
300
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
303
301
|
build_id?: __.Key<string>;
|
|
304
302
|
outputIndex?: __.Key<number>;
|
|
305
|
-
address?:
|
|
306
|
-
lovelace?:
|
|
303
|
+
address?: _.Bech32 | null;
|
|
304
|
+
lovelace?: _.Lovelace | null;
|
|
307
305
|
isChange?: boolean | null;
|
|
308
306
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
309
307
|
hasAssets?: boolean | null;
|
|
@@ -312,8 +310,8 @@ declare const TransactionBuildOutput_base: {
|
|
|
312
310
|
build?: __.Key<__.Association.to<TransactionBuild>>;
|
|
313
311
|
build_id?: __.Key<string>;
|
|
314
312
|
outputIndex?: __.Key<number>;
|
|
315
|
-
address?:
|
|
316
|
-
lovelace?:
|
|
313
|
+
address?: _.Bech32 | null;
|
|
314
|
+
lovelace?: _.Lovelace | null;
|
|
317
315
|
isChange?: boolean | null;
|
|
318
316
|
assets?: __.Composition.of.many<TransactionBuildOutputAssets>;
|
|
319
317
|
hasAssets?: boolean | null;
|
|
@@ -330,10 +328,10 @@ export declare function _TransactionBuildInputAssetAspect<TBase extends new (...
|
|
|
330
328
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
331
329
|
input_inputIndex?: __.Key<number>;
|
|
332
330
|
input_build_id?: __.Key<string>;
|
|
333
|
-
unit?: __.Key<
|
|
334
|
-
asset_quantity?:
|
|
335
|
-
asset_policyId?:
|
|
336
|
-
asset_assetNameHex?:
|
|
331
|
+
unit?: __.Key<_.AssetUnit>;
|
|
332
|
+
asset_quantity?: _.Lovelace | null;
|
|
333
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
334
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
337
335
|
asset_assetName?: string | null;
|
|
338
336
|
asset_fingerprint?: string | null;
|
|
339
337
|
};
|
|
@@ -342,10 +340,10 @@ export declare function _TransactionBuildInputAssetAspect<TBase extends new (...
|
|
|
342
340
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
343
341
|
input_inputIndex?: __.Key<number>;
|
|
344
342
|
input_build_id?: __.Key<string>;
|
|
345
|
-
unit?: __.Key<
|
|
346
|
-
asset_quantity?:
|
|
347
|
-
asset_policyId?:
|
|
348
|
-
asset_assetNameHex?:
|
|
343
|
+
unit?: __.Key<_.AssetUnit>;
|
|
344
|
+
asset_quantity?: _.Lovelace | null;
|
|
345
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
346
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
349
347
|
asset_assetName?: string | null;
|
|
350
348
|
asset_fingerprint?: string | null;
|
|
351
349
|
}>;
|
|
@@ -353,10 +351,10 @@ export declare function _TransactionBuildInputAssetAspect<TBase extends new (...
|
|
|
353
351
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
354
352
|
input_inputIndex?: __.Key<number>;
|
|
355
353
|
input_build_id?: __.Key<string>;
|
|
356
|
-
unit?: __.Key<
|
|
357
|
-
asset_quantity?:
|
|
358
|
-
asset_policyId?:
|
|
359
|
-
asset_assetNameHex?:
|
|
354
|
+
unit?: __.Key<_.AssetUnit>;
|
|
355
|
+
asset_quantity?: _.Lovelace | null;
|
|
356
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
357
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
360
358
|
asset_assetName?: string | null;
|
|
361
359
|
asset_fingerprint?: string | null;
|
|
362
360
|
}>;
|
|
@@ -367,10 +365,10 @@ declare const TransactionBuildInputAsset_base: {
|
|
|
367
365
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
368
366
|
input_inputIndex?: __.Key<number>;
|
|
369
367
|
input_build_id?: __.Key<string>;
|
|
370
|
-
unit?: __.Key<
|
|
371
|
-
asset_quantity?:
|
|
372
|
-
asset_policyId?:
|
|
373
|
-
asset_assetNameHex?:
|
|
368
|
+
unit?: __.Key<_.AssetUnit>;
|
|
369
|
+
asset_quantity?: _.Lovelace | null;
|
|
370
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
371
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
374
372
|
asset_assetName?: string | null;
|
|
375
373
|
asset_fingerprint?: string | null;
|
|
376
374
|
};
|
|
@@ -379,10 +377,10 @@ declare const TransactionBuildInputAsset_base: {
|
|
|
379
377
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
380
378
|
input_inputIndex?: __.Key<number>;
|
|
381
379
|
input_build_id?: __.Key<string>;
|
|
382
|
-
unit?: __.Key<
|
|
383
|
-
asset_quantity?:
|
|
384
|
-
asset_policyId?:
|
|
385
|
-
asset_assetNameHex?:
|
|
380
|
+
unit?: __.Key<_.AssetUnit>;
|
|
381
|
+
asset_quantity?: _.Lovelace | null;
|
|
382
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
383
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
386
384
|
asset_assetName?: string | null;
|
|
387
385
|
asset_fingerprint?: string | null;
|
|
388
386
|
}>;
|
|
@@ -390,10 +388,10 @@ declare const TransactionBuildInputAsset_base: {
|
|
|
390
388
|
input?: __.Key<__.Association.to<TransactionBuildInput>>;
|
|
391
389
|
input_inputIndex?: __.Key<number>;
|
|
392
390
|
input_build_id?: __.Key<string>;
|
|
393
|
-
unit?: __.Key<
|
|
394
|
-
asset_quantity?:
|
|
395
|
-
asset_policyId?:
|
|
396
|
-
asset_assetNameHex?:
|
|
391
|
+
unit?: __.Key<_.AssetUnit>;
|
|
392
|
+
asset_quantity?: _.Lovelace | null;
|
|
393
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
394
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
397
395
|
asset_assetName?: string | null;
|
|
398
396
|
asset_fingerprint?: string | null;
|
|
399
397
|
}>;
|
|
@@ -409,10 +407,10 @@ export declare function _TransactionBuildOutputAssetAspect<TBase extends new (..
|
|
|
409
407
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
410
408
|
output_outputIndex?: __.Key<number>;
|
|
411
409
|
output_build_id?: __.Key<string>;
|
|
412
|
-
unit?: __.Key<
|
|
413
|
-
asset_quantity?:
|
|
414
|
-
asset_policyId?:
|
|
415
|
-
asset_assetNameHex?:
|
|
410
|
+
unit?: __.Key<_.AssetUnit>;
|
|
411
|
+
asset_quantity?: _.Lovelace | null;
|
|
412
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
413
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
416
414
|
asset_assetName?: string | null;
|
|
417
415
|
asset_fingerprint?: string | null;
|
|
418
416
|
};
|
|
@@ -421,10 +419,10 @@ export declare function _TransactionBuildOutputAssetAspect<TBase extends new (..
|
|
|
421
419
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
422
420
|
output_outputIndex?: __.Key<number>;
|
|
423
421
|
output_build_id?: __.Key<string>;
|
|
424
|
-
unit?: __.Key<
|
|
425
|
-
asset_quantity?:
|
|
426
|
-
asset_policyId?:
|
|
427
|
-
asset_assetNameHex?:
|
|
422
|
+
unit?: __.Key<_.AssetUnit>;
|
|
423
|
+
asset_quantity?: _.Lovelace | null;
|
|
424
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
425
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
428
426
|
asset_assetName?: string | null;
|
|
429
427
|
asset_fingerprint?: string | null;
|
|
430
428
|
}>;
|
|
@@ -432,10 +430,10 @@ export declare function _TransactionBuildOutputAssetAspect<TBase extends new (..
|
|
|
432
430
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
433
431
|
output_outputIndex?: __.Key<number>;
|
|
434
432
|
output_build_id?: __.Key<string>;
|
|
435
|
-
unit?: __.Key<
|
|
436
|
-
asset_quantity?:
|
|
437
|
-
asset_policyId?:
|
|
438
|
-
asset_assetNameHex?:
|
|
433
|
+
unit?: __.Key<_.AssetUnit>;
|
|
434
|
+
asset_quantity?: _.Lovelace | null;
|
|
435
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
436
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
439
437
|
asset_assetName?: string | null;
|
|
440
438
|
asset_fingerprint?: string | null;
|
|
441
439
|
}>;
|
|
@@ -446,10 +444,10 @@ declare const TransactionBuildOutputAsset_base: {
|
|
|
446
444
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
447
445
|
output_outputIndex?: __.Key<number>;
|
|
448
446
|
output_build_id?: __.Key<string>;
|
|
449
|
-
unit?: __.Key<
|
|
450
|
-
asset_quantity?:
|
|
451
|
-
asset_policyId?:
|
|
452
|
-
asset_assetNameHex?:
|
|
447
|
+
unit?: __.Key<_.AssetUnit>;
|
|
448
|
+
asset_quantity?: _.Lovelace | null;
|
|
449
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
450
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
453
451
|
asset_assetName?: string | null;
|
|
454
452
|
asset_fingerprint?: string | null;
|
|
455
453
|
};
|
|
@@ -458,10 +456,10 @@ declare const TransactionBuildOutputAsset_base: {
|
|
|
458
456
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
459
457
|
output_outputIndex?: __.Key<number>;
|
|
460
458
|
output_build_id?: __.Key<string>;
|
|
461
|
-
unit?: __.Key<
|
|
462
|
-
asset_quantity?:
|
|
463
|
-
asset_policyId?:
|
|
464
|
-
asset_assetNameHex?:
|
|
459
|
+
unit?: __.Key<_.AssetUnit>;
|
|
460
|
+
asset_quantity?: _.Lovelace | null;
|
|
461
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
462
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
465
463
|
asset_assetName?: string | null;
|
|
466
464
|
asset_fingerprint?: string | null;
|
|
467
465
|
}>;
|
|
@@ -469,10 +467,10 @@ declare const TransactionBuildOutputAsset_base: {
|
|
|
469
467
|
output?: __.Key<__.Association.to<TransactionBuildOutput>>;
|
|
470
468
|
output_outputIndex?: __.Key<number>;
|
|
471
469
|
output_build_id?: __.Key<string>;
|
|
472
|
-
unit?: __.Key<
|
|
473
|
-
asset_quantity?:
|
|
474
|
-
asset_policyId?:
|
|
475
|
-
asset_assetNameHex?:
|
|
470
|
+
unit?: __.Key<_.AssetUnit>;
|
|
471
|
+
asset_quantity?: _.Lovelace | null;
|
|
472
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
473
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
476
474
|
asset_assetName?: string | null;
|
|
477
475
|
asset_fingerprint?: string | null;
|
|
478
476
|
}>;
|
|
@@ -489,9 +487,9 @@ export declare function _TransactionSubmissionAspect<TBase extends new (...args:
|
|
|
489
487
|
build?: __.Association.to<TransactionBuild> | null;
|
|
490
488
|
build_id?: string | null;
|
|
491
489
|
signedTxCbor?: string | null;
|
|
492
|
-
txHash?:
|
|
490
|
+
txHash?: _.Blake2b256 | null;
|
|
493
491
|
submittedAt?: number | null;
|
|
494
|
-
status?:
|
|
492
|
+
status?: _.SubmissionStatus | null;
|
|
495
493
|
errorCode?: string | null;
|
|
496
494
|
errorMessage?: string | null;
|
|
497
495
|
retryCount?: number | null;
|
|
@@ -504,9 +502,9 @@ export declare function _TransactionSubmissionAspect<TBase extends new (...args:
|
|
|
504
502
|
build?: __.Association.to<TransactionBuild> | null;
|
|
505
503
|
build_id?: string | null;
|
|
506
504
|
signedTxCbor?: string | null;
|
|
507
|
-
txHash?:
|
|
505
|
+
txHash?: _.Blake2b256 | null;
|
|
508
506
|
submittedAt?: number | null;
|
|
509
|
-
status?:
|
|
507
|
+
status?: _.SubmissionStatus | null;
|
|
510
508
|
errorCode?: string | null;
|
|
511
509
|
errorMessage?: string | null;
|
|
512
510
|
retryCount?: number | null;
|
|
@@ -518,9 +516,9 @@ export declare function _TransactionSubmissionAspect<TBase extends new (...args:
|
|
|
518
516
|
build?: __.Association.to<TransactionBuild> | null;
|
|
519
517
|
build_id?: string | null;
|
|
520
518
|
signedTxCbor?: string | null;
|
|
521
|
-
txHash?:
|
|
519
|
+
txHash?: _.Blake2b256 | null;
|
|
522
520
|
submittedAt?: number | null;
|
|
523
|
-
status?:
|
|
521
|
+
status?: _.SubmissionStatus | null;
|
|
524
522
|
errorCode?: string | null;
|
|
525
523
|
errorMessage?: string | null;
|
|
526
524
|
retryCount?: number | null;
|
|
@@ -538,9 +536,9 @@ export declare function _TransactionSubmissionAspect<TBase extends new (...args:
|
|
|
538
536
|
build?: __.Association.to<TransactionBuild> | null;
|
|
539
537
|
build_id?: string | null;
|
|
540
538
|
signedTxCbor?: string | null;
|
|
541
|
-
txHash?:
|
|
539
|
+
txHash?: _.Blake2b256 | null;
|
|
542
540
|
submittedAt?: number | null;
|
|
543
|
-
status?:
|
|
541
|
+
status?: _.SubmissionStatus | null;
|
|
544
542
|
errorCode?: string | null;
|
|
545
543
|
errorMessage?: string | null;
|
|
546
544
|
retryCount?: number | null;
|
|
@@ -557,9 +555,9 @@ declare const TransactionSubmission_base: {
|
|
|
557
555
|
build?: __.Association.to<TransactionBuild> | null;
|
|
558
556
|
build_id?: string | null;
|
|
559
557
|
signedTxCbor?: string | null;
|
|
560
|
-
txHash?:
|
|
558
|
+
txHash?: _.Blake2b256 | null;
|
|
561
559
|
submittedAt?: number | null;
|
|
562
|
-
status?:
|
|
560
|
+
status?: _.SubmissionStatus | null;
|
|
563
561
|
errorCode?: string | null;
|
|
564
562
|
errorMessage?: string | null;
|
|
565
563
|
retryCount?: number | null;
|
|
@@ -572,9 +570,9 @@ declare const TransactionSubmission_base: {
|
|
|
572
570
|
build?: __.Association.to<TransactionBuild> | null;
|
|
573
571
|
build_id?: string | null;
|
|
574
572
|
signedTxCbor?: string | null;
|
|
575
|
-
txHash?:
|
|
573
|
+
txHash?: _.Blake2b256 | null;
|
|
576
574
|
submittedAt?: number | null;
|
|
577
|
-
status?:
|
|
575
|
+
status?: _.SubmissionStatus | null;
|
|
578
576
|
errorCode?: string | null;
|
|
579
577
|
errorMessage?: string | null;
|
|
580
578
|
retryCount?: number | null;
|
|
@@ -586,9 +584,9 @@ declare const TransactionSubmission_base: {
|
|
|
586
584
|
build?: __.Association.to<TransactionBuild> | null;
|
|
587
585
|
build_id?: string | null;
|
|
588
586
|
signedTxCbor?: string | null;
|
|
589
|
-
txHash?:
|
|
587
|
+
txHash?: _.Blake2b256 | null;
|
|
590
588
|
submittedAt?: number | null;
|
|
591
|
-
status?:
|
|
589
|
+
status?: _.SubmissionStatus | null;
|
|
592
590
|
errorCode?: string | null;
|
|
593
591
|
errorMessage?: string | null;
|
|
594
592
|
retryCount?: number | null;
|
|
@@ -606,9 +604,9 @@ declare const TransactionSubmission_base: {
|
|
|
606
604
|
build?: __.Association.to<TransactionBuild> | null;
|
|
607
605
|
build_id?: string | null;
|
|
608
606
|
signedTxCbor?: string | null;
|
|
609
|
-
txHash?:
|
|
607
|
+
txHash?: _.Blake2b256 | null;
|
|
610
608
|
submittedAt?: number | null;
|
|
611
|
-
status?:
|
|
609
|
+
status?: _.SubmissionStatus | null;
|
|
612
610
|
errorCode?: string | null;
|
|
613
611
|
errorMessage?: string | null;
|
|
614
612
|
retryCount?: number | null;
|
|
@@ -623,7 +621,7 @@ declare const TransactionSubmission_base: {
|
|
|
623
621
|
* TransactionSubmissions status flow:
|
|
624
622
|
* pending ──[submit to chain]──→ submitted (internal, in SubmitTransaction handler)
|
|
625
623
|
* submitted ──[CheckSubmissionStatus]──→ confirmed | stays submitted (conditional)
|
|
626
|
-
* pending | submitted ──→ failed (
|
|
624
|
+
* pending | submitted ──→ failed (blockchain error)
|
|
627
625
|
*/
|
|
628
626
|
export declare class TransactionSubmission extends TransactionSubmission_base {
|
|
629
627
|
}
|
|
@@ -631,7 +629,7 @@ export declare class TransactionSubmission extends TransactionSubmission_base {
|
|
|
631
629
|
* TransactionSubmissions status flow:
|
|
632
630
|
* pending ──[submit to chain]──→ submitted (internal, in SubmitTransaction handler)
|
|
633
631
|
* submitted ──[CheckSubmissionStatus]──→ confirmed | stays submitted (conditional)
|
|
634
|
-
* pending | submitted ──→ failed (
|
|
632
|
+
* pending | submitted ──→ failed (blockchain error)
|
|
635
633
|
*/
|
|
636
634
|
export declare class TransactionSubmissions extends Array<TransactionSubmission> {
|
|
637
635
|
$count?: number;
|
|
@@ -715,460 +713,23 @@ export declare class TransactionSubmissionError extends TransactionSubmissionErr
|
|
|
715
713
|
export declare class TransactionSubmissionErrors extends Array<TransactionSubmissionError> {
|
|
716
714
|
$count?: number;
|
|
717
715
|
}
|
|
718
|
-
export declare function _SigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
719
|
-
new (...args: any[]): {
|
|
720
|
-
id?: __.Key<string>;
|
|
721
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
722
|
-
build_id?: string | null;
|
|
723
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
724
|
-
unsignedTxCbor?: string | null;
|
|
725
|
-
network?: string | null;
|
|
726
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
727
|
-
createdAt?: __.CdsTimestamp | null;
|
|
728
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
729
|
-
signedAt?: __.CdsTimestamp | null;
|
|
730
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
731
|
-
cardanoCliCommand?: string | null;
|
|
732
|
-
cip30TxCbor?: string | null;
|
|
733
|
-
signerType?: string | null;
|
|
734
|
-
signerInfo?: string | null;
|
|
735
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
736
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
737
|
-
submission_id?: string | null;
|
|
738
|
-
errorMessage?: string | null;
|
|
739
|
-
};
|
|
740
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
741
|
-
readonly keys: __.KeysOf<{
|
|
742
|
-
id?: __.Key<string>;
|
|
743
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
744
|
-
build_id?: string | null;
|
|
745
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
746
|
-
unsignedTxCbor?: string | null;
|
|
747
|
-
network?: string | null;
|
|
748
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
749
|
-
createdAt?: __.CdsTimestamp | null;
|
|
750
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
751
|
-
signedAt?: __.CdsTimestamp | null;
|
|
752
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
753
|
-
cardanoCliCommand?: string | null;
|
|
754
|
-
cip30TxCbor?: string | null;
|
|
755
|
-
signerType?: string | null;
|
|
756
|
-
signerInfo?: string | null;
|
|
757
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
758
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
759
|
-
submission_id?: string | null;
|
|
760
|
-
errorMessage?: string | null;
|
|
761
|
-
}>;
|
|
762
|
-
readonly elements: __.ElementsOf<{
|
|
763
|
-
id?: __.Key<string>;
|
|
764
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
765
|
-
build_id?: string | null;
|
|
766
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
767
|
-
unsignedTxCbor?: string | null;
|
|
768
|
-
network?: string | null;
|
|
769
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
770
|
-
createdAt?: __.CdsTimestamp | null;
|
|
771
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
772
|
-
signedAt?: __.CdsTimestamp | null;
|
|
773
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
774
|
-
cardanoCliCommand?: string | null;
|
|
775
|
-
cip30TxCbor?: string | null;
|
|
776
|
-
signerType?: string | null;
|
|
777
|
-
signerInfo?: string | null;
|
|
778
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
779
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
780
|
-
submission_id?: string | null;
|
|
781
|
-
errorMessage?: string | null;
|
|
782
|
-
}>;
|
|
783
|
-
readonly actions: {
|
|
784
|
-
VerifySignature: {
|
|
785
|
-
(signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): SignatureVerifications;
|
|
786
|
-
({ signedTxCbor, signerType, signerInfo }: {
|
|
787
|
-
signedTxCbor?: string | null;
|
|
788
|
-
signerType?: string | null;
|
|
789
|
-
signerInfo?: string | null;
|
|
790
|
-
}): SignatureVerifications;
|
|
791
|
-
__parameters: {
|
|
792
|
-
signedTxCbor?: string | null;
|
|
793
|
-
signerType?: string | null;
|
|
794
|
-
signerInfo?: string | null;
|
|
795
|
-
};
|
|
796
|
-
__returns: SignatureVerifications;
|
|
797
|
-
__self: {
|
|
798
|
-
id?: __.Key<string>;
|
|
799
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
800
|
-
build_id?: string | null;
|
|
801
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
802
|
-
unsignedTxCbor?: string | null;
|
|
803
|
-
network?: string | null;
|
|
804
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
805
|
-
createdAt?: __.CdsTimestamp | null;
|
|
806
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
807
|
-
signedAt?: __.CdsTimestamp | null;
|
|
808
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
809
|
-
cardanoCliCommand?: string | null;
|
|
810
|
-
cip30TxCbor?: string | null;
|
|
811
|
-
signerType?: string | null;
|
|
812
|
-
signerInfo?: string | null;
|
|
813
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
814
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
815
|
-
submission_id?: string | null;
|
|
816
|
-
errorMessage?: string | null;
|
|
817
|
-
};
|
|
818
|
-
kind: "action";
|
|
819
|
-
};
|
|
820
|
-
SubmitVerifiedTransaction: {
|
|
821
|
-
(signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): TransactionSubmissions;
|
|
822
|
-
({ signedTxCbor, signerType, signerInfo }: {
|
|
823
|
-
signedTxCbor?: string | null;
|
|
824
|
-
signerType?: string | null;
|
|
825
|
-
signerInfo?: string | null;
|
|
826
|
-
}): TransactionSubmissions;
|
|
827
|
-
__parameters: {
|
|
828
|
-
signedTxCbor?: string | null;
|
|
829
|
-
signerType?: string | null;
|
|
830
|
-
signerInfo?: string | null;
|
|
831
|
-
};
|
|
832
|
-
__returns: TransactionSubmissions;
|
|
833
|
-
__self: {
|
|
834
|
-
id?: __.Key<string>;
|
|
835
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
836
|
-
build_id?: string | null;
|
|
837
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
838
|
-
unsignedTxCbor?: string | null;
|
|
839
|
-
network?: string | null;
|
|
840
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
841
|
-
createdAt?: __.CdsTimestamp | null;
|
|
842
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
843
|
-
signedAt?: __.CdsTimestamp | null;
|
|
844
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
845
|
-
cardanoCliCommand?: string | null;
|
|
846
|
-
cip30TxCbor?: string | null;
|
|
847
|
-
signerType?: string | null;
|
|
848
|
-
signerInfo?: string | null;
|
|
849
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
850
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
851
|
-
submission_id?: string | null;
|
|
852
|
-
errorMessage?: string | null;
|
|
853
|
-
};
|
|
854
|
-
kind: "action";
|
|
855
|
-
};
|
|
856
|
-
};
|
|
857
|
-
} & TBase;
|
|
858
|
-
declare const SigningRequest_base: {
|
|
859
|
-
new (...args: any[]): {
|
|
860
|
-
id?: __.Key<string>;
|
|
861
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
862
|
-
build_id?: string | null;
|
|
863
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
864
|
-
unsignedTxCbor?: string | null;
|
|
865
|
-
network?: string | null;
|
|
866
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
867
|
-
createdAt?: __.CdsTimestamp | null;
|
|
868
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
869
|
-
signedAt?: __.CdsTimestamp | null;
|
|
870
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
871
|
-
cardanoCliCommand?: string | null;
|
|
872
|
-
cip30TxCbor?: string | null;
|
|
873
|
-
signerType?: string | null;
|
|
874
|
-
signerInfo?: string | null;
|
|
875
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
876
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
877
|
-
submission_id?: string | null;
|
|
878
|
-
errorMessage?: string | null;
|
|
879
|
-
};
|
|
880
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
881
|
-
readonly keys: __.KeysOf<{
|
|
882
|
-
id?: __.Key<string>;
|
|
883
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
884
|
-
build_id?: string | null;
|
|
885
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
886
|
-
unsignedTxCbor?: string | null;
|
|
887
|
-
network?: string | null;
|
|
888
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
889
|
-
createdAt?: __.CdsTimestamp | null;
|
|
890
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
891
|
-
signedAt?: __.CdsTimestamp | null;
|
|
892
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
893
|
-
cardanoCliCommand?: string | null;
|
|
894
|
-
cip30TxCbor?: string | null;
|
|
895
|
-
signerType?: string | null;
|
|
896
|
-
signerInfo?: string | null;
|
|
897
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
898
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
899
|
-
submission_id?: string | null;
|
|
900
|
-
errorMessage?: string | null;
|
|
901
|
-
}>;
|
|
902
|
-
readonly elements: __.ElementsOf<{
|
|
903
|
-
id?: __.Key<string>;
|
|
904
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
905
|
-
build_id?: string | null;
|
|
906
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
907
|
-
unsignedTxCbor?: string | null;
|
|
908
|
-
network?: string | null;
|
|
909
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
910
|
-
createdAt?: __.CdsTimestamp | null;
|
|
911
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
912
|
-
signedAt?: __.CdsTimestamp | null;
|
|
913
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
914
|
-
cardanoCliCommand?: string | null;
|
|
915
|
-
cip30TxCbor?: string | null;
|
|
916
|
-
signerType?: string | null;
|
|
917
|
-
signerInfo?: string | null;
|
|
918
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
919
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
920
|
-
submission_id?: string | null;
|
|
921
|
-
errorMessage?: string | null;
|
|
922
|
-
}>;
|
|
923
|
-
readonly actions: {
|
|
924
|
-
VerifySignature: {
|
|
925
|
-
(signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): SignatureVerifications;
|
|
926
|
-
({ signedTxCbor, signerType, signerInfo }: {
|
|
927
|
-
signedTxCbor?: string | null;
|
|
928
|
-
signerType?: string | null;
|
|
929
|
-
signerInfo?: string | null;
|
|
930
|
-
}): SignatureVerifications;
|
|
931
|
-
__parameters: {
|
|
932
|
-
signedTxCbor?: string | null;
|
|
933
|
-
signerType?: string | null;
|
|
934
|
-
signerInfo?: string | null;
|
|
935
|
-
};
|
|
936
|
-
__returns: SignatureVerifications;
|
|
937
|
-
__self: {
|
|
938
|
-
id?: __.Key<string>;
|
|
939
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
940
|
-
build_id?: string | null;
|
|
941
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
942
|
-
unsignedTxCbor?: string | null;
|
|
943
|
-
network?: string | null;
|
|
944
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
945
|
-
createdAt?: __.CdsTimestamp | null;
|
|
946
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
947
|
-
signedAt?: __.CdsTimestamp | null;
|
|
948
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
949
|
-
cardanoCliCommand?: string | null;
|
|
950
|
-
cip30TxCbor?: string | null;
|
|
951
|
-
signerType?: string | null;
|
|
952
|
-
signerInfo?: string | null;
|
|
953
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
954
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
955
|
-
submission_id?: string | null;
|
|
956
|
-
errorMessage?: string | null;
|
|
957
|
-
};
|
|
958
|
-
kind: "action";
|
|
959
|
-
};
|
|
960
|
-
SubmitVerifiedTransaction: {
|
|
961
|
-
(signedTxCbor: string | null, signerType: string | null, signerInfo: string | null): TransactionSubmissions;
|
|
962
|
-
({ signedTxCbor, signerType, signerInfo }: {
|
|
963
|
-
signedTxCbor?: string | null;
|
|
964
|
-
signerType?: string | null;
|
|
965
|
-
signerInfo?: string | null;
|
|
966
|
-
}): TransactionSubmissions;
|
|
967
|
-
__parameters: {
|
|
968
|
-
signedTxCbor?: string | null;
|
|
969
|
-
signerType?: string | null;
|
|
970
|
-
signerInfo?: string | null;
|
|
971
|
-
};
|
|
972
|
-
__returns: TransactionSubmissions;
|
|
973
|
-
__self: {
|
|
974
|
-
id?: __.Key<string>;
|
|
975
|
-
build?: __.Association.to<TransactionBuild> | null;
|
|
976
|
-
build_id?: string | null;
|
|
977
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
978
|
-
unsignedTxCbor?: string | null;
|
|
979
|
-
network?: string | null;
|
|
980
|
-
status?: _odatano_cardano.SigningStatus | null;
|
|
981
|
-
createdAt?: __.CdsTimestamp | null;
|
|
982
|
-
expiresAt?: __.CdsTimestamp | null;
|
|
983
|
-
signedAt?: __.CdsTimestamp | null;
|
|
984
|
-
submittedAt?: __.CdsTimestamp | null;
|
|
985
|
-
cardanoCliCommand?: string | null;
|
|
986
|
-
cip30TxCbor?: string | null;
|
|
987
|
-
signerType?: string | null;
|
|
988
|
-
signerInfo?: string | null;
|
|
989
|
-
verifications?: __.Composition.of.many<SignatureVerifications>;
|
|
990
|
-
submission?: __.Association.to<TransactionSubmission> | null;
|
|
991
|
-
submission_id?: string | null;
|
|
992
|
-
errorMessage?: string | null;
|
|
993
|
-
};
|
|
994
|
-
kind: "action";
|
|
995
|
-
};
|
|
996
|
-
};
|
|
997
|
-
} & typeof __.Entity;
|
|
998
|
-
/**
|
|
999
|
-
* SigningRequests status flow:
|
|
1000
|
-
* pending ──[VerifySignature]──→ verified | failed (conditional in handler)
|
|
1001
|
-
* pending | verified ──[SubmitVerifiedTransaction]──→ submitted
|
|
1002
|
-
* pending ──[checkExpire]──→ expired (custom time-based logic in handler)
|
|
1003
|
-
*/
|
|
1004
|
-
export declare class SigningRequest extends SigningRequest_base {
|
|
1005
|
-
}
|
|
1006
|
-
/**
|
|
1007
|
-
* SigningRequests status flow:
|
|
1008
|
-
* pending ──[VerifySignature]──→ verified | failed (conditional in handler)
|
|
1009
|
-
* pending | verified ──[SubmitVerifiedTransaction]──→ submitted
|
|
1010
|
-
* pending ──[checkExpire]──→ expired (custom time-based logic in handler)
|
|
1011
|
-
*/
|
|
1012
|
-
export declare class SigningRequests extends Array<SigningRequest> {
|
|
1013
|
-
$count?: number;
|
|
1014
|
-
}
|
|
1015
|
-
export declare function _SignatureVerificationAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
1016
|
-
new (...args: any[]): {
|
|
1017
|
-
id?: __.Key<string>;
|
|
1018
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1019
|
-
signingRequest_id?: string | null;
|
|
1020
|
-
signedTxCbor?: string | null;
|
|
1021
|
-
isValid?: boolean | null;
|
|
1022
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1023
|
-
witnessCount?: number | null;
|
|
1024
|
-
signerKeyHashes?: string | null;
|
|
1025
|
-
errorMessage?: string | null;
|
|
1026
|
-
warnings?: string | null;
|
|
1027
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1028
|
-
};
|
|
1029
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
1030
|
-
readonly keys: __.KeysOf<{
|
|
1031
|
-
id?: __.Key<string>;
|
|
1032
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1033
|
-
signingRequest_id?: string | null;
|
|
1034
|
-
signedTxCbor?: string | null;
|
|
1035
|
-
isValid?: boolean | null;
|
|
1036
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1037
|
-
witnessCount?: number | null;
|
|
1038
|
-
signerKeyHashes?: string | null;
|
|
1039
|
-
errorMessage?: string | null;
|
|
1040
|
-
warnings?: string | null;
|
|
1041
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1042
|
-
}>;
|
|
1043
|
-
readonly elements: __.ElementsOf<{
|
|
1044
|
-
id?: __.Key<string>;
|
|
1045
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1046
|
-
signingRequest_id?: string | null;
|
|
1047
|
-
signedTxCbor?: string | null;
|
|
1048
|
-
isValid?: boolean | null;
|
|
1049
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1050
|
-
witnessCount?: number | null;
|
|
1051
|
-
signerKeyHashes?: string | null;
|
|
1052
|
-
errorMessage?: string | null;
|
|
1053
|
-
warnings?: string | null;
|
|
1054
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1055
|
-
}>;
|
|
1056
|
-
readonly actions: globalThis.Record<never, never>;
|
|
1057
|
-
} & TBase;
|
|
1058
|
-
declare const SignatureVerification_base: {
|
|
1059
|
-
new (...args: any[]): {
|
|
1060
|
-
id?: __.Key<string>;
|
|
1061
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1062
|
-
signingRequest_id?: string | null;
|
|
1063
|
-
signedTxCbor?: string | null;
|
|
1064
|
-
isValid?: boolean | null;
|
|
1065
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1066
|
-
witnessCount?: number | null;
|
|
1067
|
-
signerKeyHashes?: string | null;
|
|
1068
|
-
errorMessage?: string | null;
|
|
1069
|
-
warnings?: string | null;
|
|
1070
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1071
|
-
};
|
|
1072
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
1073
|
-
readonly keys: __.KeysOf<{
|
|
1074
|
-
id?: __.Key<string>;
|
|
1075
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1076
|
-
signingRequest_id?: string | null;
|
|
1077
|
-
signedTxCbor?: string | null;
|
|
1078
|
-
isValid?: boolean | null;
|
|
1079
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1080
|
-
witnessCount?: number | null;
|
|
1081
|
-
signerKeyHashes?: string | null;
|
|
1082
|
-
errorMessage?: string | null;
|
|
1083
|
-
warnings?: string | null;
|
|
1084
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1085
|
-
}>;
|
|
1086
|
-
readonly elements: __.ElementsOf<{
|
|
1087
|
-
id?: __.Key<string>;
|
|
1088
|
-
signingRequest?: __.Association.to<SigningRequest> | null;
|
|
1089
|
-
signingRequest_id?: string | null;
|
|
1090
|
-
signedTxCbor?: string | null;
|
|
1091
|
-
isValid?: boolean | null;
|
|
1092
|
-
txBodyHash?: _odatano_cardano.Blake2b256 | null;
|
|
1093
|
-
witnessCount?: number | null;
|
|
1094
|
-
signerKeyHashes?: string | null;
|
|
1095
|
-
errorMessage?: string | null;
|
|
1096
|
-
warnings?: string | null;
|
|
1097
|
-
verifiedAt?: __.CdsTimestamp | null;
|
|
1098
|
-
}>;
|
|
1099
|
-
readonly actions: globalThis.Record<never, never>;
|
|
1100
|
-
} & typeof __.Entity;
|
|
1101
|
-
export declare class SignatureVerification extends SignatureVerification_base {
|
|
1102
|
-
}
|
|
1103
|
-
export declare class SignatureVerifications extends Array<SignatureVerification> {
|
|
1104
|
-
$count?: number;
|
|
1105
|
-
}
|
|
1106
|
-
export declare function _AddressSigningRequestAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
1107
|
-
new (...args: any[]): {
|
|
1108
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1109
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1110
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1111
|
-
signingRequest_id?: __.Key<string>;
|
|
1112
|
-
};
|
|
1113
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
1114
|
-
readonly keys: __.KeysOf<{
|
|
1115
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1116
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1117
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1118
|
-
signingRequest_id?: __.Key<string>;
|
|
1119
|
-
}>;
|
|
1120
|
-
readonly elements: __.ElementsOf<{
|
|
1121
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1122
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1123
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1124
|
-
signingRequest_id?: __.Key<string>;
|
|
1125
|
-
}>;
|
|
1126
|
-
readonly actions: globalThis.Record<never, never>;
|
|
1127
|
-
} & TBase;
|
|
1128
|
-
declare const AddressSigningRequest_base: {
|
|
1129
|
-
new (...args: any[]): {
|
|
1130
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1131
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1132
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1133
|
-
signingRequest_id?: __.Key<string>;
|
|
1134
|
-
};
|
|
1135
|
-
readonly kind: "entity" | "type" | "aspect";
|
|
1136
|
-
readonly keys: __.KeysOf<{
|
|
1137
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1138
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1139
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1140
|
-
signingRequest_id?: __.Key<string>;
|
|
1141
|
-
}>;
|
|
1142
|
-
readonly elements: __.ElementsOf<{
|
|
1143
|
-
address?: __.Key<__.Association.to<Address>>;
|
|
1144
|
-
address_address?: __.Key<_odatano_cardano.Bech32>;
|
|
1145
|
-
signingRequest?: __.Key<__.Association.to<SigningRequest>>;
|
|
1146
|
-
signingRequest_id?: __.Key<string>;
|
|
1147
|
-
}>;
|
|
1148
|
-
readonly actions: globalThis.Record<never, never>;
|
|
1149
|
-
} & typeof __.Entity;
|
|
1150
|
-
export declare class AddressSigningRequest extends AddressSigningRequest_base {
|
|
1151
|
-
}
|
|
1152
|
-
export declare class AddressSigningRequests extends Array<AddressSigningRequest> {
|
|
1153
|
-
$count?: number;
|
|
1154
|
-
}
|
|
1155
716
|
export declare function _AddressTransactionBuildAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
1156
717
|
new (...args: any[]): {
|
|
1157
718
|
address?: __.Key<__.Association.to<Address>>;
|
|
1158
|
-
address_address?: __.Key<
|
|
719
|
+
address_address?: __.Key<_.Bech32>;
|
|
1159
720
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1160
721
|
txBuild_id?: __.Key<string>;
|
|
1161
722
|
};
|
|
1162
723
|
readonly kind: "entity" | "type" | "aspect";
|
|
1163
724
|
readonly keys: __.KeysOf<{
|
|
1164
725
|
address?: __.Key<__.Association.to<Address>>;
|
|
1165
|
-
address_address?: __.Key<
|
|
726
|
+
address_address?: __.Key<_.Bech32>;
|
|
1166
727
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1167
728
|
txBuild_id?: __.Key<string>;
|
|
1168
729
|
}>;
|
|
1169
730
|
readonly elements: __.ElementsOf<{
|
|
1170
731
|
address?: __.Key<__.Association.to<Address>>;
|
|
1171
|
-
address_address?: __.Key<
|
|
732
|
+
address_address?: __.Key<_.Bech32>;
|
|
1172
733
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1173
734
|
txBuild_id?: __.Key<string>;
|
|
1174
735
|
}>;
|
|
@@ -1177,20 +738,20 @@ export declare function _AddressTransactionBuildAspect<TBase extends new (...arg
|
|
|
1177
738
|
declare const AddressTransactionBuild_base: {
|
|
1178
739
|
new (...args: any[]): {
|
|
1179
740
|
address?: __.Key<__.Association.to<Address>>;
|
|
1180
|
-
address_address?: __.Key<
|
|
741
|
+
address_address?: __.Key<_.Bech32>;
|
|
1181
742
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1182
743
|
txBuild_id?: __.Key<string>;
|
|
1183
744
|
};
|
|
1184
745
|
readonly kind: "entity" | "type" | "aspect";
|
|
1185
746
|
readonly keys: __.KeysOf<{
|
|
1186
747
|
address?: __.Key<__.Association.to<Address>>;
|
|
1187
|
-
address_address?: __.Key<
|
|
748
|
+
address_address?: __.Key<_.Bech32>;
|
|
1188
749
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1189
750
|
txBuild_id?: __.Key<string>;
|
|
1190
751
|
}>;
|
|
1191
752
|
readonly elements: __.ElementsOf<{
|
|
1192
753
|
address?: __.Key<__.Association.to<Address>>;
|
|
1193
|
-
address_address?: __.Key<
|
|
754
|
+
address_address?: __.Key<_.Bech32>;
|
|
1194
755
|
txBuild?: __.Key<__.Association.to<TransactionBuild>>;
|
|
1195
756
|
txBuild_id?: __.Key<string>;
|
|
1196
757
|
}>;
|
|
@@ -1205,11 +766,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1205
766
|
new (...args: any[]): {
|
|
1206
767
|
validFrom?: __.CdsTimestamp | null;
|
|
1207
768
|
validTo?: __.CdsTimestamp | null;
|
|
1208
|
-
address?: __.Key<
|
|
1209
|
-
stakeAddress?:
|
|
769
|
+
address?: __.Key<_.Bech32>;
|
|
770
|
+
stakeAddress?: _.Bech32 | null;
|
|
1210
771
|
type?: string | null;
|
|
1211
772
|
isScript?: boolean | null;
|
|
1212
|
-
totalLovelace?:
|
|
773
|
+
totalLovelace?: _.Lovelace | null;
|
|
1213
774
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1214
775
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1215
776
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1221,11 +782,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1221
782
|
readonly keys: __.KeysOf<{
|
|
1222
783
|
validFrom?: __.CdsTimestamp | null;
|
|
1223
784
|
validTo?: __.CdsTimestamp | null;
|
|
1224
|
-
address?: __.Key<
|
|
1225
|
-
stakeAddress?:
|
|
785
|
+
address?: __.Key<_.Bech32>;
|
|
786
|
+
stakeAddress?: _.Bech32 | null;
|
|
1226
787
|
type?: string | null;
|
|
1227
788
|
isScript?: boolean | null;
|
|
1228
|
-
totalLovelace?:
|
|
789
|
+
totalLovelace?: _.Lovelace | null;
|
|
1229
790
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1230
791
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1231
792
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1236,11 +797,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1236
797
|
readonly elements: __.ElementsOf<{
|
|
1237
798
|
validFrom?: __.CdsTimestamp | null;
|
|
1238
799
|
validTo?: __.CdsTimestamp | null;
|
|
1239
|
-
address?: __.Key<
|
|
1240
|
-
stakeAddress?:
|
|
800
|
+
address?: __.Key<_.Bech32>;
|
|
801
|
+
stakeAddress?: _.Bech32 | null;
|
|
1241
802
|
type?: string | null;
|
|
1242
803
|
isScript?: boolean | null;
|
|
1243
|
-
totalLovelace?:
|
|
804
|
+
totalLovelace?: _.Lovelace | null;
|
|
1244
805
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1245
806
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1246
807
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1254,11 +815,11 @@ declare const Address_base: {
|
|
|
1254
815
|
new (...args: any[]): {
|
|
1255
816
|
validFrom?: __.CdsTimestamp | null;
|
|
1256
817
|
validTo?: __.CdsTimestamp | null;
|
|
1257
|
-
address?: __.Key<
|
|
1258
|
-
stakeAddress?:
|
|
818
|
+
address?: __.Key<_.Bech32>;
|
|
819
|
+
stakeAddress?: _.Bech32 | null;
|
|
1259
820
|
type?: string | null;
|
|
1260
821
|
isScript?: boolean | null;
|
|
1261
|
-
totalLovelace?:
|
|
822
|
+
totalLovelace?: _.Lovelace | null;
|
|
1262
823
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1263
824
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1264
825
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1270,11 +831,11 @@ declare const Address_base: {
|
|
|
1270
831
|
readonly keys: __.KeysOf<{
|
|
1271
832
|
validFrom?: __.CdsTimestamp | null;
|
|
1272
833
|
validTo?: __.CdsTimestamp | null;
|
|
1273
|
-
address?: __.Key<
|
|
1274
|
-
stakeAddress?:
|
|
834
|
+
address?: __.Key<_.Bech32>;
|
|
835
|
+
stakeAddress?: _.Bech32 | null;
|
|
1275
836
|
type?: string | null;
|
|
1276
837
|
isScript?: boolean | null;
|
|
1277
|
-
totalLovelace?:
|
|
838
|
+
totalLovelace?: _.Lovelace | null;
|
|
1278
839
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1279
840
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1280
841
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1285,11 +846,11 @@ declare const Address_base: {
|
|
|
1285
846
|
readonly elements: __.ElementsOf<{
|
|
1286
847
|
validFrom?: __.CdsTimestamp | null;
|
|
1287
848
|
validTo?: __.CdsTimestamp | null;
|
|
1288
|
-
address?: __.Key<
|
|
1289
|
-
stakeAddress?:
|
|
849
|
+
address?: __.Key<_.Bech32>;
|
|
850
|
+
stakeAddress?: _.Bech32 | null;
|
|
1290
851
|
type?: string | null;
|
|
1291
852
|
isScript?: boolean | null;
|
|
1292
|
-
totalLovelace?:
|
|
853
|
+
totalLovelace?: _.Lovelace | null;
|
|
1293
854
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1294
855
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1295
856
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1307,9 +868,9 @@ export declare class Addresses extends Array<Address> {
|
|
|
1307
868
|
export declare function _AddressTransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
1308
869
|
new (...args: any[]): {
|
|
1309
870
|
address?: __.Key<__.Association.to<Address>>;
|
|
1310
|
-
address_address?: __.Key<
|
|
871
|
+
address_address?: __.Key<_.Bech32>;
|
|
1311
872
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1312
|
-
tx_hash?: __.Key<
|
|
873
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1313
874
|
netAmount?: number | null;
|
|
1314
875
|
blockTime?: number | null;
|
|
1315
876
|
netAssets?: string | null;
|
|
@@ -1318,9 +879,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1318
879
|
readonly kind: "entity" | "type" | "aspect";
|
|
1319
880
|
readonly keys: __.KeysOf<{
|
|
1320
881
|
address?: __.Key<__.Association.to<Address>>;
|
|
1321
|
-
address_address?: __.Key<
|
|
882
|
+
address_address?: __.Key<_.Bech32>;
|
|
1322
883
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1323
|
-
tx_hash?: __.Key<
|
|
884
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1324
885
|
netAmount?: number | null;
|
|
1325
886
|
blockTime?: number | null;
|
|
1326
887
|
netAssets?: string | null;
|
|
@@ -1328,9 +889,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1328
889
|
}>;
|
|
1329
890
|
readonly elements: __.ElementsOf<{
|
|
1330
891
|
address?: __.Key<__.Association.to<Address>>;
|
|
1331
|
-
address_address?: __.Key<
|
|
892
|
+
address_address?: __.Key<_.Bech32>;
|
|
1332
893
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1333
|
-
tx_hash?: __.Key<
|
|
894
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1334
895
|
netAmount?: number | null;
|
|
1335
896
|
blockTime?: number | null;
|
|
1336
897
|
netAssets?: string | null;
|
|
@@ -1341,9 +902,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1341
902
|
declare const AddressTransaction_base: {
|
|
1342
903
|
new (...args: any[]): {
|
|
1343
904
|
address?: __.Key<__.Association.to<Address>>;
|
|
1344
|
-
address_address?: __.Key<
|
|
905
|
+
address_address?: __.Key<_.Bech32>;
|
|
1345
906
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1346
|
-
tx_hash?: __.Key<
|
|
907
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1347
908
|
netAmount?: number | null;
|
|
1348
909
|
blockTime?: number | null;
|
|
1349
910
|
netAssets?: string | null;
|
|
@@ -1352,9 +913,9 @@ declare const AddressTransaction_base: {
|
|
|
1352
913
|
readonly kind: "entity" | "type" | "aspect";
|
|
1353
914
|
readonly keys: __.KeysOf<{
|
|
1354
915
|
address?: __.Key<__.Association.to<Address>>;
|
|
1355
|
-
address_address?: __.Key<
|
|
916
|
+
address_address?: __.Key<_.Bech32>;
|
|
1356
917
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1357
|
-
tx_hash?: __.Key<
|
|
918
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1358
919
|
netAmount?: number | null;
|
|
1359
920
|
blockTime?: number | null;
|
|
1360
921
|
netAssets?: string | null;
|
|
@@ -1362,9 +923,9 @@ declare const AddressTransaction_base: {
|
|
|
1362
923
|
}>;
|
|
1363
924
|
readonly elements: __.ElementsOf<{
|
|
1364
925
|
address?: __.Key<__.Association.to<Address>>;
|
|
1365
|
-
address_address?: __.Key<
|
|
926
|
+
address_address?: __.Key<_.Bech32>;
|
|
1366
927
|
tx?: __.Key<__.Association.to<_odatano_cardano.Transaction>>;
|
|
1367
|
-
tx_hash?: __.Key<
|
|
928
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1368
929
|
netAmount?: number | null;
|
|
1369
930
|
blockTime?: number | null;
|
|
1370
931
|
netAssets?: string | null;
|
|
@@ -1382,11 +943,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1382
943
|
validFrom?: __.CdsTimestamp | null;
|
|
1383
944
|
validTo?: __.CdsTimestamp | null;
|
|
1384
945
|
address?: __.Key<__.Association.to<Address>>;
|
|
1385
|
-
address_address?: __.Key<
|
|
1386
|
-
unit?: __.Key<
|
|
1387
|
-
asset_quantity?:
|
|
1388
|
-
asset_policyId?:
|
|
1389
|
-
asset_assetNameHex?:
|
|
946
|
+
address_address?: __.Key<_.Bech32>;
|
|
947
|
+
unit?: __.Key<_.AssetUnit>;
|
|
948
|
+
asset_quantity?: _.Lovelace | null;
|
|
949
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
950
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1390
951
|
asset_assetName?: string | null;
|
|
1391
952
|
asset_fingerprint?: string | null;
|
|
1392
953
|
};
|
|
@@ -1395,11 +956,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1395
956
|
validFrom?: __.CdsTimestamp | null;
|
|
1396
957
|
validTo?: __.CdsTimestamp | null;
|
|
1397
958
|
address?: __.Key<__.Association.to<Address>>;
|
|
1398
|
-
address_address?: __.Key<
|
|
1399
|
-
unit?: __.Key<
|
|
1400
|
-
asset_quantity?:
|
|
1401
|
-
asset_policyId?:
|
|
1402
|
-
asset_assetNameHex?:
|
|
959
|
+
address_address?: __.Key<_.Bech32>;
|
|
960
|
+
unit?: __.Key<_.AssetUnit>;
|
|
961
|
+
asset_quantity?: _.Lovelace | null;
|
|
962
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
963
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1403
964
|
asset_assetName?: string | null;
|
|
1404
965
|
asset_fingerprint?: string | null;
|
|
1405
966
|
}>;
|
|
@@ -1407,11 +968,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1407
968
|
validFrom?: __.CdsTimestamp | null;
|
|
1408
969
|
validTo?: __.CdsTimestamp | null;
|
|
1409
970
|
address?: __.Key<__.Association.to<Address>>;
|
|
1410
|
-
address_address?: __.Key<
|
|
1411
|
-
unit?: __.Key<
|
|
1412
|
-
asset_quantity?:
|
|
1413
|
-
asset_policyId?:
|
|
1414
|
-
asset_assetNameHex?:
|
|
971
|
+
address_address?: __.Key<_.Bech32>;
|
|
972
|
+
unit?: __.Key<_.AssetUnit>;
|
|
973
|
+
asset_quantity?: _.Lovelace | null;
|
|
974
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
975
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1415
976
|
asset_assetName?: string | null;
|
|
1416
977
|
asset_fingerprint?: string | null;
|
|
1417
978
|
}>;
|
|
@@ -1422,11 +983,11 @@ declare const AddressAsset_base: {
|
|
|
1422
983
|
validFrom?: __.CdsTimestamp | null;
|
|
1423
984
|
validTo?: __.CdsTimestamp | null;
|
|
1424
985
|
address?: __.Key<__.Association.to<Address>>;
|
|
1425
|
-
address_address?: __.Key<
|
|
1426
|
-
unit?: __.Key<
|
|
1427
|
-
asset_quantity?:
|
|
1428
|
-
asset_policyId?:
|
|
1429
|
-
asset_assetNameHex?:
|
|
986
|
+
address_address?: __.Key<_.Bech32>;
|
|
987
|
+
unit?: __.Key<_.AssetUnit>;
|
|
988
|
+
asset_quantity?: _.Lovelace | null;
|
|
989
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
990
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1430
991
|
asset_assetName?: string | null;
|
|
1431
992
|
asset_fingerprint?: string | null;
|
|
1432
993
|
};
|
|
@@ -1435,11 +996,11 @@ declare const AddressAsset_base: {
|
|
|
1435
996
|
validFrom?: __.CdsTimestamp | null;
|
|
1436
997
|
validTo?: __.CdsTimestamp | null;
|
|
1437
998
|
address?: __.Key<__.Association.to<Address>>;
|
|
1438
|
-
address_address?: __.Key<
|
|
1439
|
-
unit?: __.Key<
|
|
1440
|
-
asset_quantity?:
|
|
1441
|
-
asset_policyId?:
|
|
1442
|
-
asset_assetNameHex?:
|
|
999
|
+
address_address?: __.Key<_.Bech32>;
|
|
1000
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1001
|
+
asset_quantity?: _.Lovelace | null;
|
|
1002
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1003
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1443
1004
|
asset_assetName?: string | null;
|
|
1444
1005
|
asset_fingerprint?: string | null;
|
|
1445
1006
|
}>;
|
|
@@ -1447,11 +1008,11 @@ declare const AddressAsset_base: {
|
|
|
1447
1008
|
validFrom?: __.CdsTimestamp | null;
|
|
1448
1009
|
validTo?: __.CdsTimestamp | null;
|
|
1449
1010
|
address?: __.Key<__.Association.to<Address>>;
|
|
1450
|
-
address_address?: __.Key<
|
|
1451
|
-
unit?: __.Key<
|
|
1452
|
-
asset_quantity?:
|
|
1453
|
-
asset_policyId?:
|
|
1454
|
-
asset_assetNameHex?:
|
|
1011
|
+
address_address?: __.Key<_.Bech32>;
|
|
1012
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1013
|
+
asset_quantity?: _.Lovelace | null;
|
|
1014
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1015
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1455
1016
|
asset_assetName?: string | null;
|
|
1456
1017
|
asset_fingerprint?: string | null;
|
|
1457
1018
|
}>;
|
|
@@ -1467,14 +1028,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1467
1028
|
validFrom?: __.CdsTimestamp | null;
|
|
1468
1029
|
validTo?: __.CdsTimestamp | null;
|
|
1469
1030
|
address?: __.Key<__.Association.to<Address>>;
|
|
1470
|
-
address_address?: __.Key<
|
|
1471
|
-
hash?: __.Key<
|
|
1031
|
+
address_address?: __.Key<_.Bech32>;
|
|
1032
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1472
1033
|
index?: __.Key<number>;
|
|
1473
|
-
blockHash?:
|
|
1474
|
-
utxodata_dataHash?:
|
|
1034
|
+
blockHash?: _.Blake2b256 | null;
|
|
1035
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1475
1036
|
utxodata_inlineDatum?: string | null;
|
|
1476
|
-
utxodata_referenceScriptHash?:
|
|
1477
|
-
lovelace?:
|
|
1037
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1038
|
+
lovelace?: _.Lovelace | null;
|
|
1478
1039
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1479
1040
|
hasAssets?: boolean | null;
|
|
1480
1041
|
};
|
|
@@ -1483,14 +1044,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1483
1044
|
validFrom?: __.CdsTimestamp | null;
|
|
1484
1045
|
validTo?: __.CdsTimestamp | null;
|
|
1485
1046
|
address?: __.Key<__.Association.to<Address>>;
|
|
1486
|
-
address_address?: __.Key<
|
|
1487
|
-
hash?: __.Key<
|
|
1047
|
+
address_address?: __.Key<_.Bech32>;
|
|
1048
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1488
1049
|
index?: __.Key<number>;
|
|
1489
|
-
blockHash?:
|
|
1490
|
-
utxodata_dataHash?:
|
|
1050
|
+
blockHash?: _.Blake2b256 | null;
|
|
1051
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1491
1052
|
utxodata_inlineDatum?: string | null;
|
|
1492
|
-
utxodata_referenceScriptHash?:
|
|
1493
|
-
lovelace?:
|
|
1053
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1054
|
+
lovelace?: _.Lovelace | null;
|
|
1494
1055
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1495
1056
|
hasAssets?: boolean | null;
|
|
1496
1057
|
}>;
|
|
@@ -1498,14 +1059,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1498
1059
|
validFrom?: __.CdsTimestamp | null;
|
|
1499
1060
|
validTo?: __.CdsTimestamp | null;
|
|
1500
1061
|
address?: __.Key<__.Association.to<Address>>;
|
|
1501
|
-
address_address?: __.Key<
|
|
1502
|
-
hash?: __.Key<
|
|
1062
|
+
address_address?: __.Key<_.Bech32>;
|
|
1063
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1503
1064
|
index?: __.Key<number>;
|
|
1504
|
-
blockHash?:
|
|
1505
|
-
utxodata_dataHash?:
|
|
1065
|
+
blockHash?: _.Blake2b256 | null;
|
|
1066
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1506
1067
|
utxodata_inlineDatum?: string | null;
|
|
1507
|
-
utxodata_referenceScriptHash?:
|
|
1508
|
-
lovelace?:
|
|
1068
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1069
|
+
lovelace?: _.Lovelace | null;
|
|
1509
1070
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1510
1071
|
hasAssets?: boolean | null;
|
|
1511
1072
|
}>;
|
|
@@ -1516,14 +1077,14 @@ declare const AddressUTxO_base: {
|
|
|
1516
1077
|
validFrom?: __.CdsTimestamp | null;
|
|
1517
1078
|
validTo?: __.CdsTimestamp | null;
|
|
1518
1079
|
address?: __.Key<__.Association.to<Address>>;
|
|
1519
|
-
address_address?: __.Key<
|
|
1520
|
-
hash?: __.Key<
|
|
1080
|
+
address_address?: __.Key<_.Bech32>;
|
|
1081
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1521
1082
|
index?: __.Key<number>;
|
|
1522
|
-
blockHash?:
|
|
1523
|
-
utxodata_dataHash?:
|
|
1083
|
+
blockHash?: _.Blake2b256 | null;
|
|
1084
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1524
1085
|
utxodata_inlineDatum?: string | null;
|
|
1525
|
-
utxodata_referenceScriptHash?:
|
|
1526
|
-
lovelace?:
|
|
1086
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1087
|
+
lovelace?: _.Lovelace | null;
|
|
1527
1088
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1528
1089
|
hasAssets?: boolean | null;
|
|
1529
1090
|
};
|
|
@@ -1532,14 +1093,14 @@ declare const AddressUTxO_base: {
|
|
|
1532
1093
|
validFrom?: __.CdsTimestamp | null;
|
|
1533
1094
|
validTo?: __.CdsTimestamp | null;
|
|
1534
1095
|
address?: __.Key<__.Association.to<Address>>;
|
|
1535
|
-
address_address?: __.Key<
|
|
1536
|
-
hash?: __.Key<
|
|
1096
|
+
address_address?: __.Key<_.Bech32>;
|
|
1097
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1537
1098
|
index?: __.Key<number>;
|
|
1538
|
-
blockHash?:
|
|
1539
|
-
utxodata_dataHash?:
|
|
1099
|
+
blockHash?: _.Blake2b256 | null;
|
|
1100
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1540
1101
|
utxodata_inlineDatum?: string | null;
|
|
1541
|
-
utxodata_referenceScriptHash?:
|
|
1542
|
-
lovelace?:
|
|
1102
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1103
|
+
lovelace?: _.Lovelace | null;
|
|
1543
1104
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1544
1105
|
hasAssets?: boolean | null;
|
|
1545
1106
|
}>;
|
|
@@ -1547,14 +1108,14 @@ declare const AddressUTxO_base: {
|
|
|
1547
1108
|
validFrom?: __.CdsTimestamp | null;
|
|
1548
1109
|
validTo?: __.CdsTimestamp | null;
|
|
1549
1110
|
address?: __.Key<__.Association.to<Address>>;
|
|
1550
|
-
address_address?: __.Key<
|
|
1551
|
-
hash?: __.Key<
|
|
1111
|
+
address_address?: __.Key<_.Bech32>;
|
|
1112
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1552
1113
|
index?: __.Key<number>;
|
|
1553
|
-
blockHash?:
|
|
1554
|
-
utxodata_dataHash?:
|
|
1114
|
+
blockHash?: _.Blake2b256 | null;
|
|
1115
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1555
1116
|
utxodata_inlineDatum?: string | null;
|
|
1556
|
-
utxodata_referenceScriptHash?:
|
|
1557
|
-
lovelace?:
|
|
1117
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1118
|
+
lovelace?: _.Lovelace | null;
|
|
1558
1119
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1559
1120
|
hasAssets?: boolean | null;
|
|
1560
1121
|
}>;
|
|
@@ -1570,13 +1131,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1570
1131
|
validFrom?: __.CdsTimestamp | null;
|
|
1571
1132
|
validTo?: __.CdsTimestamp | null;
|
|
1572
1133
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1573
|
-
utxo_hash?: __.Key<
|
|
1134
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1574
1135
|
utxo_index?: __.Key<number>;
|
|
1575
|
-
utxo_address_address?: __.Key<
|
|
1576
|
-
unit?: __.Key<
|
|
1577
|
-
asset_quantity?:
|
|
1578
|
-
asset_policyId?:
|
|
1579
|
-
asset_assetNameHex?:
|
|
1136
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1137
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1138
|
+
asset_quantity?: _.Lovelace | null;
|
|
1139
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1140
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1580
1141
|
asset_assetName?: string | null;
|
|
1581
1142
|
asset_fingerprint?: string | null;
|
|
1582
1143
|
};
|
|
@@ -1585,13 +1146,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1585
1146
|
validFrom?: __.CdsTimestamp | null;
|
|
1586
1147
|
validTo?: __.CdsTimestamp | null;
|
|
1587
1148
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1588
|
-
utxo_hash?: __.Key<
|
|
1149
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1589
1150
|
utxo_index?: __.Key<number>;
|
|
1590
|
-
utxo_address_address?: __.Key<
|
|
1591
|
-
unit?: __.Key<
|
|
1592
|
-
asset_quantity?:
|
|
1593
|
-
asset_policyId?:
|
|
1594
|
-
asset_assetNameHex?:
|
|
1151
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1152
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1153
|
+
asset_quantity?: _.Lovelace | null;
|
|
1154
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1155
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1595
1156
|
asset_assetName?: string | null;
|
|
1596
1157
|
asset_fingerprint?: string | null;
|
|
1597
1158
|
}>;
|
|
@@ -1599,13 +1160,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1599
1160
|
validFrom?: __.CdsTimestamp | null;
|
|
1600
1161
|
validTo?: __.CdsTimestamp | null;
|
|
1601
1162
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1602
|
-
utxo_hash?: __.Key<
|
|
1163
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1603
1164
|
utxo_index?: __.Key<number>;
|
|
1604
|
-
utxo_address_address?: __.Key<
|
|
1605
|
-
unit?: __.Key<
|
|
1606
|
-
asset_quantity?:
|
|
1607
|
-
asset_policyId?:
|
|
1608
|
-
asset_assetNameHex?:
|
|
1165
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1166
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1167
|
+
asset_quantity?: _.Lovelace | null;
|
|
1168
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1169
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1609
1170
|
asset_assetName?: string | null;
|
|
1610
1171
|
asset_fingerprint?: string | null;
|
|
1611
1172
|
}>;
|
|
@@ -1616,13 +1177,13 @@ declare const UTxOAsset_base: {
|
|
|
1616
1177
|
validFrom?: __.CdsTimestamp | null;
|
|
1617
1178
|
validTo?: __.CdsTimestamp | null;
|
|
1618
1179
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1619
|
-
utxo_hash?: __.Key<
|
|
1180
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1620
1181
|
utxo_index?: __.Key<number>;
|
|
1621
|
-
utxo_address_address?: __.Key<
|
|
1622
|
-
unit?: __.Key<
|
|
1623
|
-
asset_quantity?:
|
|
1624
|
-
asset_policyId?:
|
|
1625
|
-
asset_assetNameHex?:
|
|
1182
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1183
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1184
|
+
asset_quantity?: _.Lovelace | null;
|
|
1185
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1186
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1626
1187
|
asset_assetName?: string | null;
|
|
1627
1188
|
asset_fingerprint?: string | null;
|
|
1628
1189
|
};
|
|
@@ -1631,13 +1192,13 @@ declare const UTxOAsset_base: {
|
|
|
1631
1192
|
validFrom?: __.CdsTimestamp | null;
|
|
1632
1193
|
validTo?: __.CdsTimestamp | null;
|
|
1633
1194
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1634
|
-
utxo_hash?: __.Key<
|
|
1195
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1635
1196
|
utxo_index?: __.Key<number>;
|
|
1636
|
-
utxo_address_address?: __.Key<
|
|
1637
|
-
unit?: __.Key<
|
|
1638
|
-
asset_quantity?:
|
|
1639
|
-
asset_policyId?:
|
|
1640
|
-
asset_assetNameHex?:
|
|
1197
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1198
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1199
|
+
asset_quantity?: _.Lovelace | null;
|
|
1200
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1201
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1641
1202
|
asset_assetName?: string | null;
|
|
1642
1203
|
asset_fingerprint?: string | null;
|
|
1643
1204
|
}>;
|
|
@@ -1645,13 +1206,13 @@ declare const UTxOAsset_base: {
|
|
|
1645
1206
|
validFrom?: __.CdsTimestamp | null;
|
|
1646
1207
|
validTo?: __.CdsTimestamp | null;
|
|
1647
1208
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1648
|
-
utxo_hash?: __.Key<
|
|
1209
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1649
1210
|
utxo_index?: __.Key<number>;
|
|
1650
|
-
utxo_address_address?: __.Key<
|
|
1651
|
-
unit?: __.Key<
|
|
1652
|
-
asset_quantity?:
|
|
1653
|
-
asset_policyId?:
|
|
1654
|
-
asset_assetNameHex?:
|
|
1211
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1212
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1213
|
+
asset_quantity?: _.Lovelace | null;
|
|
1214
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1215
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1655
1216
|
asset_assetName?: string | null;
|
|
1656
1217
|
asset_fingerprint?: string | null;
|
|
1657
1218
|
}>;
|
|
@@ -1663,20 +1224,20 @@ export declare class UTxOAssets extends Array<UTxOAsset> {
|
|
|
1663
1224
|
$count?: number;
|
|
1664
1225
|
}
|
|
1665
1226
|
export declare const BuildSimpleAdaTransaction: {
|
|
1666
|
-
(senderAddress:
|
|
1227
|
+
(senderAddress: _.Bech32 | null, recipientAddress: _.Bech32 | null, lovelaceAmount: _.Lovelace | null, changeAddress: _.Bech32 | null, outputDatumJson: string | null, assetsJson: string | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1667
1228
|
({ senderAddress, recipientAddress, lovelaceAmount, changeAddress, outputDatumJson, assetsJson }: {
|
|
1668
|
-
senderAddress?:
|
|
1669
|
-
recipientAddress?:
|
|
1670
|
-
lovelaceAmount?:
|
|
1671
|
-
changeAddress?:
|
|
1229
|
+
senderAddress?: _.Bech32 | null;
|
|
1230
|
+
recipientAddress?: _.Bech32 | null;
|
|
1231
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1232
|
+
changeAddress?: _.Bech32 | null;
|
|
1672
1233
|
outputDatumJson?: string | null;
|
|
1673
1234
|
assetsJson?: string | null;
|
|
1674
1235
|
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1675
1236
|
__parameters: {
|
|
1676
|
-
senderAddress?:
|
|
1677
|
-
recipientAddress?:
|
|
1678
|
-
lovelaceAmount?:
|
|
1679
|
-
changeAddress?:
|
|
1237
|
+
senderAddress?: _.Bech32 | null;
|
|
1238
|
+
recipientAddress?: _.Bech32 | null;
|
|
1239
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1240
|
+
changeAddress?: _.Bech32 | null;
|
|
1680
1241
|
outputDatumJson?: string | null;
|
|
1681
1242
|
assetsJson?: string | null;
|
|
1682
1243
|
};
|
|
@@ -1685,19 +1246,19 @@ export declare const BuildSimpleAdaTransaction: {
|
|
|
1685
1246
|
kind: 'action';
|
|
1686
1247
|
};
|
|
1687
1248
|
export declare const BuildTransactionWithMetadata: {
|
|
1688
|
-
(senderAddress:
|
|
1249
|
+
(senderAddress: _.Bech32 | null, recipientAddress: _.Bech32 | null, lovelaceAmount: _.Lovelace | null, changeAddress: _.Bech32 | null, metadataJson: string | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1689
1250
|
({ senderAddress, recipientAddress, lovelaceAmount, changeAddress, metadataJson }: {
|
|
1690
|
-
senderAddress?:
|
|
1691
|
-
recipientAddress?:
|
|
1692
|
-
lovelaceAmount?:
|
|
1693
|
-
changeAddress?:
|
|
1251
|
+
senderAddress?: _.Bech32 | null;
|
|
1252
|
+
recipientAddress?: _.Bech32 | null;
|
|
1253
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1254
|
+
changeAddress?: _.Bech32 | null;
|
|
1694
1255
|
metadataJson?: string | null;
|
|
1695
1256
|
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1696
1257
|
__parameters: {
|
|
1697
|
-
senderAddress?:
|
|
1698
|
-
recipientAddress?:
|
|
1699
|
-
lovelaceAmount?:
|
|
1700
|
-
changeAddress?:
|
|
1258
|
+
senderAddress?: _.Bech32 | null;
|
|
1259
|
+
recipientAddress?: _.Bech32 | null;
|
|
1260
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1261
|
+
changeAddress?: _.Bech32 | null;
|
|
1701
1262
|
metadataJson?: string | null;
|
|
1702
1263
|
};
|
|
1703
1264
|
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
@@ -1705,21 +1266,21 @@ export declare const BuildTransactionWithMetadata: {
|
|
|
1705
1266
|
kind: 'action';
|
|
1706
1267
|
};
|
|
1707
1268
|
export declare const BuildMultiAssetTransaction: {
|
|
1708
|
-
(senderAddress:
|
|
1269
|
+
(senderAddress: _.Bech32 | null, recipientAddress: _.Bech32 | null, lovelaceAmount: _.Lovelace | null, assetsJson: string | null, changeAddress: _.Bech32 | null, outputDatumJson: string | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1709
1270
|
({ senderAddress, recipientAddress, lovelaceAmount, assetsJson, changeAddress, outputDatumJson }: {
|
|
1710
|
-
senderAddress?:
|
|
1711
|
-
recipientAddress?:
|
|
1712
|
-
lovelaceAmount?:
|
|
1271
|
+
senderAddress?: _.Bech32 | null;
|
|
1272
|
+
recipientAddress?: _.Bech32 | null;
|
|
1273
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1713
1274
|
assetsJson?: string | null;
|
|
1714
|
-
changeAddress?:
|
|
1275
|
+
changeAddress?: _.Bech32 | null;
|
|
1715
1276
|
outputDatumJson?: string | null;
|
|
1716
1277
|
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1717
1278
|
__parameters: {
|
|
1718
|
-
senderAddress?:
|
|
1719
|
-
recipientAddress?:
|
|
1720
|
-
lovelaceAmount?:
|
|
1279
|
+
senderAddress?: _.Bech32 | null;
|
|
1280
|
+
recipientAddress?: _.Bech32 | null;
|
|
1281
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1721
1282
|
assetsJson?: string | null;
|
|
1722
|
-
changeAddress?:
|
|
1283
|
+
changeAddress?: _.Bech32 | null;
|
|
1723
1284
|
outputDatumJson?: string | null;
|
|
1724
1285
|
};
|
|
1725
1286
|
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
@@ -1727,14 +1288,14 @@ export declare const BuildMultiAssetTransaction: {
|
|
|
1727
1288
|
kind: 'action';
|
|
1728
1289
|
};
|
|
1729
1290
|
export declare const BuildMintTransaction: {
|
|
1730
|
-
(senderAddress:
|
|
1291
|
+
(senderAddress: _.Bech32 | null, recipientAddress: _.Bech32 | null, lovelaceAmount: _.Lovelace | null, mintActionsJson: string | null, mintingPolicyScript: string | null, changeAddress: _.Bech32 | null, requiredSignersJson: string | null, scriptParamsJson: string | null, inlineDatumJson: string | null, mintRedeemerJson: string | null, lockOnScript: boolean | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1731
1292
|
({ senderAddress, recipientAddress, lovelaceAmount, mintActionsJson, mintingPolicyScript, changeAddress, requiredSignersJson, scriptParamsJson, inlineDatumJson, mintRedeemerJson, lockOnScript }: {
|
|
1732
|
-
senderAddress?:
|
|
1733
|
-
recipientAddress?:
|
|
1734
|
-
lovelaceAmount?:
|
|
1293
|
+
senderAddress?: _.Bech32 | null;
|
|
1294
|
+
recipientAddress?: _.Bech32 | null;
|
|
1295
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1735
1296
|
mintActionsJson?: string | null;
|
|
1736
1297
|
mintingPolicyScript?: string | null;
|
|
1737
|
-
changeAddress?:
|
|
1298
|
+
changeAddress?: _.Bech32 | null;
|
|
1738
1299
|
requiredSignersJson?: string | null;
|
|
1739
1300
|
scriptParamsJson?: string | null;
|
|
1740
1301
|
inlineDatumJson?: string | null;
|
|
@@ -1742,12 +1303,12 @@ export declare const BuildMintTransaction: {
|
|
|
1742
1303
|
lockOnScript?: boolean | null;
|
|
1743
1304
|
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1744
1305
|
__parameters: {
|
|
1745
|
-
senderAddress?:
|
|
1746
|
-
recipientAddress?:
|
|
1747
|
-
lovelaceAmount?:
|
|
1306
|
+
senderAddress?: _.Bech32 | null;
|
|
1307
|
+
recipientAddress?: _.Bech32 | null;
|
|
1308
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1748
1309
|
mintActionsJson?: string | null;
|
|
1749
1310
|
mintingPolicyScript?: string | null;
|
|
1750
|
-
changeAddress?:
|
|
1311
|
+
changeAddress?: _.Bech32 | null;
|
|
1751
1312
|
requiredSignersJson?: string | null;
|
|
1752
1313
|
scriptParamsJson?: string | null;
|
|
1753
1314
|
inlineDatumJson?: string | null;
|
|
@@ -1758,54 +1319,6 @@ export declare const BuildMintTransaction: {
|
|
|
1758
1319
|
__self: never;
|
|
1759
1320
|
kind: 'action';
|
|
1760
1321
|
};
|
|
1761
|
-
export declare const BuildPlutusSpendTransaction: {
|
|
1762
|
-
(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, requiredSignersJson: string | null, scriptParamsJson: string | null, inlineDatumJson: string | null, lockOnScript: boolean | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1763
|
-
({ senderAddress, recipientAddress, lovelaceAmount, validatorScript, scriptTxHash, scriptOutputIndex, redeemerJson, datumJson, changeAddress, requiredSignersJson, scriptParamsJson, inlineDatumJson, lockOnScript }: {
|
|
1764
|
-
senderAddress?: _odatano_cardano.Bech32 | null;
|
|
1765
|
-
recipientAddress?: _odatano_cardano.Bech32 | null;
|
|
1766
|
-
lovelaceAmount?: _odatano_cardano.Lovelace | null;
|
|
1767
|
-
validatorScript?: string | null;
|
|
1768
|
-
scriptTxHash?: string | null;
|
|
1769
|
-
scriptOutputIndex?: number | null;
|
|
1770
|
-
redeemerJson?: string | null;
|
|
1771
|
-
datumJson?: string | null;
|
|
1772
|
-
changeAddress?: _odatano_cardano.Bech32 | null;
|
|
1773
|
-
requiredSignersJson?: string | null;
|
|
1774
|
-
scriptParamsJson?: string | null;
|
|
1775
|
-
inlineDatumJson?: string | null;
|
|
1776
|
-
lockOnScript?: boolean | null;
|
|
1777
|
-
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1778
|
-
__parameters: {
|
|
1779
|
-
senderAddress?: _odatano_cardano.Bech32 | null;
|
|
1780
|
-
recipientAddress?: _odatano_cardano.Bech32 | null;
|
|
1781
|
-
lovelaceAmount?: _odatano_cardano.Lovelace | null;
|
|
1782
|
-
validatorScript?: string | null;
|
|
1783
|
-
scriptTxHash?: string | null;
|
|
1784
|
-
scriptOutputIndex?: number | null;
|
|
1785
|
-
redeemerJson?: string | null;
|
|
1786
|
-
datumJson?: string | null;
|
|
1787
|
-
changeAddress?: _odatano_cardano.Bech32 | null;
|
|
1788
|
-
requiredSignersJson?: string | null;
|
|
1789
|
-
scriptParamsJson?: string | null;
|
|
1790
|
-
inlineDatumJson?: string | null;
|
|
1791
|
-
lockOnScript?: boolean | null;
|
|
1792
|
-
};
|
|
1793
|
-
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1794
|
-
__self: never;
|
|
1795
|
-
kind: 'action';
|
|
1796
|
-
};
|
|
1797
|
-
export declare const SetCollateral: {
|
|
1798
|
-
(address: _odatano_cardano.Bech32 | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1799
|
-
({ address }: {
|
|
1800
|
-
address?: _odatano_cardano.Bech32 | null;
|
|
1801
|
-
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1802
|
-
__parameters: {
|
|
1803
|
-
address?: _odatano_cardano.Bech32 | null;
|
|
1804
|
-
};
|
|
1805
|
-
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1806
|
-
__self: never;
|
|
1807
|
-
kind: 'action';
|
|
1808
|
-
};
|
|
1809
1322
|
export declare const GetBuildDetails: {
|
|
1810
1323
|
(buildId: string | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1811
1324
|
({ buildId }: {
|
|
@@ -1846,51 +1359,61 @@ export declare const SubmitSignedTransaction: {
|
|
|
1846
1359
|
__self: never;
|
|
1847
1360
|
kind: 'action';
|
|
1848
1361
|
};
|
|
1849
|
-
export declare const
|
|
1850
|
-
(
|
|
1851
|
-
({
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
signingRequestId?: string | null;
|
|
1867
|
-
}): globalThis.Promise<SigningRequest | null> | SigningRequest | null;
|
|
1362
|
+
export declare const BuildPlutusSpendTransaction: {
|
|
1363
|
+
(senderAddress: _.Bech32 | null, recipientAddress: _.Bech32 | null, lovelaceAmount: _.Lovelace | null, validatorScript: string | null, scriptTxHash: string | null, scriptOutputIndex: number | null, redeemerJson: string | null, datumJson: string | null, changeAddress: _.Bech32 | null, requiredSignersJson: string | null, scriptParamsJson: string | null, inlineDatumJson: string | null, lockOnScript: boolean | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1364
|
+
({ senderAddress, recipientAddress, lovelaceAmount, validatorScript, scriptTxHash, scriptOutputIndex, redeemerJson, datumJson, changeAddress, requiredSignersJson, scriptParamsJson, inlineDatumJson, lockOnScript }: {
|
|
1365
|
+
senderAddress?: _.Bech32 | null;
|
|
1366
|
+
recipientAddress?: _.Bech32 | null;
|
|
1367
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1368
|
+
validatorScript?: string | null;
|
|
1369
|
+
scriptTxHash?: string | null;
|
|
1370
|
+
scriptOutputIndex?: number | null;
|
|
1371
|
+
redeemerJson?: string | null;
|
|
1372
|
+
datumJson?: string | null;
|
|
1373
|
+
changeAddress?: _.Bech32 | null;
|
|
1374
|
+
requiredSignersJson?: string | null;
|
|
1375
|
+
scriptParamsJson?: string | null;
|
|
1376
|
+
inlineDatumJson?: string | null;
|
|
1377
|
+
lockOnScript?: boolean | null;
|
|
1378
|
+
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1868
1379
|
__parameters: {
|
|
1869
|
-
|
|
1380
|
+
senderAddress?: _.Bech32 | null;
|
|
1381
|
+
recipientAddress?: _.Bech32 | null;
|
|
1382
|
+
lovelaceAmount?: _.Lovelace | null;
|
|
1383
|
+
validatorScript?: string | null;
|
|
1384
|
+
scriptTxHash?: string | null;
|
|
1385
|
+
scriptOutputIndex?: number | null;
|
|
1386
|
+
redeemerJson?: string | null;
|
|
1387
|
+
datumJson?: string | null;
|
|
1388
|
+
changeAddress?: _.Bech32 | null;
|
|
1389
|
+
requiredSignersJson?: string | null;
|
|
1390
|
+
scriptParamsJson?: string | null;
|
|
1391
|
+
inlineDatumJson?: string | null;
|
|
1392
|
+
lockOnScript?: boolean | null;
|
|
1870
1393
|
};
|
|
1871
|
-
__returns: globalThis.Promise<
|
|
1394
|
+
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1872
1395
|
__self: never;
|
|
1873
1396
|
kind: 'action';
|
|
1874
1397
|
};
|
|
1875
|
-
export declare const
|
|
1876
|
-
(address:
|
|
1398
|
+
export declare const SetCollateral: {
|
|
1399
|
+
(address: _.Bech32 | null): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1877
1400
|
({ address }: {
|
|
1878
|
-
address?:
|
|
1879
|
-
}): globalThis.Promise<
|
|
1401
|
+
address?: _.Bech32 | null;
|
|
1402
|
+
}): globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1880
1403
|
__parameters: {
|
|
1881
|
-
address?:
|
|
1404
|
+
address?: _.Bech32 | null;
|
|
1882
1405
|
};
|
|
1883
|
-
__returns: globalThis.Promise<
|
|
1406
|
+
__returns: globalThis.Promise<TransactionBuild | null> | TransactionBuild | null;
|
|
1884
1407
|
__self: never;
|
|
1885
1408
|
kind: 'action';
|
|
1886
1409
|
};
|
|
1887
1410
|
export declare const GetTransactionBuildsByAddress: {
|
|
1888
|
-
(address:
|
|
1411
|
+
(address: _.Bech32 | null): globalThis.Promise<Array<AddressTransactionBuild>> | Array<AddressTransactionBuild>;
|
|
1889
1412
|
({ address }: {
|
|
1890
|
-
address?:
|
|
1413
|
+
address?: _.Bech32 | null;
|
|
1891
1414
|
}): globalThis.Promise<Array<AddressTransactionBuild>> | Array<AddressTransactionBuild>;
|
|
1892
1415
|
__parameters: {
|
|
1893
|
-
address?:
|
|
1416
|
+
address?: _.Bech32 | null;
|
|
1894
1417
|
};
|
|
1895
1418
|
__returns: globalThis.Promise<Array<AddressTransactionBuild>> | Array<AddressTransactionBuild>;
|
|
1896
1419
|
__self: never;
|