axiom_core/
lib.rs

1pub use axiom_eth;
2
3/// Aggregation circuits
4pub mod aggregation;
5/// Circuit that parses RLP encoded block headers and constrains that the block headers actually form a block chain.
6pub mod header_chain;
7#[cfg(feature = "keygen")]
8/// Intents and utilities for generating proving and verifying keys for production
9pub mod keygen;
10/// Types for different nodes in Axiom Core aggregation tree
11pub mod types;
12
13#[cfg(test)]
14pub mod tests;
15
16pub use axiom_eth::Field;