zksync_error/
lib.rs

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
//
// AUTOGENERATED BASED ON A SET OF JSON FILES, DO NOT EDIT MANUALLY
//
#![allow(unused)]
pub mod documentation;
pub(crate) mod error;
pub use error::CustomErrorMessage;
pub use error::ICustomError;
pub use error::IError;
pub use error::IUnifiedError;
pub use error::NamedError;
pub(crate) mod identifier;
pub use identifier::Identifier;
pub use identifier::Identifying;
pub use identifier::StructuredErrorCode;
pub(crate) mod kind;
pub use kind::Kind;
pub mod packed;
pub mod serialized;
pub mod untyped;
pub use crate::error::domains::ZksyncError;
pub mod anvil_zksync {
    pub use crate::error::domains::AnvilZksync as AnvilZksyncError;
    pub use crate::error::domains::AnvilZksyncCode;
    pub mod env {
        pub use crate::error::definitions::AnvilEnvironment as AnvilEnvironmentError;
        pub use crate::error::definitions::AnvilEnvironment::GenericError;
        pub use crate::error::definitions::AnvilEnvironment::InvalidArguments;
        pub use crate::error::definitions::AnvilEnvironment::LogFileAccessFailed;
        pub use crate::error::definitions::AnvilEnvironment::LogFileWriteFailed;
        pub use crate::error::definitions::AnvilEnvironment::ServerStartupFailed;
        pub use crate::error::definitions::AnvilEnvironmentCode as ErrorCode;
        #[macro_export]
        macro_rules ! anvil_zksync_env_generic_error { ($ ($ arg : tt) *) => { zksync_error :: anvil_zksync :: env :: AnvilEnvironmentError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::anvil_zksync_env_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> AnvilEnvironmentError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::AnvilZksyncError {
            super::AnvilZksyncError::AnvilEnvironment(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod gen {
        pub use crate::error::definitions::AnvilGeneric as AnvilGenericError;
        pub use crate::error::definitions::AnvilGeneric::GenericError;
        pub use crate::error::definitions::AnvilGenericCode as ErrorCode;
        #[macro_export]
        macro_rules ! anvil_zksync_gen_generic_error { ($ ($ arg : tt) *) => { zksync_error :: anvil_zksync :: gen :: AnvilGenericError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::anvil_zksync_gen_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> AnvilGenericError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::AnvilZksyncError {
            super::AnvilZksyncError::AnvilGeneric(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod halt {
        pub use crate::error::definitions::Halt as HaltError;
        pub use crate::error::definitions::Halt::BootloaderOutOfGas;
        pub use crate::error::definitions::Halt::FailedBlockTimestampAssertion;
        pub use crate::error::definitions::Halt::FailedToAppendTransactionToL2Block;
        pub use crate::error::definitions::Halt::FailedToChargeFee;
        pub use crate::error::definitions::Halt::FailedToMarkFactoryDependencies;
        pub use crate::error::definitions::Halt::FailedToPublishCompressedBytecodes;
        pub use crate::error::definitions::Halt::FailedToSetL2Block;
        pub use crate::error::definitions::Halt::FromIsNotAnAccount;
        pub use crate::error::definitions::Halt::GenericError;
        pub use crate::error::definitions::Halt::InnerTxError;
        pub use crate::error::definitions::Halt::MissingInvocationLimitReached;
        pub use crate::error::definitions::Halt::NotEnoughGasProvided;
        pub use crate::error::definitions::Halt::PayForTxFailed;
        pub use crate::error::definitions::Halt::PaymasterValidationFailed;
        pub use crate::error::definitions::Halt::PrePaymasterPreparationFailed;
        pub use crate::error::definitions::Halt::TooBigGasLimit;
        pub use crate::error::definitions::Halt::TracerCustom;
        pub use crate::error::definitions::Halt::UnexpectedVMBehavior;
        pub use crate::error::definitions::Halt::Unknown;
        pub use crate::error::definitions::Halt::VMPanic;
        pub use crate::error::definitions::Halt::ValidationFailed;
        pub use crate::error::definitions::Halt::ValidationOutOfGas;
        pub use crate::error::definitions::HaltCode as ErrorCode;
        #[macro_export]
        macro_rules ! anvil_zksync_halt_generic_error { ($ ($ arg : tt) *) => { zksync_error :: anvil_zksync :: halt :: HaltError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::anvil_zksync_halt_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> HaltError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::AnvilZksyncError {
            super::AnvilZksyncError::Halt(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod revert {
        pub use crate::error::definitions::Revert as RevertError;
        pub use crate::error::definitions::Revert::General;
        pub use crate::error::definitions::Revert::GenericError;
        pub use crate::error::definitions::Revert::InnerTxError;
        pub use crate::error::definitions::Revert::Unknown;
        pub use crate::error::definitions::Revert::VmError;
        pub use crate::error::definitions::RevertCode as ErrorCode;
        #[macro_export]
        macro_rules ! anvil_zksync_revert_generic_error { ($ ($ arg : tt) *) => { zksync_error :: anvil_zksync :: revert :: RevertError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::anvil_zksync_revert_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> RevertError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::AnvilZksyncError {
            super::AnvilZksyncError::Revert(GenericError {
                message: err.to_string(),
            })
        }
    }
}
pub mod compiler {
    pub use crate::error::domains::Compiler as CompilerError;
    pub use crate::error::domains::CompilerCode;
    pub mod llvm_evm {
        pub use crate::error::definitions::LLVM_EVMCode as ErrorCode;
        pub use crate::error::definitions::LLVM_EVM as LLVM_EVMError;
        pub use crate::error::definitions::LLVM_EVM::GenericError;
        #[macro_export]
        macro_rules ! compiler_llvm_evm_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: llvm_evm :: LLVM_EVMError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_llvm_evm_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> LLVM_EVMError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::LLVM_EVM(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod llvm_era {
        pub use crate::error::definitions::LLVM_Era as LLVM_EraError;
        pub use crate::error::definitions::LLVM_Era::GenericError;
        pub use crate::error::definitions::LLVM_EraCode as ErrorCode;
        #[macro_export]
        macro_rules ! compiler_llvm_era_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: llvm_era :: LLVM_EraError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_llvm_era_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> LLVM_EraError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::LLVM_Era(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod solc {
        pub use crate::error::definitions::Solc as SolcError;
        pub use crate::error::definitions::Solc::GenericError;
        pub use crate::error::definitions::SolcCode as ErrorCode;
        #[macro_export]
        macro_rules ! compiler_solc_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: solc :: SolcError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_solc_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> SolcError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::Solc(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod solc_fork {
        pub use crate::error::definitions::SolcFork as SolcForkError;
        pub use crate::error::definitions::SolcFork::GenericError;
        pub use crate::error::definitions::SolcForkCode as ErrorCode;
        #[macro_export]
        macro_rules ! compiler_solc_fork_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: solc_fork :: SolcForkError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_solc_fork_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> SolcForkError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::SolcFork(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod zksolc {
        pub use crate::error::definitions::Zksolc as ZksolcError;
        pub use crate::error::definitions::Zksolc::GenericError;
        pub use crate::error::definitions::ZksolcCode as ErrorCode;
        #[macro_export]
        macro_rules ! compiler_zksolc_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: zksolc :: ZksolcError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_zksolc_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> ZksolcError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::Zksolc(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod zkvyper {
        pub use crate::error::definitions::Zkvyper as ZkvyperError;
        pub use crate::error::definitions::Zkvyper::GenericError;
        pub use crate::error::definitions::ZkvyperCode as ErrorCode;
        #[macro_export]
        macro_rules ! compiler_zkvyper_generic_error { ($ ($ arg : tt) *) => { zksync_error :: compiler :: zkvyper :: ZkvyperError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::compiler_zkvyper_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> ZkvyperError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CompilerError {
            super::CompilerError::Zkvyper(GenericError {
                message: err.to_string(),
            })
        }
    }
}
pub mod core {
    pub use crate::error::domains::Core as CoreError;
    pub use crate::error::domains::CoreCode;
    pub mod api {
        pub use crate::error::definitions::APICode as ErrorCode;
        pub use crate::error::definitions::API as APIError;
        pub use crate::error::definitions::API::GenericError;
        #[macro_export]
        macro_rules ! core_api_generic_error { ($ ($ arg : tt) *) => { zksync_error :: core :: api :: APIError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::core_api_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> APIError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CoreError {
            super::CoreError::API(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod eravm {
        pub use crate::error::definitions::EraVM as EraVMError;
        pub use crate::error::definitions::EraVM::GenericError;
        pub use crate::error::definitions::EraVMCode as ErrorCode;
        #[macro_export]
        macro_rules ! core_eravm_generic_error { ($ ($ arg : tt) *) => { zksync_error :: core :: eravm :: EraVMError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::core_eravm_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> EraVMError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CoreError {
            super::CoreError::EraVM(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod exec {
        pub use crate::error::definitions::ExecutionPlatform as ExecutionPlatformError;
        pub use crate::error::definitions::ExecutionPlatform::GenericError;
        pub use crate::error::definitions::ExecutionPlatformCode as ErrorCode;
        #[macro_export]
        macro_rules ! core_exec_generic_error { ($ ($ arg : tt) *) => { zksync_error :: core :: exec :: ExecutionPlatformError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::core_exec_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> ExecutionPlatformError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CoreError {
            super::CoreError::ExecutionPlatform(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod seq {
        pub use crate::error::definitions::Sequencer as SequencerError;
        pub use crate::error::definitions::Sequencer::GenericError;
        pub use crate::error::definitions::Sequencer::GenericSequencerError;
        pub use crate::error::definitions::SequencerCode as ErrorCode;
        #[macro_export]
        macro_rules ! core_seq_generic_error { ($ ($ arg : tt) *) => { zksync_error :: core :: seq :: SequencerError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::core_seq_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> SequencerError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::CoreError {
            super::CoreError::Sequencer(GenericError {
                message: err.to_string(),
            })
        }
    }
}
pub mod foundry {
    pub use crate::error::domains::Foundry as FoundryError;
    pub use crate::error::domains::FoundryCode;
    pub mod upstream {
        pub use crate::error::definitions::FoundryUpstream as FoundryUpstreamError;
        pub use crate::error::definitions::FoundryUpstream::GenericError;
        pub use crate::error::definitions::FoundryUpstreamCode as ErrorCode;
        #[macro_export]
        macro_rules ! foundry_upstream_generic_error { ($ ($ arg : tt) *) => { zksync_error :: foundry :: upstream :: FoundryUpstreamError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::foundry_upstream_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> FoundryUpstreamError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::FoundryError {
            super::FoundryError::FoundryUpstream(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod zksync {
        pub use crate::error::definitions::FoundryZksync as FoundryZksyncError;
        pub use crate::error::definitions::FoundryZksync::GenericError;
        pub use crate::error::definitions::FoundryZksyncCode as ErrorCode;
        #[macro_export]
        macro_rules ! foundry_zksync_generic_error { ($ ($ arg : tt) *) => { zksync_error :: foundry :: zksync :: FoundryZksyncError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::foundry_zksync_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> FoundryZksyncError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::FoundryError {
            super::FoundryError::FoundryZksync(GenericError {
                message: err.to_string(),
            })
        }
    }
}
pub mod hardhat {
    pub use crate::error::domains::Hardhat as HardhatError;
    pub use crate::error::domains::HardhatCode;
    pub mod upstream {
        pub use crate::error::definitions::HardhatUpstream as HardhatUpstreamError;
        pub use crate::error::definitions::HardhatUpstream::GenericError;
        pub use crate::error::definitions::HardhatUpstreamCode as ErrorCode;
        #[macro_export]
        macro_rules ! hardhat_upstream_generic_error { ($ ($ arg : tt) *) => { zksync_error :: hardhat :: upstream :: HardhatUpstreamError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::hardhat_upstream_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> HardhatUpstreamError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::HardhatError {
            super::HardhatError::HardhatUpstream(GenericError {
                message: err.to_string(),
            })
        }
    }
    pub mod zksync {
        pub use crate::error::definitions::HardhatZksync as HardhatZksyncError;
        pub use crate::error::definitions::HardhatZksync::GenericError;
        pub use crate::error::definitions::HardhatZksyncCode as ErrorCode;
        #[macro_export]
        macro_rules ! hardhat_zksync_generic_error { ($ ($ arg : tt) *) => { zksync_error :: hardhat :: zksync :: HardhatZksyncError :: GenericError { message : format ! ($ ($ arg) *) } } ; }
        pub use crate::hardhat_zksync_generic_error as generic_error;
        pub fn to_generic<T: std::fmt::Display>(err: T) -> HardhatZksyncError {
            GenericError {
                message: err.to_string(),
            }
        }
        pub fn to_domain<T: std::fmt::Display>(err: T) -> super::HardhatError {
            super::HardhatError::HardhatZksync(GenericError {
                message: err.to_string(),
            })
        }
    }
}