mantra_dex_std/
lib.rs

1pub mod coin;
2pub mod common;
3pub mod constants;
4pub mod epoch_manager;
5pub mod farm_manager;
6pub mod fee;
7pub mod fee_collector;
8pub mod lp_common;
9pub mod pool_manager;
10
11pub mod tokenfactory;
12
13#[allow(clippy::all)]
14mod uints {
15    use uint::construct_uint;
16    construct_uint! {
17        pub struct U256(4);
18    }
19}
20
21pub use uints::U256;