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 tx; 10pub mod types; 11 12pub use error::Error;