lotus_dex_std/
lib.rs

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