wp-evm-base 0.1.3

Base layer (math, evm helpers, base types) for waterpump-evm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! waterpump-base — L0 of the layered architecture.
//!
//! Contains: math primitives, EVM helpers, and base data types
//! (Call, TokenApproval, TokenAmount, SlippageBps).
//!
//! No business logic. No protocol knowledge. No async I/O.

pub mod chain;
pub mod evm;
pub mod types;

/// Re-export of `waterpump-evm-amm-math` under a stable path.
///
/// All math primitives (tick math, sqrt price math, position math) live here.
pub use wp_evm_amm_math as math;