anvil_zksync_core/node/batch/mod.rs
1//! Main implementation of ZKsync VM [batch executor](crate::interface::BatchExecutor).
2//!
3//! This implementation is used by various ZKsync components, like the state keeper and components based on the VM runner.
4
5pub use self::factory::{MainBatchExecutorFactory, TraceCalls};
6
7mod executor;
8mod factory;
9mod shared;