wp_evm_base/lib.rs
1//! waterpump-base — L0 of the layered architecture.
2//!
3//! Contains: math primitives, EVM helpers, and base data types
4//! (Call, TokenApproval, TokenAmount, SlippageBps).
5//!
6//! No business logic. No protocol knowledge. No async I/O.
7
8pub mod chain;
9pub mod evm;
10pub mod types;
11
12/// Re-export of `waterpump-evm-amm-math` under a stable path.
13///
14/// All math primitives (tick math, sqrt price math, position math) live here.
15pub use wp_evm_amm_math as math;