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