1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] 2 3pub mod balances; 4pub mod contract; 5mod error; 6mod helpers; 7pub mod msg; 8pub mod state; 9 10pub use error::ContractError; 11 12#[cfg(test)] 13mod tests;