Skip to main content

aztec_core/
lib.rs

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