//! wp-evm-v3-core — pure computation for v3-style concentrated-liquidity DEXes.
//!
//! Four modules:
//! - `data` — pure records (PoolState, Quote, ProtocolConfig, etc.)
//! - `quote` — pure swap-math functions (exact_in, exact_out)
//! - `plan` — pure ABI-encoding functions (swap, add_liquidity, etc.)
//! - `pool_address` — pure CREATE2 pool address derivation
//!
//! Zero async dependencies. Consumers that need chain I/O should depend on
//! `wp-evm-v3-provider`, which re-exports all of this crate's public API.
// Native swap loop — internal to v3-core per YAGNI. Exposed via
// `quote::exact_in_*` only; direct callers have no use case yet.