evm-dex-pool 1.2.2

Reusable EVM DEX pool implementations (UniswapV2, UniswapV3, ERC4626) with traits and math
Documentation
1
2
3
4
5
6
7
8
9
10
//! TraderJoe Liquidity Book (LB v2) pool implementation.

#[cfg(feature = "rpc")]
pub mod fetcher;
pub mod math;
mod pool;

#[cfg(feature = "rpc")]
pub use fetcher::*;
pub use pool::*;