evm-dex-pool 1.2.2

Reusable EVM DEX pool implementations (UniswapV2, UniswapV3, ERC4626) with traits and math
Documentation
mod bit_math;
#[cfg(feature = "rpc")]
pub mod fetcher;
mod full_math;
mod liquidity_math;
mod nearest_usable_tick;
mod pool;
mod sqrt_price_math;
mod swap_math;
mod tick;
mod tick_math;
mod unsafe_math;
mod utils;

pub use bit_math::*;
#[cfg(feature = "rpc")]
pub use fetcher::*;
pub use full_math::*;
pub use liquidity_math::*;
pub use nearest_usable_tick::*;
pub use pool::*;
pub use sqrt_price_math::*;
pub use swap_math::*;
pub use tick::*;
pub use tick_math::*;
pub use unsafe_math::*;
pub use utils::*;