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