ethexe-consensus 2.0.0

Validator consensus services for the ethexe execution layer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

mod manager;
pub use manager::BatchCommitmentManager;

mod types;
pub use types::{BatchLimits, ValidationStatus};

mod filler;

mod utils;

#[cfg(test)]
mod tests;