zksync_error/error/
domains.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
//
// AUTOGENERATED BASED ON A SET OF JSON FILES, DO NOT EDIT MANUALLY
//
#![allow(non_camel_case_types)]
use crate::error::definitions::APICode;
use crate::error::definitions::AnvilEnvironment;
use crate::error::definitions::AnvilEnvironmentCode;
use crate::error::definitions::AnvilGeneric;
use crate::error::definitions::AnvilGenericCode;
use crate::error::definitions::EraVM;
use crate::error::definitions::EraVMCode;
use crate::error::definitions::ExecutionPlatform;
use crate::error::definitions::ExecutionPlatformCode;
use crate::error::definitions::FoundryUpstream;
use crate::error::definitions::FoundryUpstreamCode;
use crate::error::definitions::FoundryZksync;
use crate::error::definitions::FoundryZksyncCode;
use crate::error::definitions::Halt;
use crate::error::definitions::HaltCode;
use crate::error::definitions::HardhatUpstream;
use crate::error::definitions::HardhatUpstreamCode;
use crate::error::definitions::HardhatZksync;
use crate::error::definitions::HardhatZksyncCode;
use crate::error::definitions::LLVM_EVMCode;
use crate::error::definitions::LLVM_Era;
use crate::error::definitions::LLVM_EraCode;
use crate::error::definitions::Revert;
use crate::error::definitions::RevertCode;
use crate::error::definitions::Sequencer;
use crate::error::definitions::SequencerCode;
use crate::error::definitions::Solc;
use crate::error::definitions::SolcCode;
use crate::error::definitions::SolcFork;
use crate::error::definitions::SolcForkCode;
use crate::error::definitions::Zksolc;
use crate::error::definitions::ZksolcCode;
use crate::error::definitions::Zkvyper;
use crate::error::definitions::ZkvyperCode;
use crate::error::definitions::API;
use crate::error::definitions::LLVM_EVM;
use crate::error::ICustomError;
use crate::error::IUnifiedError;
use crate::kind::Kind;
use strum_macros::AsRefStr;
use strum_macros::EnumDiscriminants;
use strum_macros::FromRepr;
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
pub enum ZksyncError {
    AnvilZksync(AnvilZksync),
    Compiler(Compiler),
    Core(Core),
    Foundry(Foundry),
    Hardhat(Hardhat),
}
impl crate::documentation::Documented for ZksyncError {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            ZksyncError::AnvilZksync(error) => error.get_documentation(),
            ZksyncError::Compiler(error) => error.get_documentation(),
            ZksyncError::Core(error) => error.get_documentation(),
            ZksyncError::Foundry(error) => error.get_documentation(),
            ZksyncError::Hardhat(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for ZksyncError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ZksyncError::AnvilZksync(domain_error) => domain_error.fmt(f),
            ZksyncError::Compiler(domain_error) => domain_error.fmt(f),
            ZksyncError::Core(domain_error) => domain_error.fmt(f),
            ZksyncError::Foundry(domain_error) => domain_error.fmt(f),
            ZksyncError::Hardhat(domain_error) => domain_error.fmt(f),
        }
    }
}
impl ZksyncError {
    pub fn get_kind(&self) -> crate::kind::Kind {
        match self {
            ZksyncError::AnvilZksync(AnvilZksync::AnvilEnvironment(_)) => {
                Kind::AnvilZksync(AnvilZksyncCode::AnvilEnvironment)
            }
            ZksyncError::AnvilZksync(AnvilZksync::AnvilGeneric(_)) => {
                Kind::AnvilZksync(AnvilZksyncCode::AnvilGeneric)
            }
            ZksyncError::AnvilZksync(AnvilZksync::Halt(_)) => {
                Kind::AnvilZksync(AnvilZksyncCode::Halt)
            }
            ZksyncError::AnvilZksync(AnvilZksync::Revert(_)) => {
                Kind::AnvilZksync(AnvilZksyncCode::Revert)
            }
            ZksyncError::Compiler(Compiler::LLVM_EVM(_)) => Kind::Compiler(CompilerCode::LLVM_EVM),
            ZksyncError::Compiler(Compiler::LLVM_Era(_)) => Kind::Compiler(CompilerCode::LLVM_Era),
            ZksyncError::Compiler(Compiler::Solc(_)) => Kind::Compiler(CompilerCode::Solc),
            ZksyncError::Compiler(Compiler::SolcFork(_)) => Kind::Compiler(CompilerCode::SolcFork),
            ZksyncError::Compiler(Compiler::Zksolc(_)) => Kind::Compiler(CompilerCode::Zksolc),
            ZksyncError::Compiler(Compiler::Zkvyper(_)) => Kind::Compiler(CompilerCode::Zkvyper),
            ZksyncError::Core(Core::API(_)) => Kind::Core(CoreCode::API),
            ZksyncError::Core(Core::EraVM(_)) => Kind::Core(CoreCode::EraVM),
            ZksyncError::Core(Core::ExecutionPlatform(_)) => {
                Kind::Core(CoreCode::ExecutionPlatform)
            }
            ZksyncError::Core(Core::Sequencer(_)) => Kind::Core(CoreCode::Sequencer),
            ZksyncError::Foundry(Foundry::FoundryUpstream(_)) => {
                Kind::Foundry(FoundryCode::FoundryUpstream)
            }
            ZksyncError::Foundry(Foundry::FoundryZksync(_)) => {
                Kind::Foundry(FoundryCode::FoundryZksync)
            }
            ZksyncError::Hardhat(Hardhat::HardhatUpstream(_)) => {
                Kind::Hardhat(HardhatCode::HardhatUpstream)
            }
            ZksyncError::Hardhat(Hardhat::HardhatZksync(_)) => {
                Kind::Hardhat(HardhatCode::HardhatZksync)
            }
        }
    }
    pub fn get_code(&self) -> u32 {
        match self {
            ZksyncError::AnvilZksync(AnvilZksync::AnvilEnvironment(error)) => {
                Into::<AnvilEnvironmentCode>::into(error) as u32
            }
            ZksyncError::AnvilZksync(AnvilZksync::AnvilGeneric(error)) => {
                Into::<AnvilGenericCode>::into(error) as u32
            }
            ZksyncError::AnvilZksync(AnvilZksync::Halt(error)) => {
                Into::<HaltCode>::into(error) as u32
            }
            ZksyncError::AnvilZksync(AnvilZksync::Revert(error)) => {
                Into::<RevertCode>::into(error) as u32
            }
            ZksyncError::Compiler(Compiler::LLVM_EVM(error)) => {
                Into::<LLVM_EVMCode>::into(error) as u32
            }
            ZksyncError::Compiler(Compiler::LLVM_Era(error)) => {
                Into::<LLVM_EraCode>::into(error) as u32
            }
            ZksyncError::Compiler(Compiler::Solc(error)) => Into::<SolcCode>::into(error) as u32,
            ZksyncError::Compiler(Compiler::SolcFork(error)) => {
                Into::<SolcForkCode>::into(error) as u32
            }
            ZksyncError::Compiler(Compiler::Zksolc(error)) => {
                Into::<ZksolcCode>::into(error) as u32
            }
            ZksyncError::Compiler(Compiler::Zkvyper(error)) => {
                Into::<ZkvyperCode>::into(error) as u32
            }
            ZksyncError::Core(Core::API(error)) => Into::<APICode>::into(error) as u32,
            ZksyncError::Core(Core::EraVM(error)) => Into::<EraVMCode>::into(error) as u32,
            ZksyncError::Core(Core::ExecutionPlatform(error)) => {
                Into::<ExecutionPlatformCode>::into(error) as u32
            }
            ZksyncError::Core(Core::Sequencer(error)) => Into::<SequencerCode>::into(error) as u32,
            ZksyncError::Foundry(Foundry::FoundryUpstream(error)) => {
                Into::<FoundryUpstreamCode>::into(error) as u32
            }
            ZksyncError::Foundry(Foundry::FoundryZksync(error)) => {
                Into::<FoundryZksyncCode>::into(error) as u32
            }
            ZksyncError::Hardhat(Hardhat::HardhatUpstream(error)) => {
                Into::<HardhatUpstreamCode>::into(error) as u32
            }
            ZksyncError::Hardhat(Hardhat::HardhatZksync(error)) => {
                Into::<HardhatZksyncCode>::into(error) as u32
            }
        }
    }
}
impl IUnifiedError<ZksyncError> for ZksyncError {}
impl std::error::Error for ZksyncError {}
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
#[strum_discriminants(name(AnvilZksyncCode))]
#[strum_discriminants(derive(serde::Serialize, serde::Deserialize, FromRepr))]
#[strum_discriminants(vis(pub))]
pub enum AnvilZksync {
    AnvilEnvironment(AnvilEnvironment),
    AnvilGeneric(AnvilGeneric),
    Halt(Halt),
    Revert(Revert),
}
impl AnvilZksync {
    pub fn get_name(&self) -> &str {
        self.as_ref()
    }
}
impl ICustomError<ZksyncError, ZksyncError> for AnvilEnvironment {
    fn to_unified(&self) -> ZksyncError {
        AnvilZksync::AnvilEnvironment(self.clone()).to_unified()
    }
}
impl From<AnvilEnvironment> for AnvilZksync {
    fn from(val: AnvilEnvironment) -> Self {
        AnvilZksync::AnvilEnvironment(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for AnvilGeneric {
    fn to_unified(&self) -> ZksyncError {
        AnvilZksync::AnvilGeneric(self.clone()).to_unified()
    }
}
impl From<AnvilGeneric> for AnvilZksync {
    fn from(val: AnvilGeneric) -> Self {
        AnvilZksync::AnvilGeneric(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Halt {
    fn to_unified(&self) -> ZksyncError {
        AnvilZksync::Halt(self.clone()).to_unified()
    }
}
impl From<Halt> for AnvilZksync {
    fn from(val: Halt) -> Self {
        AnvilZksync::Halt(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Revert {
    fn to_unified(&self) -> ZksyncError {
        AnvilZksync::Revert(self.clone()).to_unified()
    }
}
impl From<Revert> for AnvilZksync {
    fn from(val: Revert) -> Self {
        AnvilZksync::Revert(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for AnvilZksync {
    fn to_unified(&self) -> ZksyncError {
        ZksyncError::AnvilZksync(self.clone())
    }
}
impl From<AnvilZksync> for ZksyncError {
    fn from(value: AnvilZksync) -> Self {
        value.to_unified()
    }
}
impl crate::documentation::Documented for AnvilZksync {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            AnvilZksync::AnvilEnvironment(error) => error.get_documentation(),
            AnvilZksync::AnvilGeneric(error) => error.get_documentation(),
            AnvilZksync::Halt(error) => error.get_documentation(),
            AnvilZksync::Revert(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for AnvilZksync {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            AnvilZksync::AnvilEnvironment(component) => component.fmt(f),
            AnvilZksync::AnvilGeneric(component) => component.fmt(f),
            AnvilZksync::Halt(component) => component.fmt(f),
            AnvilZksync::Revert(component) => component.fmt(f),
        }
    }
}
impl std::error::Error for AnvilZksync {}
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
#[strum_discriminants(name(CompilerCode))]
#[strum_discriminants(derive(serde::Serialize, serde::Deserialize, FromRepr))]
#[strum_discriminants(vis(pub))]
pub enum Compiler {
    LLVM_EVM(LLVM_EVM),
    LLVM_Era(LLVM_Era),
    Solc(Solc),
    SolcFork(SolcFork),
    Zksolc(Zksolc),
    Zkvyper(Zkvyper),
}
impl Compiler {
    pub fn get_name(&self) -> &str {
        self.as_ref()
    }
}
impl ICustomError<ZksyncError, ZksyncError> for LLVM_EVM {
    fn to_unified(&self) -> ZksyncError {
        Compiler::LLVM_EVM(self.clone()).to_unified()
    }
}
impl From<LLVM_EVM> for Compiler {
    fn from(val: LLVM_EVM) -> Self {
        Compiler::LLVM_EVM(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for LLVM_Era {
    fn to_unified(&self) -> ZksyncError {
        Compiler::LLVM_Era(self.clone()).to_unified()
    }
}
impl From<LLVM_Era> for Compiler {
    fn from(val: LLVM_Era) -> Self {
        Compiler::LLVM_Era(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Solc {
    fn to_unified(&self) -> ZksyncError {
        Compiler::Solc(self.clone()).to_unified()
    }
}
impl From<Solc> for Compiler {
    fn from(val: Solc) -> Self {
        Compiler::Solc(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for SolcFork {
    fn to_unified(&self) -> ZksyncError {
        Compiler::SolcFork(self.clone()).to_unified()
    }
}
impl From<SolcFork> for Compiler {
    fn from(val: SolcFork) -> Self {
        Compiler::SolcFork(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Zksolc {
    fn to_unified(&self) -> ZksyncError {
        Compiler::Zksolc(self.clone()).to_unified()
    }
}
impl From<Zksolc> for Compiler {
    fn from(val: Zksolc) -> Self {
        Compiler::Zksolc(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Zkvyper {
    fn to_unified(&self) -> ZksyncError {
        Compiler::Zkvyper(self.clone()).to_unified()
    }
}
impl From<Zkvyper> for Compiler {
    fn from(val: Zkvyper) -> Self {
        Compiler::Zkvyper(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Compiler {
    fn to_unified(&self) -> ZksyncError {
        ZksyncError::Compiler(self.clone())
    }
}
impl From<Compiler> for ZksyncError {
    fn from(value: Compiler) -> Self {
        value.to_unified()
    }
}
impl crate::documentation::Documented for Compiler {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            Compiler::LLVM_EVM(error) => error.get_documentation(),
            Compiler::LLVM_Era(error) => error.get_documentation(),
            Compiler::Solc(error) => error.get_documentation(),
            Compiler::SolcFork(error) => error.get_documentation(),
            Compiler::Zksolc(error) => error.get_documentation(),
            Compiler::Zkvyper(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for Compiler {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Compiler::LLVM_EVM(component) => component.fmt(f),
            Compiler::LLVM_Era(component) => component.fmt(f),
            Compiler::Solc(component) => component.fmt(f),
            Compiler::SolcFork(component) => component.fmt(f),
            Compiler::Zksolc(component) => component.fmt(f),
            Compiler::Zkvyper(component) => component.fmt(f),
        }
    }
}
impl std::error::Error for Compiler {}
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
#[strum_discriminants(name(CoreCode))]
#[strum_discriminants(derive(serde::Serialize, serde::Deserialize, FromRepr))]
#[strum_discriminants(vis(pub))]
pub enum Core {
    API(API),
    EraVM(EraVM),
    ExecutionPlatform(ExecutionPlatform),
    Sequencer(Sequencer),
}
impl Core {
    pub fn get_name(&self) -> &str {
        self.as_ref()
    }
}
impl ICustomError<ZksyncError, ZksyncError> for API {
    fn to_unified(&self) -> ZksyncError {
        Core::API(self.clone()).to_unified()
    }
}
impl From<API> for Core {
    fn from(val: API) -> Self {
        Core::API(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for EraVM {
    fn to_unified(&self) -> ZksyncError {
        Core::EraVM(self.clone()).to_unified()
    }
}
impl From<EraVM> for Core {
    fn from(val: EraVM) -> Self {
        Core::EraVM(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for ExecutionPlatform {
    fn to_unified(&self) -> ZksyncError {
        Core::ExecutionPlatform(self.clone()).to_unified()
    }
}
impl From<ExecutionPlatform> for Core {
    fn from(val: ExecutionPlatform) -> Self {
        Core::ExecutionPlatform(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Sequencer {
    fn to_unified(&self) -> ZksyncError {
        Core::Sequencer(self.clone()).to_unified()
    }
}
impl From<Sequencer> for Core {
    fn from(val: Sequencer) -> Self {
        Core::Sequencer(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Core {
    fn to_unified(&self) -> ZksyncError {
        ZksyncError::Core(self.clone())
    }
}
impl From<Core> for ZksyncError {
    fn from(value: Core) -> Self {
        value.to_unified()
    }
}
impl crate::documentation::Documented for Core {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            Core::API(error) => error.get_documentation(),
            Core::EraVM(error) => error.get_documentation(),
            Core::ExecutionPlatform(error) => error.get_documentation(),
            Core::Sequencer(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for Core {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Core::API(component) => component.fmt(f),
            Core::EraVM(component) => component.fmt(f),
            Core::ExecutionPlatform(component) => component.fmt(f),
            Core::Sequencer(component) => component.fmt(f),
        }
    }
}
impl std::error::Error for Core {}
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
#[strum_discriminants(name(FoundryCode))]
#[strum_discriminants(derive(serde::Serialize, serde::Deserialize, FromRepr))]
#[strum_discriminants(vis(pub))]
pub enum Foundry {
    FoundryUpstream(FoundryUpstream),
    FoundryZksync(FoundryZksync),
}
impl Foundry {
    pub fn get_name(&self) -> &str {
        self.as_ref()
    }
}
impl ICustomError<ZksyncError, ZksyncError> for FoundryUpstream {
    fn to_unified(&self) -> ZksyncError {
        Foundry::FoundryUpstream(self.clone()).to_unified()
    }
}
impl From<FoundryUpstream> for Foundry {
    fn from(val: FoundryUpstream) -> Self {
        Foundry::FoundryUpstream(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for FoundryZksync {
    fn to_unified(&self) -> ZksyncError {
        Foundry::FoundryZksync(self.clone()).to_unified()
    }
}
impl From<FoundryZksync> for Foundry {
    fn from(val: FoundryZksync) -> Self {
        Foundry::FoundryZksync(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Foundry {
    fn to_unified(&self) -> ZksyncError {
        ZksyncError::Foundry(self.clone())
    }
}
impl From<Foundry> for ZksyncError {
    fn from(value: Foundry) -> Self {
        value.to_unified()
    }
}
impl crate::documentation::Documented for Foundry {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            Foundry::FoundryUpstream(error) => error.get_documentation(),
            Foundry::FoundryZksync(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for Foundry {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Foundry::FoundryUpstream(component) => component.fmt(f),
            Foundry::FoundryZksync(component) => component.fmt(f),
        }
    }
}
impl std::error::Error for Foundry {}
#[repr(u32)]
#[derive(
    AsRefStr,
    Clone,
    Debug,
    EnumDiscriminants,
    Eq,
    PartialEq,
    serde :: Serialize,
    serde :: Deserialize,
)]
#[strum_discriminants(name(HardhatCode))]
#[strum_discriminants(derive(serde::Serialize, serde::Deserialize, FromRepr))]
#[strum_discriminants(vis(pub))]
pub enum Hardhat {
    HardhatUpstream(HardhatUpstream),
    HardhatZksync(HardhatZksync),
}
impl Hardhat {
    pub fn get_name(&self) -> &str {
        self.as_ref()
    }
}
impl ICustomError<ZksyncError, ZksyncError> for HardhatUpstream {
    fn to_unified(&self) -> ZksyncError {
        Hardhat::HardhatUpstream(self.clone()).to_unified()
    }
}
impl From<HardhatUpstream> for Hardhat {
    fn from(val: HardhatUpstream) -> Self {
        Hardhat::HardhatUpstream(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for HardhatZksync {
    fn to_unified(&self) -> ZksyncError {
        Hardhat::HardhatZksync(self.clone()).to_unified()
    }
}
impl From<HardhatZksync> for Hardhat {
    fn from(val: HardhatZksync) -> Self {
        Hardhat::HardhatZksync(val)
    }
}
impl ICustomError<ZksyncError, ZksyncError> for Hardhat {
    fn to_unified(&self) -> ZksyncError {
        ZksyncError::Hardhat(self.clone())
    }
}
impl From<Hardhat> for ZksyncError {
    fn from(value: Hardhat) -> Self {
        value.to_unified()
    }
}
impl crate::documentation::Documented for Hardhat {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        match self {
            Hardhat::HardhatUpstream(error) => error.get_documentation(),
            Hardhat::HardhatZksync(error) => error.get_documentation(),
        }
    }
}
impl std::fmt::Display for Hardhat {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Hardhat::HardhatUpstream(component) => component.fmt(f),
            Hardhat::HardhatZksync(component) => component.fmt(f),
        }
    }
}
impl std::error::Error for Hardhat {}