pallas-validate 1.0.0

Utilities for validating transactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
//! Types for validating transactions in each era.
use thiserror::Error;

#[derive(Debug, Clone, Error)]
#[non_exhaustive]
pub enum ValidationError {
    #[error("transaction and protocol parameters differ")]
    TxAndProtParamsDiffer,

    #[error("byron doesn't need account state")]
    PParamsByronDoesntNeedAccountState,

    #[error("missing account state")]
    EnvMissingAccountState,

    #[error("unknown protocol parameters")]
    UnknownProtParams,

    #[error("{0}")]
    Byron(ByronError),

    #[error("{0}")]
    ShelleyMA(ShelleyMAError),

    #[error("{0}")]
    Alonzo(AlonzoError),

    #[error("{0}")]
    PostAlonzo(PostAlonzoError),
}

#[derive(Debug, Clone, Error)]
#[non_exhaustive]
pub enum ByronError {
    #[error("transaction has no inputs")]
    TxInsEmpty,

    #[error("transaction has no outputs")]
    TxOutsEmpty,

    #[error("some transaction input is not present in the UTxO set")]
    InputNotInUTxO,

    #[error("transaction output has no lovelace")]
    OutputWithoutLovelace,

    #[error("transaction size could not be determined")]
    UnknownTxSize,

    #[error("transaction fee cannot be computed")]
    UnableToComputeFees,

    #[error("transaction fee is below the minimum fee required")]
    FeesBelowMin,

    #[error("transaction size exceeds the maximum allowed")]
    MaxTxSizeExceeded,

    #[error("unable to process witnesses from the transaction")]
    UnableToProcessWitness,

    #[error("transaction witness is missing")]
    MissingWitness,

    #[error("transaction has the wrong signature")]
    WrongSignature,
}

#[derive(Debug, Clone, Error)]
#[non_exhaustive]
pub enum ShelleyMAError {
    #[error("transaction has no inputs")]
    TxInsEmpty,

    #[error("some transaction input is not present in the UTxO set")]
    InputNotInUTxO,

    #[error("transaction exceeds the TTL range")]
    TTLExceeded,

    #[error("transaction composition is not compatible with shelley")]
    AlonzoCompNotShelley,

    #[error("transaction size could not be determined")]
    UnknownTxSize,

    #[error("transaction size exceeds the maximum allowed")]
    MaxTxSizeExceeded,

    #[error("some value in the transaction is not shelley-compatible")]
    ValueNotShelley,

    #[error("minimum lovelace requirement was not met")]
    MinLovelaceUnreached,

    #[error("transaction values are not preserved correctly")]
    PreservationOfValue,

    #[error("transaction contains a negative value")]
    NegativeValue,

    #[error("transaction fee is below the minimum fee required")]
    FeesBelowMin,

    #[error("transaction output is from a different era")]
    WrongEraOutput,

    #[error("failed to decode the address")]
    AddressDecoding,

    #[error("transaction has the wrong network ID")]
    WrongNetworkID,

    #[error("metadata hash is invalid")]
    MetadataHash,

    #[error("vkey witness is missing")]
    MissingVKWitness,

    #[error("script witness is missing")]
    MissingScriptWitness,

    #[error("transaction has the wrong signature")]
    WrongSignature,

    #[error("minting lacks the required policy")]
    MintingLacksPolicy,

    #[error("key is already registered")]
    KeyAlreadyRegistered,

    #[error("key is not yet registered")]
    KeyNotRegistered,

    #[error("pointer is already in use")]
    PointerInUse,

    #[error("rewards are not null")]
    RewardsNotNull,

    #[error("pool is already registered")]
    PoolAlreadyRegistered,

    #[error("pool is not yet registered")]
    PoolNotRegistered,

    #[error("pool cost is below the minimum")]
    PoolCostBelowMin,

    #[error("transaction has duplicate genesis delegates")]
    DuplicateGenesisDelegate,

    #[error("transaction has duplicate genesis VRF")]
    DuplicateGenesisVRF,

    #[error("genesis key is not in the mapping")]
    GenesisKeyNotInMapping,

    #[error("insufficient funds for instantaneous rewards")]
    InsufficientForInstantaneousRewards,

    #[error("MIR certificate is too late in the epoch")]
    MIRCertificateTooLateinEpoch,

    #[error("script is denied")]
    ScriptDenial,
}

#[derive(Debug, Clone, Error)]
#[non_exhaustive]
pub enum AlonzoError {
    #[error("transaction size could not be determined")]
    UnknownTxSize,

    #[error("transaction has no inputs")]
    TxInsEmpty,

    #[error("some transaction input is not present in the UTxO set")]
    InputNotInUTxO,

    #[error("collateral is not present in the UTxO set")]
    CollateralNotInUTxO,

    #[error("block precedes the validity interval")]
    BlockExceedsValInt,

    #[error("block exceeds the validity interval")]
    BlockPrecedesValInt,

    #[error("upper bound of the validity interval is missing")]
    ValIntUpperBoundMissing,

    #[error("transaction fee is below the minimum fee required")]
    FeeBelowMin,

    #[error("collateral input is missing from the transaction")]
    CollateralMissing,

    #[error("transaction contains too many collateral inputs")]
    TooManyCollaterals,

    #[error("the collateral input is not VKey locked")]
    CollateralNotVKeyLocked,

    #[error("failed to decode the address")]
    AddressDecoding,

    #[error("collateral input does not meet the minimum lovelace required")]
    CollateralMinLovelace,

