forked from privacy-scaling-explorations/zkevm-circuits
-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathlib.rs
34 lines (31 loc) · 801 Bytes
/
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
#![feature(lazy_cell)]
/// proof aggregation
mod aggregation;
/// This module implements `Batch` related data types.
/// A batch is a list of chunk.
mod batch;
/// blob struct and constants
mod blob;
// This module implements `Chunk` related data types.
// A chunk is a list of blocks.
mod chunk;
/// Configurations
mod constants;
/// Core module for circuit assignment
mod core;
/// Parameters for compression circuit
mod param;
/// utilities
mod util;
#[cfg(test)]
mod tests;
pub use self::core::extract_proof_and_instances_with_pairing_check;
pub use aggregation::*;
pub use batch::{BatchHash, BatchHeader};
pub use blob::BatchData;
pub use chunk::ChunkInfo;
pub use constants::MAX_AGG_SNARKS;
pub(crate) use constants::*;
pub use param::*;
mod mock_chunk;
pub use mock_chunk::MockChunkCircuit;