Skip to main content

aztec_core/
lib.rs

1//! Core types shared across the Aztec Rust workspace.
2
3pub mod abi;
4pub mod constants;
5pub mod error;
6pub mod fee;
7pub mod grumpkin;
8pub mod hash;
9pub mod kernel_types;
10pub mod tx;
11pub mod types;
12pub mod validation;
13
14pub use error::Error;