    #[error("collateral input contains non-lovelace assets")]
    NonLovelaceCollateral,

    #[error("transaction contains a negative value")]
    NegativeValue,

    #[error("transaction values are not preserved correctly")]
    PreservationOfValue,

    #[error("minimum lovelace requirement was not met")]
    MinLovelaceUnreached,

    #[error("the maximum value size has been exceeded")]
    MaxValSizeExceeded,

    #[error("transaction output has the wrong network ID")]
    OutputWrongNetworkID,

    #[error("transaction has the wrong network ID")]
    TxWrongNetworkID,

    #[error("required redeemer is missing")]
    RedeemerMissing,

    #[error("the transaction's execution units exceed the maximum allowed")]
    TxExUnitsExceeded,

    #[error("transaction size exceeds the maximum allowed")]
    MaxTxSizeExceeded,

    #[error("vkey witness is missing")]
    VKWitnessMissing,

    #[error("vkey witness has the wrong signature")]
    VKWrongSignature,

    #[error("required signer is missing")]
    ReqSignerMissing,

    #[error("required signer has the wrong signature")]
    ReqSignerWrongSig,

    #[error("script witness is missing")]
    ScriptWitnessMissing,

    #[error("minting lacks the required policy")]
    MintingLacksPolicy,

    #[error("failed to decode the input")]
    InputDecoding,

    #[error("an unnecessary native script is present")]
    UnneededNativeScript,

    #[error("an unnecessary Plutus V1 script is present")]
    UnneededPlutusScript,

    #[error("an unnecessary redeemer is present")]
    UnneededRedeemer,

    #[error("required datum is missing")]
    DatumMissing,

    #[error("an unnecessary datum is present")]
    UnneededDatum,

    #[error("metadata hash is invalid")]
    MetadataHash,

    #[error("invalid script integrity hash")]
    ScriptIntegrityHash,
}

#[derive(Debug, Clone, Error)]
#[non_exhaustive]
pub enum PostAlonzoError {
    #[error("transaction size could not be determined")]
    UnknownTxSize,

    #[error("transaction has no inputs")]
    TxInsEmpty,

    #[error("some transaction input is not present in the UTxO set")]
    InputNotInUTxO,

    #[error("collateral is not present in the UTxO set")]
    CollateralNotInUTxO,

    #[error("reference input is not present in the UTxO set")]
    ReferenceInputNotInUTxO,

    #[error("block precedes the validity interval")]
    BlockPrecedesValInt,

    #[error("block exceeds the validity interval")]
    BlockExceedsValInt,

    #[error("transaction fee is below the minimum fee required")]
    FeeBelowMin,

    #[error("collateral input is missing from the transaction")]
    CollateralMissing,

    #[error("transaction contains too many collateral inputs")]
    TooManyCollaterals,

    #[error("failed to decode the input")]
    InputDecoding,

    #[error("the collateral input is not VKey locked")]
    CollateralNotVKeyLocked,

    #[error("collateral input does not meet the minimum lovelace required")]
    CollateralMinLovelace,

    #[error("collateral input contains non-lovelace assets")]
    NonLovelaceCollateral,

    #[error("collateral input contains incorrect assets")]
    CollateralWrongAssets,

    #[error("transaction contains a negative value")]
    NegativeValue,

    #[error("paid collateral does not match the annotated collateral")]
    CollateralAnnotation,

    #[error("transaction values are not preserved correctly")]
    PreservationOfValue,

    #[error("minimum lovelace requirement was not met")]
    MinLovelaceUnreached,

    #[error("the maximum value size has been exceeded")]
    MaxValSizeExceeded,

    #[error("failed to decode the address")]
    AddressDecoding,

    #[error("transaction output has the wrong network ID")]
    OutputWrongNetworkID,

    #[error("transaction has the wrong network ID")]
    TxWrongNetworkID,

    #[error("the transaction's execution units exceed the maximum allowed")]
    TxExUnitsExceeded,

    #[error("required redeemer is missing")]
    RedeemerMissing,

    #[error("an unnecessary redeemer is present")]
    UnneededRedeemer,

    #[error("transaction size exceeds the maximum allowed")]
    MaxTxSizeExceeded,

    #[error("minting lacks the required policy: {0}")]
    MintingLacksPolicy(pallas_crypto::hash::Hash<28>),

    #[error("metadata hash is invalid")]
    MetadataHash,

    #[error("required datum is missing")]
    DatumMissing,

    #[error("an unnecessary datum is present")]
    UnneededDatum,

    #[error("script witness is missing")]
    ScriptWitnessMissing,

    #[error("an unnecessary native script is present")]
    UnneededNativeScript,

    #[error("an unnecessary Plutus V1 script is present")]
    UnneededPlutusV1Script,

    #[error("an unnecessary Plutus V2 script is present")]
    UnneededPlutusV2Script,

    #[error("an unnecessary Plutus V3 script is present")]
    UnneededPlutusV3Script,

    #[error("required signer is missing")]
    ReqSignerMissing,

    #[error("required signer has the wrong signature")]
    ReqSignerWrongSig,

    #[error("vkey witness is missing")]
    VKWitnessMissing,

    #[error("vkey witness has the wrong signature")]
    VKWrongSignature,

    #[error("transaction contains an unsupported plutus language")]
    UnsupportedPlutusLanguage,

    #[error("invalid script integrity hash")]
    ScriptIntegrityHash,
}

pub type ValidationResult = Result<(), ValidationError>;