@odatano/core 0.3.16 → 0.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +22 -6
- 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 +290 -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 +43 -25
- 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,12 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _ from './..';
|
|
2
2
|
import * as __ from './../_';
|
|
3
|
+
/**
|
|
4
|
+
* Cardano OData Service
|
|
5
|
+
*
|
|
6
|
+
* Handles external read-only queries for Cardano blockchain data, including:
|
|
7
|
+
* - Retrieving network information, blocks, epochs, pools, dreps, transactions, accounts, addresses, UTxOs, assets, and metadata
|
|
8
|
+
* - Providing actions for fetching specific data by identifiers (hashes, addresses, etc.) and for retrieving the latest blockchain state (latest block, epoch, protocol parameters)
|
|
9
|
+
*/
|
|
3
10
|
export default class {
|
|
4
11
|
static readonly GetNetworkInformation: typeof GetNetworkInformation;
|
|
5
12
|
static readonly GetBlockByHash: typeof GetBlockByHash;
|
|
@@ -22,41 +29,41 @@ export declare function _NetworkInformationAspect<TBase extends new (...args: an
|
|
|
22
29
|
validFrom?: __.CdsTimestamp | null;
|
|
23
30
|
validTo?: __.CdsTimestamp | null;
|
|
24
31
|
network?: __.Key<string>;
|
|
25
|
-
maxSupply?:
|
|
26
|
-
totalSupply?:
|
|
27
|
-
circulatingSupply?:
|
|
28
|
-
lockedSupply?:
|
|
29
|
-
treasurySupply?:
|
|
30
|
-
reservesSupply?:
|
|
31
|
-
liveStake?:
|
|
32
|
-
activeStake?:
|
|
32
|
+
maxSupply?: _.Lovelace | null;
|
|
33
|
+
totalSupply?: _.Lovelace | null;
|
|
34
|
+
circulatingSupply?: _.Lovelace | null;
|
|
35
|
+
lockedSupply?: _.Lovelace | null;
|
|
36
|
+
treasurySupply?: _.Lovelace | null;
|
|
37
|
+
reservesSupply?: _.Lovelace | null;
|
|
38
|
+
liveStake?: _.Lovelace | null;
|
|
39
|
+
activeStake?: _.Lovelace | null;
|
|
33
40
|
};
|
|
34
41
|
readonly kind: "entity" | "type" | "aspect";
|
|
35
42
|
readonly keys: __.KeysOf<{
|
|
36
43
|
validFrom?: __.CdsTimestamp | null;
|
|
37
44
|
validTo?: __.CdsTimestamp | null;
|
|
38
45
|
network?: __.Key<string>;
|
|
39
|
-
maxSupply?:
|
|
40
|
-
totalSupply?:
|
|
41
|
-
circulatingSupply?:
|
|
42
|
-
lockedSupply?:
|
|
43
|
-
treasurySupply?:
|
|
44
|
-
reservesSupply?:
|
|
45
|
-
liveStake?:
|
|
46
|
-
activeStake?:
|
|
46
|
+
maxSupply?: _.Lovelace | null;
|
|
47
|
+
totalSupply?: _.Lovelace | null;
|
|
48
|
+
circulatingSupply?: _.Lovelace | null;
|
|
49
|
+
lockedSupply?: _.Lovelace | null;
|
|
50
|
+
treasurySupply?: _.Lovelace | null;
|
|
51
|
+
reservesSupply?: _.Lovelace | null;
|
|
52
|
+
liveStake?: _.Lovelace | null;
|
|
53
|
+
activeStake?: _.Lovelace | null;
|
|
47
54
|
}>;
|
|
48
55
|
readonly elements: __.ElementsOf<{
|
|
49
56
|
validFrom?: __.CdsTimestamp | null;
|
|
50
57
|
validTo?: __.CdsTimestamp | null;
|
|
51
58
|
network?: __.Key<string>;
|
|
52
|
-
maxSupply?:
|
|
53
|
-
totalSupply?:
|
|
54
|
-
circulatingSupply?:
|
|
55
|
-
lockedSupply?:
|
|
56
|
-
treasurySupply?:
|
|
57
|
-
reservesSupply?:
|
|
58
|
-
liveStake?:
|
|
59
|
-
activeStake?:
|
|
59
|
+
maxSupply?: _.Lovelace | null;
|
|
60
|
+
totalSupply?: _.Lovelace | null;
|
|
61
|
+
circulatingSupply?: _.Lovelace | null;
|
|
62
|
+
lockedSupply?: _.Lovelace | null;
|
|
63
|
+
treasurySupply?: _.Lovelace | null;
|
|
64
|
+
reservesSupply?: _.Lovelace | null;
|
|
65
|
+
liveStake?: _.Lovelace | null;
|
|
66
|
+
activeStake?: _.Lovelace | null;
|
|
60
67
|
}>;
|
|
61
68
|
readonly actions: globalThis.Record<never, never>;
|
|
62
69
|
} & TBase;
|
|
@@ -65,41 +72,41 @@ declare const NetworkInformation_base: {
|
|
|
65
72
|
validFrom?: __.CdsTimestamp | null;
|
|
66
73
|
validTo?: __.CdsTimestamp | null;
|
|
67
74
|
network?: __.Key<string>;
|
|
68
|
-
maxSupply?:
|
|
69
|
-
totalSupply?:
|
|
70
|
-
circulatingSupply?:
|
|
71
|
-
lockedSupply?:
|
|
72
|
-
treasurySupply?:
|
|
73
|
-
reservesSupply?:
|
|
74
|
-
liveStake?:
|
|
75
|
-
activeStake?:
|
|
75
|
+
maxSupply?: _.Lovelace | null;
|
|
76
|
+
totalSupply?: _.Lovelace | null;
|
|
77
|
+
circulatingSupply?: _.Lovelace | null;
|
|
78
|
+
lockedSupply?: _.Lovelace | null;
|
|
79
|
+
treasurySupply?: _.Lovelace | null;
|
|
80
|
+
reservesSupply?: _.Lovelace | null;
|
|
81
|
+
liveStake?: _.Lovelace | null;
|
|
82
|
+
activeStake?: _.Lovelace | null;
|
|
76
83
|
};
|
|
77
84
|
readonly kind: "entity" | "type" | "aspect";
|
|
78
85
|
readonly keys: __.KeysOf<{
|
|
79
86
|
validFrom?: __.CdsTimestamp | null;
|
|
80
87
|
validTo?: __.CdsTimestamp | null;
|
|
81
88
|
network?: __.Key<string>;
|
|
82
|
-
maxSupply?:
|
|
83
|
-
totalSupply?:
|
|
84
|
-
circulatingSupply?:
|
|
85
|
-
lockedSupply?:
|
|
86
|
-
treasurySupply?:
|
|
87
|
-
reservesSupply?:
|
|
88
|
-
liveStake?:
|
|
89
|
-
activeStake?:
|
|
89
|
+
maxSupply?: _.Lovelace | null;
|
|
90
|
+
totalSupply?: _.Lovelace | null;
|
|
91
|
+
circulatingSupply?: _.Lovelace | null;
|
|
92
|
+
lockedSupply?: _.Lovelace | null;
|
|
93
|
+
treasurySupply?: _.Lovelace | null;
|
|
94
|
+
reservesSupply?: _.Lovelace | null;
|
|
95
|
+
liveStake?: _.Lovelace | null;
|
|
96
|
+
activeStake?: _.Lovelace | null;
|
|
90
97
|
}>;
|
|
91
98
|
readonly elements: __.ElementsOf<{
|
|
92
99
|
validFrom?: __.CdsTimestamp | null;
|
|
93
100
|
validTo?: __.CdsTimestamp | null;
|
|
94
101
|
network?: __.Key<string>;
|
|
95
|
-
maxSupply?:
|
|
96
|
-
totalSupply?:
|
|
97
|
-
circulatingSupply?:
|
|
98
|
-
lockedSupply?:
|
|
99
|
-
treasurySupply?:
|
|
100
|
-
reservesSupply?:
|
|
101
|
-
liveStake?:
|
|
102
|
-
activeStake?:
|
|
102
|
+
maxSupply?: _.Lovelace | null;
|
|
103
|
+
totalSupply?: _.Lovelace | null;
|
|
104
|
+
circulatingSupply?: _.Lovelace | null;
|
|
105
|
+
lockedSupply?: _.Lovelace | null;
|
|
106
|
+
treasurySupply?: _.Lovelace | null;
|
|
107
|
+
reservesSupply?: _.Lovelace | null;
|
|
108
|
+
liveStake?: _.Lovelace | null;
|
|
109
|
+
activeStake?: _.Lovelace | null;
|
|
103
110
|
}>;
|
|
104
111
|
readonly actions: globalThis.Record<never, never>;
|
|
105
112
|
} & typeof __.Entity;
|
|
@@ -119,7 +126,7 @@ export declare function _BlockAspect<TBase extends new (...args: any[]) => objec
|
|
|
119
126
|
epochSlot?: number | null;
|
|
120
127
|
size?: number | null;
|
|
121
128
|
txCount?: number | null;
|
|
122
|
-
fees?:
|
|
129
|
+
fees?: _.Lovelace | null;
|
|
123
130
|
};
|
|
124
131
|
readonly kind: "entity" | "type" | "aspect";
|
|
125
132
|
readonly keys: __.KeysOf<{
|
|
@@ -132,7 +139,7 @@ export declare function _BlockAspect<TBase extends new (...args: any[]) => objec
|
|
|
132
139
|
epochSlot?: number | null;
|
|
133
140
|
size?: number | null;
|
|
134
141
|
txCount?: number | null;
|
|
135
|
-
fees?:
|
|
142
|
+
fees?: _.Lovelace | null;
|
|
136
143
|
}>;
|
|
137
144
|
readonly elements: __.ElementsOf<{
|
|
138
145
|
hash?: __.Key<string>;
|
|
@@ -144,7 +151,7 @@ export declare function _BlockAspect<TBase extends new (...args: any[]) => objec
|
|
|
144
151
|
epochSlot?: number | null;
|
|
145
152
|
size?: number | null;
|
|
146
153
|
txCount?: number | null;
|
|
147
|
-
fees?:
|
|
154
|
+
fees?: _.Lovelace | null;
|
|
148
155
|
}>;
|
|
149
156
|
readonly actions: globalThis.Record<never, never>;
|
|
150
157
|
} & TBase;
|
|
@@ -159,7 +166,7 @@ declare const Block_base: {
|
|
|
159
166
|
epochSlot?: number | null;
|
|
160
167
|
size?: number | null;
|
|
161
168
|
txCount?: number | null;
|
|
162
|
-
fees?:
|
|
169
|
+
fees?: _.Lovelace | null;
|
|
163
170
|
};
|
|
164
171
|
readonly kind: "entity" | "type" | "aspect";
|
|
165
172
|
readonly keys: __.KeysOf<{
|
|
@@ -172,7 +179,7 @@ declare const Block_base: {
|
|
|
172
179
|
epochSlot?: number | null;
|
|
173
180
|
size?: number | null;
|
|
174
181
|
txCount?: number | null;
|
|
175
|
-
fees?:
|
|
182
|
+
fees?: _.Lovelace | null;
|
|
176
183
|
}>;
|
|
177
184
|
readonly elements: __.ElementsOf<{
|
|
178
185
|
hash?: __.Key<string>;
|
|
@@ -184,7 +191,7 @@ declare const Block_base: {
|
|
|
184
191
|
epochSlot?: number | null;
|
|
185
192
|
size?: number | null;
|
|
186
193
|
txCount?: number | null;
|
|
187
|
-
fees?:
|
|
194
|
+
fees?: _.Lovelace | null;
|
|
188
195
|
}>;
|
|
189
196
|
readonly actions: globalThis.Record<never, never>;
|
|
190
197
|
} & typeof __.Entity;
|
|
@@ -203,8 +210,8 @@ export declare function _EpochAspect<TBase extends new (...args: any[]) => objec
|
|
|
203
210
|
blockCount?: number | null;
|
|
204
211
|
txCount?: number | null;
|
|
205
212
|
output?: string | null;
|
|
206
|
-
fees?:
|
|
207
|
-
activeStake?:
|
|
213
|
+
fees?: _.Lovelace | null;
|
|
214
|
+
activeStake?: _.Lovelace | null;
|
|
208
215
|
};
|
|
209
216
|
readonly kind: "entity" | "type" | "aspect";
|
|
210
217
|
readonly keys: __.KeysOf<{
|
|
@@ -216,8 +223,8 @@ export declare function _EpochAspect<TBase extends new (...args: any[]) => objec
|
|
|
216
223
|
blockCount?: number | null;
|
|
217
224
|
txCount?: number | null;
|
|
218
225
|
output?: string | null;
|
|
219
|
-
fees?:
|
|
220
|
-
activeStake?:
|
|
226
|
+
fees?: _.Lovelace | null;
|
|
227
|
+
activeStake?: _.Lovelace | null;
|
|
221
228
|
}>;
|
|
222
229
|
readonly elements: __.ElementsOf<{
|
|
223
230
|
epoch?: __.Key<number>;
|
|
@@ -228,8 +235,8 @@ export declare function _EpochAspect<TBase extends new (...args: any[]) => objec
|
|
|
228
235
|
blockCount?: number | null;
|
|
229
236
|
txCount?: number | null;
|
|
230
237
|
output?: string | null;
|
|
231
|
-
fees?:
|
|
232
|
-
activeStake?:
|
|
238
|
+
fees?: _.Lovelace | null;
|
|
239
|
+
activeStake?: _.Lovelace | null;
|
|
233
240
|
}>;
|
|
234
241
|
readonly actions: globalThis.Record<never, never>;
|
|
235
242
|
} & TBase;
|
|
@@ -243,8 +250,8 @@ declare const Epoch_base: {
|
|
|
243
250
|
blockCount?: number | null;
|
|
244
251
|
txCount?: number | null;
|
|
245
252
|
output?: string | null;
|
|
246
|
-
fees?:
|
|
247
|
-
activeStake?:
|
|
253
|
+
fees?: _.Lovelace | null;
|
|
254
|
+
activeStake?: _.Lovelace | null;
|
|
248
255
|
};
|
|
249
256
|
readonly kind: "entity" | "type" | "aspect";
|
|
250
257
|
readonly keys: __.KeysOf<{
|
|
@@ -256,8 +263,8 @@ declare const Epoch_base: {
|
|
|
256
263
|
blockCount?: number | null;
|
|
257
264
|
txCount?: number | null;
|
|
258
265
|
output?: string | null;
|
|
259
|
-
fees?:
|
|
260
|
-
activeStake?:
|
|
266
|
+
fees?: _.Lovelace | null;
|
|
267
|
+
activeStake?: _.Lovelace | null;
|
|
261
268
|
}>;
|
|
262
269
|
readonly elements: __.ElementsOf<{
|
|
263
270
|
epoch?: __.Key<number>;
|
|
@@ -268,8 +275,8 @@ declare const Epoch_base: {
|
|
|
268
275
|
blockCount?: number | null;
|
|
269
276
|
txCount?: number | null;
|
|
270
277
|
output?: string | null;
|
|
271
|
-
fees?:
|
|
272
|
-
activeStake?:
|
|
278
|
+
fees?: _.Lovelace | null;
|
|
279
|
+
activeStake?: _.Lovelace | null;
|
|
273
280
|
}>;
|
|
274
281
|
readonly actions: globalThis.Record<never, never>;
|
|
275
282
|
} & typeof __.Entity;
|
|
@@ -284,15 +291,15 @@ export declare function _PoolAspect<TBase extends new (...args: any[]) => object
|
|
|
284
291
|
vrfKeyHash?: string | null;
|
|
285
292
|
blocksMinted?: number | null;
|
|
286
293
|
blocksEpoch?: number | null;
|
|
287
|
-
liveStake?:
|
|
294
|
+
liveStake?: _.Lovelace | null;
|
|
288
295
|
liveSize?: number | null;
|
|
289
296
|
liveSaturation?: number | null;
|
|
290
297
|
liveDelegators?: number | null;
|
|
291
|
-
activeStake?:
|
|
298
|
+
activeStake?: _.Lovelace | null;
|
|
292
299
|
activeSize?: number | null;
|
|
293
|
-
pledge?:
|
|
300
|
+
pledge?: _.Lovelace | null;
|
|
294
301
|
margin?: number | null;
|
|
295
|
-
fixedCost?:
|
|
302
|
+
fixedCost?: _.Lovelace | null;
|
|
296
303
|
rewardAccount?: string | null;
|
|
297
304
|
};
|
|
298
305
|
readonly kind: "entity" | "type" | "aspect";
|
|
@@ -301,15 +308,15 @@ export declare function _PoolAspect<TBase extends new (...args: any[]) => object
|
|
|
301
308
|
vrfKeyHash?: string | null;
|
|
302
309
|
blocksMinted?: number | null;
|
|
303
310
|
blocksEpoch?: number | null;
|
|
304
|
-
liveStake?:
|
|
311
|
+
liveStake?: _.Lovelace | null;
|
|
305
312
|
liveSize?: number | null;
|
|
306
313
|
liveSaturation?: number | null;
|
|
307
314
|
liveDelegators?: number | null;
|
|
308
|
-
activeStake?:
|
|
315
|
+
activeStake?: _.Lovelace | null;
|
|
309
316
|
activeSize?: number | null;
|
|
310
|
-
pledge?:
|
|
317
|
+
pledge?: _.Lovelace | null;
|
|
311
318
|
margin?: number | null;
|
|
312
|
-
fixedCost?:
|
|
319
|
+
fixedCost?: _.Lovelace | null;
|
|
313
320
|
rewardAccount?: string | null;
|
|
314
321
|
}>;
|
|
315
322
|
readonly elements: __.ElementsOf<{
|
|
@@ -317,15 +324,15 @@ export declare function _PoolAspect<TBase extends new (...args: any[]) => object
|
|
|
317
324
|
vrfKeyHash?: string | null;
|
|
318
325
|
blocksMinted?: number | null;
|
|
319
326
|
blocksEpoch?: number | null;
|
|
320
|
-
liveStake?:
|
|
327
|
+
liveStake?: _.Lovelace | null;
|
|
321
328
|
liveSize?: number | null;
|
|
322
329
|
liveSaturation?: number | null;
|
|
323
330
|
liveDelegators?: number | null;
|
|
324
|
-
activeStake?:
|
|
331
|
+
activeStake?: _.Lovelace | null;
|
|
325
332
|
activeSize?: number | null;
|
|
326
|
-
pledge?:
|
|
333
|
+
pledge?: _.Lovelace | null;
|
|
327
334
|
margin?: number | null;
|
|
328
|
-
fixedCost?:
|
|
335
|
+
fixedCost?: _.Lovelace | null;
|
|
329
336
|
rewardAccount?: string | null;
|
|
330
337
|
}>;
|
|
331
338
|
readonly actions: globalThis.Record<never, never>;
|
|
@@ -336,15 +343,15 @@ declare const Pool_base: {
|
|
|
336
343
|
vrfKeyHash?: string | null;
|
|
337
344
|
blocksMinted?: number | null;
|
|
338
345
|
blocksEpoch?: number | null;
|
|
339
|
-
liveStake?:
|
|
346
|
+
liveStake?: _.Lovelace | null;
|
|
340
347
|
liveSize?: number | null;
|
|
341
348
|
liveSaturation?: number | null;
|
|
342
349
|
liveDelegators?: number | null;
|
|
343
|
-
activeStake?:
|
|
350
|
+
activeStake?: _.Lovelace | null;
|
|
344
351
|
activeSize?: number | null;
|
|
345
|
-
pledge?:
|
|
352
|
+
pledge?: _.Lovelace | null;
|
|
346
353
|
margin?: number | null;
|
|
347
|
-
fixedCost?:
|
|
354
|
+
fixedCost?: _.Lovelace | null;
|
|
348
355
|
rewardAccount?: string | null;
|
|
349
356
|
};
|
|
350
357
|
readonly kind: "entity" | "type" | "aspect";
|
|
@@ -353,15 +360,15 @@ declare const Pool_base: {
|
|
|
353
360
|
vrfKeyHash?: string | null;
|
|
354
361
|
blocksMinted?: number | null;
|
|
355
362
|
blocksEpoch?: number | null;
|
|
356
|
-
liveStake?:
|
|
363
|
+
liveStake?: _.Lovelace | null;
|
|
357
364
|
liveSize?: number | null;
|
|
358
365
|
liveSaturation?: number | null;
|
|
359
366
|
liveDelegators?: number | null;
|
|
360
|
-
activeStake?:
|
|
367
|
+
activeStake?: _.Lovelace | null;
|
|
361
368
|
activeSize?: number | null;
|
|
362
|
-
pledge?:
|
|
369
|
+
pledge?: _.Lovelace | null;
|
|
363
370
|
margin?: number | null;
|
|
364
|
-
fixedCost?:
|
|
371
|
+
fixedCost?: _.Lovelace | null;
|
|
365
372
|
rewardAccount?: string | null;
|
|
366
373
|
}>;
|
|
367
374
|
readonly elements: __.ElementsOf<{
|
|
@@ -369,15 +376,15 @@ declare const Pool_base: {
|
|
|
369
376
|
vrfKeyHash?: string | null;
|
|
370
377
|
blocksMinted?: number | null;
|
|
371
378
|
blocksEpoch?: number | null;
|
|
372
|
-
liveStake?:
|
|
379
|
+
liveStake?: _.Lovelace | null;
|
|
373
380
|
liveSize?: number | null;
|
|
374
381
|
liveSaturation?: number | null;
|
|
375
382
|
liveDelegators?: number | null;
|
|
376
|
-
activeStake?:
|
|
383
|
+
activeStake?: _.Lovelace | null;
|
|
377
384
|
activeSize?: number | null;
|
|
378
|
-
pledge?:
|
|
385
|
+
pledge?: _.Lovelace | null;
|
|
379
386
|
margin?: number | null;
|
|
380
|
-
fixedCost?:
|
|
387
|
+
fixedCost?: _.Lovelace | null;
|
|
381
388
|
rewardAccount?: string | null;
|
|
382
389
|
}>;
|
|
383
390
|
readonly actions: globalThis.Record<never, never>;
|
|
@@ -391,7 +398,7 @@ export declare function _DrepAspect<TBase extends new (...args: any[]) => object
|
|
|
391
398
|
new (...args: any[]): {
|
|
392
399
|
drepId?: __.Key<string>;
|
|
393
400
|
hex?: string | null;
|
|
394
|
-
amount?:
|
|
401
|
+
amount?: _.Lovelace | null;
|
|
395
402
|
hasScript?: boolean | null;
|
|
396
403
|
lastActiveEpoch?: number | null;
|
|
397
404
|
retired?: boolean | null;
|
|
@@ -401,7 +408,7 @@ export declare function _DrepAspect<TBase extends new (...args: any[]) => object
|
|
|
401
408
|
readonly keys: __.KeysOf<{
|
|
402
409
|
drepId?: __.Key<string>;
|
|
403
410
|
hex?: string | null;
|
|
404
|
-
amount?:
|
|
411
|
+
amount?: _.Lovelace | null;
|
|
405
412
|
hasScript?: boolean | null;
|
|
406
413
|
lastActiveEpoch?: number | null;
|
|
407
414
|
retired?: boolean | null;
|
|
@@ -410,7 +417,7 @@ export declare function _DrepAspect<TBase extends new (...args: any[]) => object
|
|
|
410
417
|
readonly elements: __.ElementsOf<{
|
|
411
418
|
drepId?: __.Key<string>;
|
|
412
419
|
hex?: string | null;
|
|
413
|
-
amount?:
|
|
420
|
+
amount?: _.Lovelace | null;
|
|
414
421
|
hasScript?: boolean | null;
|
|
415
422
|
lastActiveEpoch?: number | null;
|
|
416
423
|
retired?: boolean | null;
|
|
@@ -422,7 +429,7 @@ declare const Drep_base: {
|
|
|
422
429
|
new (...args: any[]): {
|
|
423
430
|
drepId?: __.Key<string>;
|
|
424
431
|
hex?: string | null;
|
|
425
|
-
amount?:
|
|
432
|
+
amount?: _.Lovelace | null;
|
|
426
433
|
hasScript?: boolean | null;
|
|
427
434
|
lastActiveEpoch?: number | null;
|
|
428
435
|
retired?: boolean | null;
|
|
@@ -432,7 +439,7 @@ declare const Drep_base: {
|
|
|
432
439
|
readonly keys: __.KeysOf<{
|
|
433
440
|
drepId?: __.Key<string>;
|
|
434
441
|
hex?: string | null;
|
|
435
|
-
amount?:
|
|
442
|
+
amount?: _.Lovelace | null;
|
|
436
443
|
hasScript?: boolean | null;
|
|
437
444
|
lastActiveEpoch?: number | null;
|
|
438
445
|
retired?: boolean | null;
|
|
@@ -441,7 +448,7 @@ declare const Drep_base: {
|
|
|
441
448
|
readonly elements: __.ElementsOf<{
|
|
442
449
|
drepId?: __.Key<string>;
|
|
443
450
|
hex?: string | null;
|
|
444
|
-
amount?:
|
|
451
|
+
amount?: _.Lovelace | null;
|
|
445
452
|
hasScript?: boolean | null;
|
|
446
453
|
lastActiveEpoch?: number | null;
|
|
447
454
|
retired?: boolean | null;
|
|
@@ -456,14 +463,14 @@ export declare class Dreps extends Array<Drep> {
|
|
|
456
463
|
}
|
|
457
464
|
export declare function _TransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
458
465
|
new (...args: any[]): {
|
|
459
|
-
hash?: __.Key<
|
|
460
|
-
blockHash?:
|
|
466
|
+
hash?: __.Key<_.Blake2b256>;
|
|
467
|
+
blockHash?: _.Blake2b256 | null;
|
|
461
468
|
blockHeight?: number | null;
|
|
462
469
|
blockTime?: number | null;
|
|
463
470
|
slot?: number | null;
|
|
464
471
|
txIndex?: number | null;
|
|
465
|
-
fee?:
|
|
466
|
-
deposit?:
|
|
472
|
+
fee?: _.Lovelace | null;
|
|
473
|
+
deposit?: _.Lovelace | null;
|
|
467
474
|
size?: number | null;
|
|
468
475
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
469
476
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -474,14 +481,14 @@ export declare function _TransactionAspect<TBase extends new (...args: any[]) =>
|
|
|
474
481
|
};
|
|
475
482
|
readonly kind: "entity" | "type" | "aspect";
|
|
476
483
|
readonly keys: __.KeysOf<{
|
|
477
|
-
hash?: __.Key<
|
|
478
|
-
blockHash?:
|
|
484
|
+
hash?: __.Key<_.Blake2b256>;
|
|
485
|
+
blockHash?: _.Blake2b256 | null;
|
|
479
486
|
blockHeight?: number | null;
|
|
480
487
|
blockTime?: number | null;
|
|
481
488
|
slot?: number | null;
|
|
482
489
|
txIndex?: number | null;
|
|
483
|
-
fee?:
|
|
484
|
-
deposit?:
|
|
490
|
+
fee?: _.Lovelace | null;
|
|
491
|
+
deposit?: _.Lovelace | null;
|
|
485
492
|
size?: number | null;
|
|
486
493
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
487
494
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -491,14 +498,14 @@ export declare function _TransactionAspect<TBase extends new (...args: any[]) =>
|
|
|
491
498
|
hasOutputs?: boolean | null;
|
|
492
499
|
}>;
|
|
493
500
|
readonly elements: __.ElementsOf<{
|
|
494
|
-
hash?: __.Key<
|
|
495
|
-
blockHash?:
|
|
501
|
+
hash?: __.Key<_.Blake2b256>;
|
|
502
|
+
blockHash?: _.Blake2b256 | null;
|
|
496
503
|
blockHeight?: number | null;
|
|
497
504
|
blockTime?: number | null;
|
|
498
505
|
slot?: number | null;
|
|
499
506
|
txIndex?: number | null;
|
|
500
|
-
fee?:
|
|
501
|
-
deposit?:
|
|
507
|
+
fee?: _.Lovelace | null;
|
|
508
|
+
deposit?: _.Lovelace | null;
|
|
502
509
|
size?: number | null;
|
|
503
510
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
504
511
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -511,14 +518,14 @@ export declare function _TransactionAspect<TBase extends new (...args: any[]) =>
|
|
|
511
518
|
} & TBase;
|
|
512
519
|
declare const Transaction_base: {
|
|
513
520
|
new (...args: any[]): {
|
|
514
|
-
hash?: __.Key<
|
|
515
|
-
blockHash?:
|
|
521
|
+
hash?: __.Key<_.Blake2b256>;
|
|
522
|
+
blockHash?: _.Blake2b256 | null;
|
|
516
523
|
blockHeight?: number | null;
|
|
517
524
|
blockTime?: number | null;
|
|
518
525
|
slot?: number | null;
|
|
519
526
|
txIndex?: number | null;
|
|
520
|
-
fee?:
|
|
521
|
-
deposit?:
|
|
527
|
+
fee?: _.Lovelace | null;
|
|
528
|
+
deposit?: _.Lovelace | null;
|
|
522
529
|
size?: number | null;
|
|
523
530
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
524
531
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -529,14 +536,14 @@ declare const Transaction_base: {
|
|
|
529
536
|
};
|
|
530
537
|
readonly kind: "entity" | "type" | "aspect";
|
|
531
538
|
readonly keys: __.KeysOf<{
|
|
532
|
-
hash?: __.Key<
|
|
533
|
-
blockHash?:
|
|
539
|
+
hash?: __.Key<_.Blake2b256>;
|
|
540
|
+
blockHash?: _.Blake2b256 | null;
|
|
534
541
|
blockHeight?: number | null;
|
|
535
542
|
blockTime?: number | null;
|
|
536
543
|
slot?: number | null;
|
|
537
544
|
txIndex?: number | null;
|
|
538
|
-
fee?:
|
|
539
|
-
deposit?:
|
|
545
|
+
fee?: _.Lovelace | null;
|
|
546
|
+
deposit?: _.Lovelace | null;
|
|
540
547
|
size?: number | null;
|
|
541
548
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
542
549
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -546,14 +553,14 @@ declare const Transaction_base: {
|
|
|
546
553
|
hasOutputs?: boolean | null;
|
|
547
554
|
}>;
|
|
548
555
|
readonly elements: __.ElementsOf<{
|
|
549
|
-
hash?: __.Key<
|
|
550
|
-
blockHash?:
|
|
556
|
+
hash?: __.Key<_.Blake2b256>;
|
|
557
|
+
blockHash?: _.Blake2b256 | null;
|
|
551
558
|
blockHeight?: number | null;
|
|
552
559
|
blockTime?: number | null;
|
|
553
560
|
slot?: number | null;
|
|
554
561
|
txIndex?: number | null;
|
|
555
|
-
fee?:
|
|
556
|
-
deposit?:
|
|
562
|
+
fee?: _.Lovelace | null;
|
|
563
|
+
deposit?: _.Lovelace | null;
|
|
557
564
|
size?: number | null;
|
|
558
565
|
metadata?: __.Composition.of.many<TransactionMetadata_>;
|
|
559
566
|
inputs?: __.Composition.of.many<TransactionInputs>;
|
|
@@ -572,13 +579,13 @@ export declare class Transactions extends Array<Transaction> {
|
|
|
572
579
|
export declare function _TransactionInputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
573
580
|
new (...args: any[]): {
|
|
574
581
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
575
|
-
tx_hash?: __.Key<
|
|
582
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
576
583
|
inputIndex?: __.Key<number>;
|
|
577
584
|
address?: __.Association.to<Address> | null;
|
|
578
|
-
address_address?:
|
|
579
|
-
utxoData_dataHash?:
|
|
585
|
+
address_address?: _.Bech32 | null;
|
|
586
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
580
587
|
utxoData_inlineDatum?: string | null;
|
|
581
|
-
utxoData_referenceScriptHash?:
|
|
588
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
582
589
|
isCollateral?: boolean | null;
|
|
583
590
|
isReference?: boolean | null;
|
|
584
591
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -588,13 +595,13 @@ export declare function _TransactionInputAspect<TBase extends new (...args: any[
|
|
|
588
595
|
readonly kind: "entity" | "type" | "aspect";
|
|
589
596
|
readonly keys: __.KeysOf<{
|
|
590
597
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
591
|
-
tx_hash?: __.Key<
|
|
598
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
592
599
|
inputIndex?: __.Key<number>;
|
|
593
600
|
address?: __.Association.to<Address> | null;
|
|
594
|
-
address_address?:
|
|
595
|
-
utxoData_dataHash?:
|
|
601
|
+
address_address?: _.Bech32 | null;
|
|
602
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
596
603
|
utxoData_inlineDatum?: string | null;
|
|
597
|
-
utxoData_referenceScriptHash?:
|
|
604
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
598
605
|
isCollateral?: boolean | null;
|
|
599
606
|
isReference?: boolean | null;
|
|
600
607
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -603,13 +610,13 @@ export declare function _TransactionInputAspect<TBase extends new (...args: any[
|
|
|
603
610
|
}>;
|
|
604
611
|
readonly elements: __.ElementsOf<{
|
|
605
612
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
606
|
-
tx_hash?: __.Key<
|
|
613
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
607
614
|
inputIndex?: __.Key<number>;
|
|
608
615
|
address?: __.Association.to<Address> | null;
|
|
609
|
-
address_address?:
|
|
610
|
-
utxoData_dataHash?:
|
|
616
|
+
address_address?: _.Bech32 | null;
|
|
617
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
611
618
|
utxoData_inlineDatum?: string | null;
|
|
612
|
-
utxoData_referenceScriptHash?:
|
|
619
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
613
620
|
isCollateral?: boolean | null;
|
|
614
621
|
isReference?: boolean | null;
|
|
615
622
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -621,13 +628,13 @@ export declare function _TransactionInputAspect<TBase extends new (...args: any[
|
|
|
621
628
|
declare const TransactionInput_base: {
|
|
622
629
|
new (...args: any[]): {
|
|
623
630
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
624
|
-
tx_hash?: __.Key<
|
|
631
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
625
632
|
inputIndex?: __.Key<number>;
|
|
626
633
|
address?: __.Association.to<Address> | null;
|
|
627
|
-
address_address?:
|
|
628
|
-
utxoData_dataHash?:
|
|
634
|
+
address_address?: _.Bech32 | null;
|
|
635
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
629
636
|
utxoData_inlineDatum?: string | null;
|
|
630
|
-
utxoData_referenceScriptHash?:
|
|
637
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
631
638
|
isCollateral?: boolean | null;
|
|
632
639
|
isReference?: boolean | null;
|
|
633
640
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -637,13 +644,13 @@ declare const TransactionInput_base: {
|
|
|
637
644
|
readonly kind: "entity" | "type" | "aspect";
|
|
638
645
|
readonly keys: __.KeysOf<{
|
|
639
646
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
640
|
-
tx_hash?: __.Key<
|
|
647
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
641
648
|
inputIndex?: __.Key<number>;
|
|
642
649
|
address?: __.Association.to<Address> | null;
|
|
643
|
-
address_address?:
|
|
644
|
-
utxoData_dataHash?:
|
|
650
|
+
address_address?: _.Bech32 | null;
|
|
651
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
645
652
|
utxoData_inlineDatum?: string | null;
|
|
646
|
-
utxoData_referenceScriptHash?:
|
|
653
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
647
654
|
isCollateral?: boolean | null;
|
|
648
655
|
isReference?: boolean | null;
|
|
649
656
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -652,13 +659,13 @@ declare const TransactionInput_base: {
|
|
|
652
659
|
}>;
|
|
653
660
|
readonly elements: __.ElementsOf<{
|
|
654
661
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
655
|
-
tx_hash?: __.Key<
|
|
662
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
656
663
|
inputIndex?: __.Key<number>;
|
|
657
664
|
address?: __.Association.to<Address> | null;
|
|
658
|
-
address_address?:
|
|
659
|
-
utxoData_dataHash?:
|
|
665
|
+
address_address?: _.Bech32 | null;
|
|
666
|
+
utxoData_dataHash?: _.Blake2b256 | null;
|
|
660
667
|
utxoData_inlineDatum?: string | null;
|
|
661
|
-
utxoData_referenceScriptHash?:
|
|
668
|
+
utxoData_referenceScriptHash?: _.Blake2b256 | null;
|
|
662
669
|
isCollateral?: boolean | null;
|
|
663
670
|
isReference?: boolean | null;
|
|
664
671
|
assets?: __.Composition.of.many<TransactionInputAssets>;
|
|
@@ -675,13 +682,13 @@ export declare class TransactionInputs extends Array<TransactionInput> {
|
|
|
675
682
|
export declare function _TransactionOutputAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
676
683
|
new (...args: any[]): {
|
|
677
684
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
678
|
-
tx_hash?: __.Key<
|
|
685
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
679
686
|
outputIndex?: __.Key<number>;
|
|
680
687
|
address?: __.Association.to<Address> | null;
|
|
681
|
-
address_address?:
|
|
682
|
-
utxo_dataHash?:
|
|
688
|
+
address_address?: _.Bech32 | null;
|
|
689
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
683
690
|
utxo_inlineDatum?: string | null;
|
|
684
|
-
utxo_referenceScriptHash?:
|
|
691
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
685
692
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
686
693
|
hasAddresses?: boolean | null;
|
|
687
694
|
hasAssets?: boolean | null;
|
|
@@ -689,26 +696,26 @@ export declare function _TransactionOutputAspect<TBase extends new (...args: any
|
|
|
689
696
|
readonly kind: "entity" | "type" | "aspect";
|
|
690
697
|
readonly keys: __.KeysOf<{
|
|
691
698
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
692
|
-
tx_hash?: __.Key<
|
|
699
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
693
700
|
outputIndex?: __.Key<number>;
|
|
694
701
|
address?: __.Association.to<Address> | null;
|
|
695
|
-
address_address?:
|
|
696
|
-
utxo_dataHash?:
|
|
702
|
+
address_address?: _.Bech32 | null;
|
|
703
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
697
704
|
utxo_inlineDatum?: string | null;
|
|
698
|
-
utxo_referenceScriptHash?:
|
|
705
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
699
706
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
700
707
|
hasAddresses?: boolean | null;
|
|
701
708
|
hasAssets?: boolean | null;
|
|
702
709
|
}>;
|
|
703
710
|
readonly elements: __.ElementsOf<{
|
|
704
711
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
705
|
-
tx_hash?: __.Key<
|
|
712
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
706
713
|
outputIndex?: __.Key<number>;
|
|
707
714
|
address?: __.Association.to<Address> | null;
|
|
708
|
-
address_address?:
|
|
709
|
-
utxo_dataHash?:
|
|
715
|
+
address_address?: _.Bech32 | null;
|
|
716
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
710
717
|
utxo_inlineDatum?: string | null;
|
|
711
|
-
utxo_referenceScriptHash?:
|
|
718
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
712
719
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
713
720
|
hasAddresses?: boolean | null;
|
|
714
721
|
hasAssets?: boolean | null;
|
|
@@ -718,13 +725,13 @@ export declare function _TransactionOutputAspect<TBase extends new (...args: any
|
|
|
718
725
|
declare const TransactionOutput_base: {
|
|
719
726
|
new (...args: any[]): {
|
|
720
727
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
721
|
-
tx_hash?: __.Key<
|
|
728
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
722
729
|
outputIndex?: __.Key<number>;
|
|
723
730
|
address?: __.Association.to<Address> | null;
|
|
724
|
-
address_address?:
|
|
725
|
-
utxo_dataHash?:
|
|
731
|
+
address_address?: _.Bech32 | null;
|
|
732
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
726
733
|
utxo_inlineDatum?: string | null;
|
|
727
|
-
utxo_referenceScriptHash?:
|
|
734
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
728
735
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
729
736
|
hasAddresses?: boolean | null;
|
|
730
737
|
hasAssets?: boolean | null;
|
|
@@ -732,26 +739,26 @@ declare const TransactionOutput_base: {
|
|
|
732
739
|
readonly kind: "entity" | "type" | "aspect";
|
|
733
740
|
readonly keys: __.KeysOf<{
|
|
734
741
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
735
|
-
tx_hash?: __.Key<
|
|
742
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
736
743
|
outputIndex?: __.Key<number>;
|
|
737
744
|
address?: __.Association.to<Address> | null;
|
|
738
|
-
address_address?:
|
|
739
|
-
utxo_dataHash?:
|
|
745
|
+
address_address?: _.Bech32 | null;
|
|
746
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
740
747
|
utxo_inlineDatum?: string | null;
|
|
741
|
-
utxo_referenceScriptHash?:
|
|
748
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
742
749
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
743
750
|
hasAddresses?: boolean | null;
|
|
744
751
|
hasAssets?: boolean | null;
|
|
745
752
|
}>;
|
|
746
753
|
readonly elements: __.ElementsOf<{
|
|
747
754
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
748
|
-
tx_hash?: __.Key<
|
|
755
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
749
756
|
outputIndex?: __.Key<number>;
|
|
750
757
|
address?: __.Association.to<Address> | null;
|
|
751
|
-
address_address?:
|
|
752
|
-
utxo_dataHash?:
|
|
758
|
+
address_address?: _.Bech32 | null;
|
|
759
|
+
utxo_dataHash?: _.Blake2b256 | null;
|
|
753
760
|
utxo_inlineDatum?: string | null;
|
|
754
|
-
utxo_referenceScriptHash?:
|
|
761
|
+
utxo_referenceScriptHash?: _.Blake2b256 | null;
|
|
755
762
|
assets?: __.Composition.of.many<TransactionOutputAssets>;
|
|
756
763
|
hasAddresses?: boolean | null;
|
|
757
764
|
hasAssets?: boolean | null;
|
|
@@ -767,11 +774,11 @@ export declare function _TransactionInputAssetAspect<TBase extends new (...args:
|
|
|
767
774
|
new (...args: any[]): {
|
|
768
775
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
769
776
|
input_inputIndex?: __.Key<number>;
|
|
770
|
-
input_tx_hash?: __.Key<
|
|
771
|
-
unit?: __.Key<
|
|
772
|
-
asset_quantity?:
|
|
773
|
-
asset_policyId?:
|
|
774
|
-
asset_assetNameHex?:
|
|
777
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
778
|
+
unit?: __.Key<_.AssetUnit>;
|
|
779
|
+
asset_quantity?: _.Lovelace | null;
|
|
780
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
781
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
775
782
|
asset_assetName?: string | null;
|
|
776
783
|
asset_fingerprint?: string | null;
|
|
777
784
|
};
|
|
@@ -779,22 +786,22 @@ export declare function _TransactionInputAssetAspect<TBase extends new (...args:
|
|
|
779
786
|
readonly keys: __.KeysOf<{
|
|
780
787
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
781
788
|
input_inputIndex?: __.Key<number>;
|
|
782
|
-
input_tx_hash?: __.Key<
|
|
783
|
-
unit?: __.Key<
|
|
784
|
-
asset_quantity?:
|
|
785
|
-
asset_policyId?:
|
|
786
|
-
asset_assetNameHex?:
|
|
789
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
790
|
+
unit?: __.Key<_.AssetUnit>;
|
|
791
|
+
asset_quantity?: _.Lovelace | null;
|
|
792
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
793
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
787
794
|
asset_assetName?: string | null;
|
|
788
795
|
asset_fingerprint?: string | null;
|
|
789
796
|
}>;
|
|
790
797
|
readonly elements: __.ElementsOf<{
|
|
791
798
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
792
799
|
input_inputIndex?: __.Key<number>;
|
|
793
|
-
input_tx_hash?: __.Key<
|
|
794
|
-
unit?: __.Key<
|
|
795
|
-
asset_quantity?:
|
|
796
|
-
asset_policyId?:
|
|
797
|
-
asset_assetNameHex?:
|
|
800
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
801
|
+
unit?: __.Key<_.AssetUnit>;
|
|
802
|
+
asset_quantity?: _.Lovelace | null;
|
|
803
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
804
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
798
805
|
asset_assetName?: string | null;
|
|
799
806
|
asset_fingerprint?: string | null;
|
|
800
807
|
}>;
|
|
@@ -804,11 +811,11 @@ declare const TransactionInputAsset_base: {
|
|
|
804
811
|
new (...args: any[]): {
|
|
805
812
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
806
813
|
input_inputIndex?: __.Key<number>;
|
|
807
|
-
input_tx_hash?: __.Key<
|
|
808
|
-
unit?: __.Key<
|
|
809
|
-
asset_quantity?:
|
|
810
|
-
asset_policyId?:
|
|
811
|
-
asset_assetNameHex?:
|
|
814
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
815
|
+
unit?: __.Key<_.AssetUnit>;
|
|
816
|
+
asset_quantity?: _.Lovelace | null;
|
|
817
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
818
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
812
819
|
asset_assetName?: string | null;
|
|
813
820
|
asset_fingerprint?: string | null;
|
|
814
821
|
};
|
|
@@ -816,22 +823,22 @@ declare const TransactionInputAsset_base: {
|
|
|
816
823
|
readonly keys: __.KeysOf<{
|
|
817
824
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
818
825
|
input_inputIndex?: __.Key<number>;
|
|
819
|
-
input_tx_hash?: __.Key<
|
|
820
|
-
unit?: __.Key<
|
|
821
|
-
asset_quantity?:
|
|
822
|
-
asset_policyId?:
|
|
823
|
-
asset_assetNameHex?:
|
|
826
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
827
|
+
unit?: __.Key<_.AssetUnit>;
|
|
828
|
+
asset_quantity?: _.Lovelace | null;
|
|
829
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
830
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
824
831
|
asset_assetName?: string | null;
|
|
825
832
|
asset_fingerprint?: string | null;
|
|
826
833
|
}>;
|
|
827
834
|
readonly elements: __.ElementsOf<{
|
|
828
835
|
input?: __.Key<__.Association.to<TransactionInput>>;
|
|
829
836
|
input_inputIndex?: __.Key<number>;
|
|
830
|
-
input_tx_hash?: __.Key<
|
|
831
|
-
unit?: __.Key<
|
|
832
|
-
asset_quantity?:
|
|
833
|
-
asset_policyId?:
|
|
834
|
-
asset_assetNameHex?:
|
|
837
|
+
input_tx_hash?: __.Key<_.Blake2b256>;
|
|
838
|
+
unit?: __.Key<_.AssetUnit>;
|
|
839
|
+
asset_quantity?: _.Lovelace | null;
|
|
840
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
841
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
835
842
|
asset_assetName?: string | null;
|
|
836
843
|
asset_fingerprint?: string | null;
|
|
837
844
|
}>;
|
|
@@ -846,11 +853,11 @@ export declare function _TransactionOutputAssetAspect<TBase extends new (...args
|
|
|
846
853
|
new (...args: any[]): {
|
|
847
854
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
848
855
|
output_outputIndex?: __.Key<number>;
|
|
849
|
-
output_tx_hash?: __.Key<
|
|
850
|
-
unit?: __.Key<
|
|
851
|
-
asset_quantity?:
|
|
852
|
-
asset_policyId?:
|
|
853
|
-
asset_assetNameHex?:
|
|
856
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
857
|
+
unit?: __.Key<_.AssetUnit>;
|
|
858
|
+
asset_quantity?: _.Lovelace | null;
|
|
859
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
860
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
854
861
|
asset_assetName?: string | null;
|
|
855
862
|
asset_fingerprint?: string | null;
|
|
856
863
|
};
|
|
@@ -858,22 +865,22 @@ export declare function _TransactionOutputAssetAspect<TBase extends new (...args
|
|
|
858
865
|
readonly keys: __.KeysOf<{
|
|
859
866
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
860
867
|
output_outputIndex?: __.Key<number>;
|
|
861
|
-
output_tx_hash?: __.Key<
|
|
862
|
-
unit?: __.Key<
|
|
863
|
-
asset_quantity?:
|
|
864
|
-
asset_policyId?:
|
|
865
|
-
asset_assetNameHex?:
|
|
868
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
869
|
+
unit?: __.Key<_.AssetUnit>;
|
|
870
|
+
asset_quantity?: _.Lovelace | null;
|
|
871
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
872
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
866
873
|
asset_assetName?: string | null;
|
|
867
874
|
asset_fingerprint?: string | null;
|
|
868
875
|
}>;
|
|
869
876
|
readonly elements: __.ElementsOf<{
|
|
870
877
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
871
878
|
output_outputIndex?: __.Key<number>;
|
|
872
|
-
output_tx_hash?: __.Key<
|
|
873
|
-
unit?: __.Key<
|
|
874
|
-
asset_quantity?:
|
|
875
|
-
asset_policyId?:
|
|
876
|
-
asset_assetNameHex?:
|
|
879
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
880
|
+
unit?: __.Key<_.AssetUnit>;
|
|
881
|
+
asset_quantity?: _.Lovelace | null;
|
|
882
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
883
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
877
884
|
asset_assetName?: string | null;
|
|
878
885
|
asset_fingerprint?: string | null;
|
|
879
886
|
}>;
|
|
@@ -883,11 +890,11 @@ declare const TransactionOutputAsset_base: {
|
|
|
883
890
|
new (...args: any[]): {
|
|
884
891
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
885
892
|
output_outputIndex?: __.Key<number>;
|
|
886
|
-
output_tx_hash?: __.Key<
|
|
887
|
-
unit?: __.Key<
|
|
888
|
-
asset_quantity?:
|
|
889
|
-
asset_policyId?:
|
|
890
|
-
asset_assetNameHex?:
|
|
893
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
894
|
+
unit?: __.Key<_.AssetUnit>;
|
|
895
|
+
asset_quantity?: _.Lovelace | null;
|
|
896
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
897
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
891
898
|
asset_assetName?: string | null;
|
|
892
899
|
asset_fingerprint?: string | null;
|
|
893
900
|
};
|
|
@@ -895,22 +902,22 @@ declare const TransactionOutputAsset_base: {
|
|
|
895
902
|
readonly keys: __.KeysOf<{
|
|
896
903
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
897
904
|
output_outputIndex?: __.Key<number>;
|
|
898
|
-
output_tx_hash?: __.Key<
|
|
899
|
-
unit?: __.Key<
|
|
900
|
-
asset_quantity?:
|
|
901
|
-
asset_policyId?:
|
|
902
|
-
asset_assetNameHex?:
|
|
905
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
906
|
+
unit?: __.Key<_.AssetUnit>;
|
|
907
|
+
asset_quantity?: _.Lovelace | null;
|
|
908
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
909
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
903
910
|
asset_assetName?: string | null;
|
|
904
911
|
asset_fingerprint?: string | null;
|
|
905
912
|
}>;
|
|
906
913
|
readonly elements: __.ElementsOf<{
|
|
907
914
|
output?: __.Key<__.Association.to<TransactionOutput>>;
|
|
908
915
|
output_outputIndex?: __.Key<number>;
|
|
909
|
-
output_tx_hash?: __.Key<
|
|
910
|
-
unit?: __.Key<
|
|
911
|
-
asset_quantity?:
|
|
912
|
-
asset_policyId?:
|
|
913
|
-
asset_assetNameHex?:
|
|
916
|
+
output_tx_hash?: __.Key<_.Blake2b256>;
|
|
917
|
+
unit?: __.Key<_.AssetUnit>;
|
|
918
|
+
asset_quantity?: _.Lovelace | null;
|
|
919
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
920
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
914
921
|
asset_assetName?: string | null;
|
|
915
922
|
asset_fingerprint?: string | null;
|
|
916
923
|
}>;
|
|
@@ -928,12 +935,12 @@ export declare function _AccountAspect<TBase extends new (...args: any[]) => obj
|
|
|
928
935
|
stakeAddress?: __.Key<string>;
|
|
929
936
|
active?: boolean | null;
|
|
930
937
|
activeEpoch?: number | null;
|
|
931
|
-
controlledAmount?:
|
|
932
|
-
rewardsSum?:
|
|
933
|
-
withdrawalsSum?:
|
|
934
|
-
reservesSum?:
|
|
935
|
-
treasurySum?:
|
|
936
|
-
withdrawableAmount?:
|
|
938
|
+
controlledAmount?: _.Lovelace | null;
|
|
939
|
+
rewardsSum?: _.Lovelace | null;
|
|
940
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
941
|
+
reservesSum?: _.Lovelace | null;
|
|
942
|
+
treasurySum?: _.Lovelace | null;
|
|
943
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
937
944
|
poolId?: __.Association.to<Pool> | null;
|
|
938
945
|
poolId_poolId?: string | null;
|
|
939
946
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -948,12 +955,12 @@ export declare function _AccountAspect<TBase extends new (...args: any[]) => obj
|
|
|
948
955
|
stakeAddress?: __.Key<string>;
|
|
949
956
|
active?: boolean | null;
|
|
950
957
|
activeEpoch?: number | null;
|
|
951
|
-
controlledAmount?:
|
|
952
|
-
rewardsSum?:
|
|
953
|
-
withdrawalsSum?:
|
|
954
|
-
reservesSum?:
|
|
955
|
-
treasurySum?:
|
|
956
|
-
withdrawableAmount?:
|
|
958
|
+
controlledAmount?: _.Lovelace | null;
|
|
959
|
+
rewardsSum?: _.Lovelace | null;
|
|
960
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
961
|
+
reservesSum?: _.Lovelace | null;
|
|
962
|
+
treasurySum?: _.Lovelace | null;
|
|
963
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
957
964
|
poolId?: __.Association.to<Pool> | null;
|
|
958
965
|
poolId_poolId?: string | null;
|
|
959
966
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -967,12 +974,12 @@ export declare function _AccountAspect<TBase extends new (...args: any[]) => obj
|
|
|
967
974
|
stakeAddress?: __.Key<string>;
|
|
968
975
|
active?: boolean | null;
|
|
969
976
|
activeEpoch?: number | null;
|
|
970
|
-
controlledAmount?:
|
|
971
|
-
rewardsSum?:
|
|
972
|
-
withdrawalsSum?:
|
|
973
|
-
reservesSum?:
|
|
974
|
-
treasurySum?:
|
|
975
|
-
withdrawableAmount?:
|
|
977
|
+
controlledAmount?: _.Lovelace | null;
|
|
978
|
+
rewardsSum?: _.Lovelace | null;
|
|
979
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
980
|
+
reservesSum?: _.Lovelace | null;
|
|
981
|
+
treasurySum?: _.Lovelace | null;
|
|
982
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
976
983
|
poolId?: __.Association.to<Pool> | null;
|
|
977
984
|
poolId_poolId?: string | null;
|
|
978
985
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -989,12 +996,12 @@ declare const Account_base: {
|
|
|
989
996
|
stakeAddress?: __.Key<string>;
|
|
990
997
|
active?: boolean | null;
|
|
991
998
|
activeEpoch?: number | null;
|
|
992
|
-
controlledAmount?:
|
|
993
|
-
rewardsSum?:
|
|
994
|
-
withdrawalsSum?:
|
|
995
|
-
reservesSum?:
|
|
996
|
-
treasurySum?:
|
|
997
|
-
withdrawableAmount?:
|
|
999
|
+
controlledAmount?: _.Lovelace | null;
|
|
1000
|
+
rewardsSum?: _.Lovelace | null;
|
|
1001
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
1002
|
+
reservesSum?: _.Lovelace | null;
|
|
1003
|
+
treasurySum?: _.Lovelace | null;
|
|
1004
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
998
1005
|
poolId?: __.Association.to<Pool> | null;
|
|
999
1006
|
poolId_poolId?: string | null;
|
|
1000
1007
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -1009,12 +1016,12 @@ declare const Account_base: {
|
|
|
1009
1016
|
stakeAddress?: __.Key<string>;
|
|
1010
1017
|
active?: boolean | null;
|
|
1011
1018
|
activeEpoch?: number | null;
|
|
1012
|
-
controlledAmount?:
|
|
1013
|
-
rewardsSum?:
|
|
1014
|
-
withdrawalsSum?:
|
|
1015
|
-
reservesSum?:
|
|
1016
|
-
treasurySum?:
|
|
1017
|
-
withdrawableAmount?:
|
|
1019
|
+
controlledAmount?: _.Lovelace | null;
|
|
1020
|
+
rewardsSum?: _.Lovelace | null;
|
|
1021
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
1022
|
+
reservesSum?: _.Lovelace | null;
|
|
1023
|
+
treasurySum?: _.Lovelace | null;
|
|
1024
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
1018
1025
|
poolId?: __.Association.to<Pool> | null;
|
|
1019
1026
|
poolId_poolId?: string | null;
|
|
1020
1027
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -1028,12 +1035,12 @@ declare const Account_base: {
|
|
|
1028
1035
|
stakeAddress?: __.Key<string>;
|
|
1029
1036
|
active?: boolean | null;
|
|
1030
1037
|
activeEpoch?: number | null;
|
|
1031
|
-
controlledAmount?:
|
|
1032
|
-
rewardsSum?:
|
|
1033
|
-
withdrawalsSum?:
|
|
1034
|
-
reservesSum?:
|
|
1035
|
-
treasurySum?:
|
|
1036
|
-
withdrawableAmount?:
|
|
1038
|
+
controlledAmount?: _.Lovelace | null;
|
|
1039
|
+
rewardsSum?: _.Lovelace | null;
|
|
1040
|
+
withdrawalsSum?: _.Lovelace | null;
|
|
1041
|
+
reservesSum?: _.Lovelace | null;
|
|
1042
|
+
treasurySum?: _.Lovelace | null;
|
|
1043
|
+
withdrawableAmount?: _.Lovelace | null;
|
|
1037
1044
|
poolId?: __.Association.to<Pool> | null;
|
|
1038
1045
|
poolId_poolId?: string | null;
|
|
1039
1046
|
drepId?: __.Association.to<Drep> | null;
|
|
@@ -1052,11 +1059,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1052
1059
|
new (...args: any[]): {
|
|
1053
1060
|
validFrom?: __.CdsTimestamp | null;
|
|
1054
1061
|
validTo?: __.CdsTimestamp | null;
|
|
1055
|
-
address?: __.Key<
|
|
1056
|
-
stakeAddress?:
|
|
1062
|
+
address?: __.Key<_.Bech32>;
|
|
1063
|
+
stakeAddress?: _.Bech32 | null;
|
|
1057
1064
|
type?: string | null;
|
|
1058
1065
|
isScript?: boolean | null;
|
|
1059
|
-
totalLovelace?:
|
|
1066
|
+
totalLovelace?: _.Lovelace | null;
|
|
1060
1067
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1061
1068
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1062
1069
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1068,11 +1075,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1068
1075
|
readonly keys: __.KeysOf<{
|
|
1069
1076
|
validFrom?: __.CdsTimestamp | null;
|
|
1070
1077
|
validTo?: __.CdsTimestamp | null;
|
|
1071
|
-
address?: __.Key<
|
|
1072
|
-
stakeAddress?:
|
|
1078
|
+
address?: __.Key<_.Bech32>;
|
|
1079
|
+
stakeAddress?: _.Bech32 | null;
|
|
1073
1080
|
type?: string | null;
|
|
1074
1081
|
isScript?: boolean | null;
|
|
1075
|
-
totalLovelace?:
|
|
1082
|
+
totalLovelace?: _.Lovelace | null;
|
|
1076
1083
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1077
1084
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1078
1085
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1083,11 +1090,11 @@ export declare function _AddressAspect<TBase extends new (...args: any[]) => obj
|
|
|
1083
1090
|
readonly elements: __.ElementsOf<{
|
|
1084
1091
|
validFrom?: __.CdsTimestamp | null;
|
|
1085
1092
|
validTo?: __.CdsTimestamp | null;
|
|
1086
|
-
address?: __.Key<
|
|
1087
|
-
stakeAddress?:
|
|
1093
|
+
address?: __.Key<_.Bech32>;
|
|
1094
|
+
stakeAddress?: _.Bech32 | null;
|
|
1088
1095
|
type?: string | null;
|
|
1089
1096
|
isScript?: boolean | null;
|
|
1090
|
-
totalLovelace?:
|
|
1097
|
+
totalLovelace?: _.Lovelace | null;
|
|
1091
1098
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1092
1099
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1093
1100
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1101,11 +1108,11 @@ declare const Address_base: {
|
|
|
1101
1108
|
new (...args: any[]): {
|
|
1102
1109
|
validFrom?: __.CdsTimestamp | null;
|
|
1103
1110
|
validTo?: __.CdsTimestamp | null;
|
|
1104
|
-
address?: __.Key<
|
|
1105
|
-
stakeAddress?:
|
|
1111
|
+
address?: __.Key<_.Bech32>;
|
|
1112
|
+
stakeAddress?: _.Bech32 | null;
|
|
1106
1113
|
type?: string | null;
|
|
1107
1114
|
isScript?: boolean | null;
|
|
1108
|
-
totalLovelace?:
|
|
1115
|
+
totalLovelace?: _.Lovelace | null;
|
|
1109
1116
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1110
1117
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1111
1118
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1117,11 +1124,11 @@ declare const Address_base: {
|
|
|
1117
1124
|
readonly keys: __.KeysOf<{
|
|
1118
1125
|
validFrom?: __.CdsTimestamp | null;
|
|
1119
1126
|
validTo?: __.CdsTimestamp | null;
|
|
1120
|
-
address?: __.Key<
|
|
1121
|
-
stakeAddress?:
|
|
1127
|
+
address?: __.Key<_.Bech32>;
|
|
1128
|
+
stakeAddress?: _.Bech32 | null;
|
|
1122
1129
|
type?: string | null;
|
|
1123
1130
|
isScript?: boolean | null;
|
|
1124
|
-
totalLovelace?:
|
|
1131
|
+
totalLovelace?: _.Lovelace | null;
|
|
1125
1132
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1126
1133
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1127
1134
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1132,11 +1139,11 @@ declare const Address_base: {
|
|
|
1132
1139
|
readonly elements: __.ElementsOf<{
|
|
1133
1140
|
validFrom?: __.CdsTimestamp | null;
|
|
1134
1141
|
validTo?: __.CdsTimestamp | null;
|
|
1135
|
-
address?: __.Key<
|
|
1136
|
-
stakeAddress?:
|
|
1142
|
+
address?: __.Key<_.Bech32>;
|
|
1143
|
+
stakeAddress?: _.Bech32 | null;
|
|
1137
1144
|
type?: string | null;
|
|
1138
1145
|
isScript?: boolean | null;
|
|
1139
|
-
totalLovelace?:
|
|
1146
|
+
totalLovelace?: _.Lovelace | null;
|
|
1140
1147
|
transactions?: __.Composition.of.many<AddressTransactions>;
|
|
1141
1148
|
assets?: __.Composition.of.many<AddressAssets>;
|
|
1142
1149
|
utxos?: __.Composition.of.many<AddressUTxOs>;
|
|
@@ -1156,11 +1163,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1156
1163
|
validFrom?: __.CdsTimestamp | null;
|
|
1157
1164
|
validTo?: __.CdsTimestamp | null;
|
|
1158
1165
|
address?: __.Key<__.Association.to<Address>>;
|
|
1159
|
-
address_address?: __.Key<
|
|
1160
|
-
unit?: __.Key<
|
|
1161
|
-
asset_quantity?:
|
|
1162
|
-
asset_policyId?:
|
|
1163
|
-
asset_assetNameHex?:
|
|
1166
|
+
address_address?: __.Key<_.Bech32>;
|
|
1167
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1168
|
+
asset_quantity?: _.Lovelace | null;
|
|
1169
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1170
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1164
1171
|
asset_assetName?: string | null;
|
|
1165
1172
|
asset_fingerprint?: string | null;
|
|
1166
1173
|
};
|
|
@@ -1169,11 +1176,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1169
1176
|
validFrom?: __.CdsTimestamp | null;
|
|
1170
1177
|
validTo?: __.CdsTimestamp | null;
|
|
1171
1178
|
address?: __.Key<__.Association.to<Address>>;
|
|
1172
|
-
address_address?: __.Key<
|
|
1173
|
-
unit?: __.Key<
|
|
1174
|
-
asset_quantity?:
|
|
1175
|
-
asset_policyId?:
|
|
1176
|
-
asset_assetNameHex?:
|
|
1179
|
+
address_address?: __.Key<_.Bech32>;
|
|
1180
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1181
|
+
asset_quantity?: _.Lovelace | null;
|
|
1182
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1183
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1177
1184
|
asset_assetName?: string | null;
|
|
1178
1185
|
asset_fingerprint?: string | null;
|
|
1179
1186
|
}>;
|
|
@@ -1181,11 +1188,11 @@ export declare function _AddressAssetAspect<TBase extends new (...args: any[]) =
|
|
|
1181
1188
|
validFrom?: __.CdsTimestamp | null;
|
|
1182
1189
|
validTo?: __.CdsTimestamp | null;
|
|
1183
1190
|
address?: __.Key<__.Association.to<Address>>;
|
|
1184
|
-
address_address?: __.Key<
|
|
1185
|
-
unit?: __.Key<
|
|
1186
|
-
asset_quantity?:
|
|
1187
|
-
asset_policyId?:
|
|
1188
|
-
asset_assetNameHex?:
|
|
1191
|
+
address_address?: __.Key<_.Bech32>;
|
|
1192
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1193
|
+
asset_quantity?: _.Lovelace | null;
|
|
1194
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1195
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1189
1196
|
asset_assetName?: string | null;
|
|
1190
1197
|
asset_fingerprint?: string | null;
|
|
1191
1198
|
}>;
|
|
@@ -1196,11 +1203,11 @@ declare const AddressAsset_base: {
|
|
|
1196
1203
|
validFrom?: __.CdsTimestamp | null;
|
|
1197
1204
|
validTo?: __.CdsTimestamp | null;
|
|
1198
1205
|
address?: __.Key<__.Association.to<Address>>;
|
|
1199
|
-
address_address?: __.Key<
|
|
1200
|
-
unit?: __.Key<
|
|
1201
|
-
asset_quantity?:
|
|
1202
|
-
asset_policyId?:
|
|
1203
|
-
asset_assetNameHex?:
|
|
1206
|
+
address_address?: __.Key<_.Bech32>;
|
|
1207
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1208
|
+
asset_quantity?: _.Lovelace | null;
|
|
1209
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1210
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1204
1211
|
asset_assetName?: string | null;
|
|
1205
1212
|
asset_fingerprint?: string | null;
|
|
1206
1213
|
};
|
|
@@ -1209,11 +1216,11 @@ declare const AddressAsset_base: {
|
|
|
1209
1216
|
validFrom?: __.CdsTimestamp | null;
|
|
1210
1217
|
validTo?: __.CdsTimestamp | null;
|
|
1211
1218
|
address?: __.Key<__.Association.to<Address>>;
|
|
1212
|
-
address_address?: __.Key<
|
|
1213
|
-
unit?: __.Key<
|
|
1214
|
-
asset_quantity?:
|
|
1215
|
-
asset_policyId?:
|
|
1216
|
-
asset_assetNameHex?:
|
|
1219
|
+
address_address?: __.Key<_.Bech32>;
|
|
1220
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1221
|
+
asset_quantity?: _.Lovelace | null;
|
|
1222
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1223
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1217
1224
|
asset_assetName?: string | null;
|
|
1218
1225
|
asset_fingerprint?: string | null;
|
|
1219
1226
|
}>;
|
|
@@ -1221,11 +1228,11 @@ declare const AddressAsset_base: {
|
|
|
1221
1228
|
validFrom?: __.CdsTimestamp | null;
|
|
1222
1229
|
validTo?: __.CdsTimestamp | null;
|
|
1223
1230
|
address?: __.Key<__.Association.to<Address>>;
|
|
1224
|
-
address_address?: __.Key<
|
|
1225
|
-
unit?: __.Key<
|
|
1226
|
-
asset_quantity?:
|
|
1227
|
-
asset_policyId?:
|
|
1228
|
-
asset_assetNameHex?:
|
|
1231
|
+
address_address?: __.Key<_.Bech32>;
|
|
1232
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1233
|
+
asset_quantity?: _.Lovelace | null;
|
|
1234
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1235
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1229
1236
|
asset_assetName?: string | null;
|
|
1230
1237
|
asset_fingerprint?: string | null;
|
|
1231
1238
|
}>;
|
|
@@ -1241,14 +1248,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1241
1248
|
validFrom?: __.CdsTimestamp | null;
|
|
1242
1249
|
validTo?: __.CdsTimestamp | null;
|
|
1243
1250
|
address?: __.Key<__.Association.to<Address>>;
|
|
1244
|
-
address_address?: __.Key<
|
|
1245
|
-
hash?: __.Key<
|
|
1251
|
+
address_address?: __.Key<_.Bech32>;
|
|
1252
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1246
1253
|
index?: __.Key<number>;
|
|
1247
|
-
blockHash?:
|
|
1248
|
-
utxodata_dataHash?:
|
|
1254
|
+
blockHash?: _.Blake2b256 | null;
|
|
1255
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1249
1256
|
utxodata_inlineDatum?: string | null;
|
|
1250
|
-
utxodata_referenceScriptHash?:
|
|
1251
|
-
lovelace?:
|
|
1257
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1258
|
+
lovelace?: _.Lovelace | null;
|
|
1252
1259
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1253
1260
|
hasAssets?: boolean | null;
|
|
1254
1261
|
};
|
|
@@ -1257,14 +1264,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1257
1264
|
validFrom?: __.CdsTimestamp | null;
|
|
1258
1265
|
validTo?: __.CdsTimestamp | null;
|
|
1259
1266
|
address?: __.Key<__.Association.to<Address>>;
|
|
1260
|
-
address_address?: __.Key<
|
|
1261
|
-
hash?: __.Key<
|
|
1267
|
+
address_address?: __.Key<_.Bech32>;
|
|
1268
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1262
1269
|
index?: __.Key<number>;
|
|
1263
|
-
blockHash?:
|
|
1264
|
-
utxodata_dataHash?:
|
|
1270
|
+
blockHash?: _.Blake2b256 | null;
|
|
1271
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1265
1272
|
utxodata_inlineDatum?: string | null;
|
|
1266
|
-
utxodata_referenceScriptHash?:
|
|
1267
|
-
lovelace?:
|
|
1273
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1274
|
+
lovelace?: _.Lovelace | null;
|
|
1268
1275
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1269
1276
|
hasAssets?: boolean | null;
|
|
1270
1277
|
}>;
|
|
@@ -1272,14 +1279,14 @@ export declare function _AddressUTxOAspect<TBase extends new (...args: any[]) =>
|
|
|
1272
1279
|
validFrom?: __.CdsTimestamp | null;
|
|
1273
1280
|
validTo?: __.CdsTimestamp | null;
|
|
1274
1281
|
address?: __.Key<__.Association.to<Address>>;
|
|
1275
|
-
address_address?: __.Key<
|
|
1276
|
-
hash?: __.Key<
|
|
1282
|
+
address_address?: __.Key<_.Bech32>;
|
|
1283
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1277
1284
|
index?: __.Key<number>;
|
|
1278
|
-
blockHash?:
|
|
1279
|
-
utxodata_dataHash?:
|
|
1285
|
+
blockHash?: _.Blake2b256 | null;
|
|
1286
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1280
1287
|
utxodata_inlineDatum?: string | null;
|
|
1281
|
-
utxodata_referenceScriptHash?:
|
|
1282
|
-
lovelace?:
|
|
1288
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1289
|
+
lovelace?: _.Lovelace | null;
|
|
1283
1290
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1284
1291
|
hasAssets?: boolean | null;
|
|
1285
1292
|
}>;
|
|
@@ -1290,14 +1297,14 @@ declare const AddressUTxO_base: {
|
|
|
1290
1297
|
validFrom?: __.CdsTimestamp | null;
|
|
1291
1298
|
validTo?: __.CdsTimestamp | null;
|
|
1292
1299
|
address?: __.Key<__.Association.to<Address>>;
|
|
1293
|
-
address_address?: __.Key<
|
|
1294
|
-
hash?: __.Key<
|
|
1300
|
+
address_address?: __.Key<_.Bech32>;
|
|
1301
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1295
1302
|
index?: __.Key<number>;
|
|
1296
|
-
blockHash?:
|
|
1297
|
-
utxodata_dataHash?:
|
|
1303
|
+
blockHash?: _.Blake2b256 | null;
|
|
1304
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1298
1305
|
utxodata_inlineDatum?: string | null;
|
|
1299
|
-
utxodata_referenceScriptHash?:
|
|
1300
|
-
lovelace?:
|
|
1306
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1307
|
+
lovelace?: _.Lovelace | null;
|
|
1301
1308
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1302
1309
|
hasAssets?: boolean | null;
|
|
1303
1310
|
};
|
|
@@ -1306,14 +1313,14 @@ declare const AddressUTxO_base: {
|
|
|
1306
1313
|
validFrom?: __.CdsTimestamp | null;
|
|
1307
1314
|
validTo?: __.CdsTimestamp | null;
|
|
1308
1315
|
address?: __.Key<__.Association.to<Address>>;
|
|
1309
|
-
address_address?: __.Key<
|
|
1310
|
-
hash?: __.Key<
|
|
1316
|
+
address_address?: __.Key<_.Bech32>;
|
|
1317
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1311
1318
|
index?: __.Key<number>;
|
|
1312
|
-
blockHash?:
|
|
1313
|
-
utxodata_dataHash?:
|
|
1319
|
+
blockHash?: _.Blake2b256 | null;
|
|
1320
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1314
1321
|
utxodata_inlineDatum?: string | null;
|
|
1315
|
-
utxodata_referenceScriptHash?:
|
|
1316
|
-
lovelace?:
|
|
1322
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1323
|
+
lovelace?: _.Lovelace | null;
|
|
1317
1324
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1318
1325
|
hasAssets?: boolean | null;
|
|
1319
1326
|
}>;
|
|
@@ -1321,14 +1328,14 @@ declare const AddressUTxO_base: {
|
|
|
1321
1328
|
validFrom?: __.CdsTimestamp | null;
|
|
1322
1329
|
validTo?: __.CdsTimestamp | null;
|
|
1323
1330
|
address?: __.Key<__.Association.to<Address>>;
|
|
1324
|
-
address_address?: __.Key<
|
|
1325
|
-
hash?: __.Key<
|
|
1331
|
+
address_address?: __.Key<_.Bech32>;
|
|
1332
|
+
hash?: __.Key<_.Blake2b256>;
|
|
1326
1333
|
index?: __.Key<number>;
|
|
1327
|
-
blockHash?:
|
|
1328
|
-
utxodata_dataHash?:
|
|
1334
|
+
blockHash?: _.Blake2b256 | null;
|
|
1335
|
+
utxodata_dataHash?: _.Blake2b256 | null;
|
|
1329
1336
|
utxodata_inlineDatum?: string | null;
|
|
1330
|
-
utxodata_referenceScriptHash?:
|
|
1331
|
-
lovelace?:
|
|
1337
|
+
utxodata_referenceScriptHash?: _.Blake2b256 | null;
|
|
1338
|
+
lovelace?: _.Lovelace | null;
|
|
1332
1339
|
assets?: __.Composition.of.many<UTxOAssets>;
|
|
1333
1340
|
hasAssets?: boolean | null;
|
|
1334
1341
|
}>;
|
|
@@ -1342,9 +1349,9 @@ export declare class AddressUTxOs extends Array<AddressUTxO> {
|
|
|
1342
1349
|
export declare function _AddressTransactionAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
1343
1350
|
new (...args: any[]): {
|
|
1344
1351
|
address?: __.Key<__.Association.to<Address>>;
|
|
1345
|
-
address_address?: __.Key<
|
|
1352
|
+
address_address?: __.Key<_.Bech32>;
|
|
1346
1353
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1347
|
-
tx_hash?: __.Key<
|
|
1354
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1348
1355
|
netAmount?: number | null;
|
|
1349
1356
|
blockTime?: number | null;
|
|
1350
1357
|
netAssets?: string | null;
|
|
@@ -1353,9 +1360,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1353
1360
|
readonly kind: "entity" | "type" | "aspect";
|
|
1354
1361
|
readonly keys: __.KeysOf<{
|
|
1355
1362
|
address?: __.Key<__.Association.to<Address>>;
|
|
1356
|
-
address_address?: __.Key<
|
|
1363
|
+
address_address?: __.Key<_.Bech32>;
|
|
1357
1364
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1358
|
-
tx_hash?: __.Key<
|
|
1365
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1359
1366
|
netAmount?: number | null;
|
|
1360
1367
|
blockTime?: number | null;
|
|
1361
1368
|
netAssets?: string | null;
|
|
@@ -1363,9 +1370,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1363
1370
|
}>;
|
|
1364
1371
|
readonly elements: __.ElementsOf<{
|
|
1365
1372
|
address?: __.Key<__.Association.to<Address>>;
|
|
1366
|
-
address_address?: __.Key<
|
|
1373
|
+
address_address?: __.Key<_.Bech32>;
|
|
1367
1374
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1368
|
-
tx_hash?: __.Key<
|
|
1375
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1369
1376
|
netAmount?: number | null;
|
|
1370
1377
|
blockTime?: number | null;
|
|
1371
1378
|
netAssets?: string | null;
|
|
@@ -1376,9 +1383,9 @@ export declare function _AddressTransactionAspect<TBase extends new (...args: an
|
|
|
1376
1383
|
declare const AddressTransaction_base: {
|
|
1377
1384
|
new (...args: any[]): {
|
|
1378
1385
|
address?: __.Key<__.Association.to<Address>>;
|
|
1379
|
-
address_address?: __.Key<
|
|
1386
|
+
address_address?: __.Key<_.Bech32>;
|
|
1380
1387
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1381
|
-
tx_hash?: __.Key<
|
|
1388
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1382
1389
|
netAmount?: number | null;
|
|
1383
1390
|
blockTime?: number | null;
|
|
1384
1391
|
netAssets?: string | null;
|
|
@@ -1387,9 +1394,9 @@ declare const AddressTransaction_base: {
|
|
|
1387
1394
|
readonly kind: "entity" | "type" | "aspect";
|
|
1388
1395
|
readonly keys: __.KeysOf<{
|
|
1389
1396
|
address?: __.Key<__.Association.to<Address>>;
|
|
1390
|
-
address_address?: __.Key<
|
|
1397
|
+
address_address?: __.Key<_.Bech32>;
|
|
1391
1398
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1392
|
-
tx_hash?: __.Key<
|
|
1399
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1393
1400
|
netAmount?: number | null;
|
|
1394
1401
|
blockTime?: number | null;
|
|
1395
1402
|
netAssets?: string | null;
|
|
@@ -1397,9 +1404,9 @@ declare const AddressTransaction_base: {
|
|
|
1397
1404
|
}>;
|
|
1398
1405
|
readonly elements: __.ElementsOf<{
|
|
1399
1406
|
address?: __.Key<__.Association.to<Address>>;
|
|
1400
|
-
address_address?: __.Key<
|
|
1407
|
+
address_address?: __.Key<_.Bech32>;
|
|
1401
1408
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1402
|
-
tx_hash?: __.Key<
|
|
1409
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1403
1410
|
netAmount?: number | null;
|
|
1404
1411
|
blockTime?: number | null;
|
|
1405
1412
|
netAssets?: string | null;
|
|
@@ -1417,13 +1424,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1417
1424
|
validFrom?: __.CdsTimestamp | null;
|
|
1418
1425
|
validTo?: __.CdsTimestamp | null;
|
|
1419
1426
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1420
|
-
utxo_hash?: __.Key<
|
|
1427
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1421
1428
|
utxo_index?: __.Key<number>;
|
|
1422
|
-
utxo_address_address?: __.Key<
|
|
1423
|
-
unit?: __.Key<
|
|
1424
|
-
asset_quantity?:
|
|
1425
|
-
asset_policyId?:
|
|
1426
|
-
asset_assetNameHex?:
|
|
1429
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1430
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1431
|
+
asset_quantity?: _.Lovelace | null;
|
|
1432
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1433
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1427
1434
|
asset_assetName?: string | null;
|
|
1428
1435
|
asset_fingerprint?: string | null;
|
|
1429
1436
|
};
|
|
@@ -1432,13 +1439,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1432
1439
|
validFrom?: __.CdsTimestamp | null;
|
|
1433
1440
|
validTo?: __.CdsTimestamp | null;
|
|
1434
1441
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1435
|
-
utxo_hash?: __.Key<
|
|
1442
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1436
1443
|
utxo_index?: __.Key<number>;
|
|
1437
|
-
utxo_address_address?: __.Key<
|
|
1438
|
-
unit?: __.Key<
|
|
1439
|
-
asset_quantity?:
|
|
1440
|
-
asset_policyId?:
|
|
1441
|
-
asset_assetNameHex?:
|
|
1444
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1445
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1446
|
+
asset_quantity?: _.Lovelace | null;
|
|
1447
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1448
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1442
1449
|
asset_assetName?: string | null;
|
|
1443
1450
|
asset_fingerprint?: string | null;
|
|
1444
1451
|
}>;
|
|
@@ -1446,13 +1453,13 @@ export declare function _UTxOAssetAspect<TBase extends new (...args: any[]) => o
|
|
|
1446
1453
|
validFrom?: __.CdsTimestamp | null;
|
|
1447
1454
|
validTo?: __.CdsTimestamp | null;
|
|
1448
1455
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1449
|
-
utxo_hash?: __.Key<
|
|
1456
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1450
1457
|
utxo_index?: __.Key<number>;
|
|
1451
|
-
utxo_address_address?: __.Key<
|
|
1452
|
-
unit?: __.Key<
|
|
1453
|
-
asset_quantity?:
|
|
1454
|
-
asset_policyId?:
|
|
1455
|
-
asset_assetNameHex?:
|
|
1458
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1459
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1460
|
+
asset_quantity?: _.Lovelace | null;
|
|
1461
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1462
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1456
1463
|
asset_assetName?: string | null;
|
|
1457
1464
|
asset_fingerprint?: string | null;
|
|
1458
1465
|
}>;
|
|
@@ -1463,13 +1470,13 @@ declare const UTxOAsset_base: {
|
|
|
1463
1470
|
validFrom?: __.CdsTimestamp | null;
|
|
1464
1471
|
validTo?: __.CdsTimestamp | null;
|
|
1465
1472
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1466
|
-
utxo_hash?: __.Key<
|
|
1473
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1467
1474
|
utxo_index?: __.Key<number>;
|
|
1468
|
-
utxo_address_address?: __.Key<
|
|
1469
|
-
unit?: __.Key<
|
|
1470
|
-
asset_quantity?:
|
|
1471
|
-
asset_policyId?:
|
|
1472
|
-
asset_assetNameHex?:
|
|
1475
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1476
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1477
|
+
asset_quantity?: _.Lovelace | null;
|
|
1478
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1479
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1473
1480
|
asset_assetName?: string | null;
|
|
1474
1481
|
asset_fingerprint?: string | null;
|
|
1475
1482
|
};
|
|
@@ -1478,13 +1485,13 @@ declare const UTxOAsset_base: {
|
|
|
1478
1485
|
validFrom?: __.CdsTimestamp | null;
|
|
1479
1486
|
validTo?: __.CdsTimestamp | null;
|
|
1480
1487
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1481
|
-
utxo_hash?: __.Key<
|
|
1488
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1482
1489
|
utxo_index?: __.Key<number>;
|
|
1483
|
-
utxo_address_address?: __.Key<
|
|
1484
|
-
unit?: __.Key<
|
|
1485
|
-
asset_quantity?:
|
|
1486
|
-
asset_policyId?:
|
|
1487
|
-
asset_assetNameHex?:
|
|
1490
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1491
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1492
|
+
asset_quantity?: _.Lovelace | null;
|
|
1493
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1494
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1488
1495
|
asset_assetName?: string | null;
|
|
1489
1496
|
asset_fingerprint?: string | null;
|
|
1490
1497
|
}>;
|
|
@@ -1492,13 +1499,13 @@ declare const UTxOAsset_base: {
|
|
|
1492
1499
|
validFrom?: __.CdsTimestamp | null;
|
|
1493
1500
|
validTo?: __.CdsTimestamp | null;
|
|
1494
1501
|
utxo?: __.Key<__.Association.to<AddressUTxO>>;
|
|
1495
|
-
utxo_hash?: __.Key<
|
|
1502
|
+
utxo_hash?: __.Key<_.Blake2b256>;
|
|
1496
1503
|
utxo_index?: __.Key<number>;
|
|
1497
|
-
utxo_address_address?: __.Key<
|
|
1498
|
-
unit?: __.Key<
|
|
1499
|
-
asset_quantity?:
|
|
1500
|
-
asset_policyId?:
|
|
1501
|
-
asset_assetNameHex?:
|
|
1504
|
+
utxo_address_address?: __.Key<_.Bech32>;
|
|
1505
|
+
unit?: __.Key<_.AssetUnit>;
|
|
1506
|
+
asset_quantity?: _.Lovelace | null;
|
|
1507
|
+
asset_policyId?: _.Blake2b224 | null;
|
|
1508
|
+
asset_assetNameHex?: _.HexBytes | null;
|
|
1502
1509
|
asset_assetName?: string | null;
|
|
1503
1510
|
asset_fingerprint?: string | null;
|
|
1504
1511
|
}>;
|
|
@@ -1513,7 +1520,7 @@ export declare function _TransactionMetadataAspect<TBase extends new (...args: a
|
|
|
1513
1520
|
new (...args: any[]): {
|
|
1514
1521
|
id?: __.Key<number>;
|
|
1515
1522
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1516
|
-
tx_hash?: __.Key<
|
|
1523
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1517
1524
|
label?: string | null;
|
|
1518
1525
|
payload?: string | null;
|
|
1519
1526
|
};
|
|
@@ -1521,14 +1528,14 @@ export declare function _TransactionMetadataAspect<TBase extends new (...args: a
|
|
|
1521
1528
|
readonly keys: __.KeysOf<{
|
|
1522
1529
|
id?: __.Key<number>;
|
|
1523
1530
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1524
|
-
tx_hash?: __.Key<
|
|
1531
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1525
1532
|
label?: string | null;
|
|
1526
1533
|
payload?: string | null;
|
|
1527
1534
|
}>;
|
|
1528
1535
|
readonly elements: __.ElementsOf<{
|
|
1529
1536
|
id?: __.Key<number>;
|
|
1530
1537
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1531
|
-
tx_hash?: __.Key<
|
|
1538
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1532
1539
|
label?: string | null;
|
|
1533
1540
|
payload?: string | null;
|
|
1534
1541
|
}>;
|
|
@@ -1538,7 +1545,7 @@ declare const TransactionMetadata_base: {
|
|
|
1538
1545
|
new (...args: any[]): {
|
|
1539
1546
|
id?: __.Key<number>;
|
|
1540
1547
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1541
|
-
tx_hash?: __.Key<
|
|
1548
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1542
1549
|
label?: string | null;
|
|
1543
1550
|
payload?: string | null;
|
|
1544
1551
|
};
|
|
@@ -1546,14 +1553,14 @@ declare const TransactionMetadata_base: {
|
|
|
1546
1553
|
readonly keys: __.KeysOf<{
|
|
1547
1554
|
id?: __.Key<number>;
|
|
1548
1555
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1549
|
-
tx_hash?: __.Key<
|
|
1556
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1550
1557
|
label?: string | null;
|
|
1551
1558
|
payload?: string | null;
|
|
1552
1559
|
}>;
|
|
1553
1560
|
readonly elements: __.ElementsOf<{
|
|
1554
1561
|
id?: __.Key<number>;
|
|
1555
1562
|
tx?: __.Key<__.Association.to<Transaction>>;
|
|
1556
|
-
tx_hash?: __.Key<
|
|
1563
|
+
tx_hash?: __.Key<_.Blake2b256>;
|
|
1557
1564
|
label?: string | null;
|
|
1558
1565
|
payload?: string | null;
|
|
1559
1566
|
}>;
|
|
@@ -1808,12 +1815,12 @@ export declare const GetNetworkInformation: {
|
|
|
1808
1815
|
kind: 'action';
|
|
1809
1816
|
};
|
|
1810
1817
|
export declare const GetBlockByHash: {
|
|
1811
|
-
(hash:
|
|
1818
|
+
(hash: _.Blake2b256 | null): globalThis.Promise<Block | null> | Block | null;
|
|
1812
1819
|
({ hash }: {
|
|
1813
|
-
hash?:
|
|
1820
|
+
hash?: _.Blake2b256 | null;
|
|
1814
1821
|
}): globalThis.Promise<Block | null> | Block | null;
|
|
1815
1822
|
__parameters: {
|
|
1816
|
-
hash?:
|
|
1823
|
+
hash?: _.Blake2b256 | null;
|
|
1817
1824
|
};
|
|
1818
1825
|
__returns: globalThis.Promise<Block | null> | Block | null;
|
|
1819
1826
|
__self: never;
|
|
@@ -1856,85 +1863,85 @@ export declare const GetDrepById: {
|
|
|
1856
1863
|
kind: 'action';
|
|
1857
1864
|
};
|
|
1858
1865
|
export declare const GetAccountByStakeAddress: {
|
|
1859
|
-
(stakeAddress:
|
|
1866
|
+
(stakeAddress: _.Bech32 | null): globalThis.Promise<Account | null> | Account | null;
|
|
1860
1867
|
({ stakeAddress }: {
|
|
1861
|
-
stakeAddress?:
|
|
1868
|
+
stakeAddress?: _.Bech32 | null;
|
|
1862
1869
|
}): globalThis.Promise<Account | null> | Account | null;
|
|
1863
1870
|
__parameters: {
|
|
1864
|
-
stakeAddress?:
|
|
1871
|
+
stakeAddress?: _.Bech32 | null;
|
|
1865
1872
|
};
|
|
1866
1873
|
__returns: globalThis.Promise<Account | null> | Account | null;
|
|
1867
1874
|
__self: never;
|
|
1868
1875
|
kind: 'action';
|
|
1869
1876
|
};
|
|
1870
1877
|
export declare const GetTransactionByHash: {
|
|
1871
|
-
(hash:
|
|
1878
|
+
(hash: _.Blake2b256 | null): globalThis.Promise<Transaction | null> | Transaction | null;
|
|
1872
1879
|
({ hash }: {
|
|
1873
|
-
hash?:
|
|
1880
|
+
hash?: _.Blake2b256 | null;
|
|
1874
1881
|
}): globalThis.Promise<Transaction | null> | Transaction | null;
|
|
1875
1882
|
__parameters: {
|
|
1876
|
-
hash?:
|
|
1883
|
+
hash?: _.Blake2b256 | null;
|
|
1877
1884
|
};
|
|
1878
1885
|
__returns: globalThis.Promise<Transaction | null> | Transaction | null;
|
|
1879
1886
|
__self: never;
|
|
1880
1887
|
kind: 'action';
|
|
1881
1888
|
};
|
|
1882
1889
|
export declare const GetMetadataByTxHash: {
|
|
1883
|
-
(tx_hash:
|
|
1890
|
+
(tx_hash: _.Blake2b256 | null): globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
|
|
1884
1891
|
({ tx_hash }: {
|
|
1885
|
-
tx_hash?:
|
|
1892
|
+
tx_hash?: _.Blake2b256 | null;
|
|
1886
1893
|
}): globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
|
|
1887
1894
|
__parameters: {
|
|
1888
|
-
tx_hash?:
|
|
1895
|
+
tx_hash?: _.Blake2b256 | null;
|
|
1889
1896
|
};
|
|
1890
1897
|
__returns: globalThis.Promise<Array<TransactionMetadata>> | Array<TransactionMetadata>;
|
|
1891
1898
|
__self: never;
|
|
1892
1899
|
kind: 'action';
|
|
1893
1900
|
};
|
|
1894
1901
|
export declare const GetAddressByBech32: {
|
|
1895
|
-
(address:
|
|
1902
|
+
(address: _.Bech32 | null): globalThis.Promise<Address | null> | Address | null;
|
|
1896
1903
|
({ address }: {
|
|
1897
|
-
address?:
|
|
1904
|
+
address?: _.Bech32 | null;
|
|
1898
1905
|
}): globalThis.Promise<Address | null> | Address | null;
|
|
1899
1906
|
__parameters: {
|
|
1900
|
-
address?:
|
|
1907
|
+
address?: _.Bech32 | null;
|
|
1901
1908
|
};
|
|
1902
1909
|
__returns: globalThis.Promise<Address | null> | Address | null;
|
|
1903
1910
|
__self: never;
|
|
1904
1911
|
kind: 'action';
|
|
1905
1912
|
};
|
|
1906
1913
|
export declare const GetUTxOsByAddress: {
|
|
1907
|
-
(address:
|
|
1914
|
+
(address: _.Bech32 | null): globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
|
|
1908
1915
|
({ address }: {
|
|
1909
|
-
address?:
|
|
1916
|
+
address?: _.Bech32 | null;
|
|
1910
1917
|
}): globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
|
|
1911
1918
|
__parameters: {
|
|
1912
|
-
address?:
|
|
1919
|
+
address?: _.Bech32 | null;
|
|
1913
1920
|
};
|
|
1914
1921
|
__returns: globalThis.Promise<Array<AddressUTxO>> | Array<AddressUTxO>;
|
|
1915
1922
|
__self: never;
|
|
1916
1923
|
kind: 'action';
|
|
1917
1924
|
};
|
|
1918
1925
|
export declare const GetAssetsByAddress: {
|
|
1919
|
-
(address:
|
|
1926
|
+
(address: _.Bech32 | null): globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
|
|
1920
1927
|
({ address }: {
|
|
1921
|
-
address?:
|
|
1928
|
+
address?: _.Bech32 | null;
|
|
1922
1929
|
}): globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
|
|
1923
1930
|
__parameters: {
|
|
1924
|
-
address?:
|
|
1931
|
+
address?: _.Bech32 | null;
|
|
1925
1932
|
};
|
|
1926
1933
|
__returns: globalThis.Promise<Array<AddressAsset>> | Array<AddressAsset>;
|
|
1927
1934
|
__self: never;
|
|
1928
1935
|
kind: 'action';
|
|
1929
1936
|
};
|
|
1930
1937
|
export declare const GetLatestTransactionsByAddress: {
|
|
1931
|
-
(address:
|
|
1938
|
+
(address: _.Bech32 | null, limit: number | null): globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
|
|
1932
1939
|
({ address, limit }: {
|
|
1933
|
-
address?:
|
|
1940
|
+
address?: _.Bech32 | null;
|
|
1934
1941
|
limit?: number | null;
|
|
1935
1942
|
}): globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
|
|
1936
1943
|
__parameters: {
|
|
1937
|
-
address?:
|
|
1944
|
+
address?: _.Bech32 | null;
|
|
1938
1945
|
limit?: number | null;
|
|
1939
1946
|
};
|
|
1940
1947
|
__returns: globalThis.Promise<Array<AddressTransaction>> | Array<AddressTransaction>;
|