wp-evm-v3-core 0.1.1

Pure data + quote + plan for v3-family (CL) DEXes — no async dependencies
Documentation
//! 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.

pub mod data;
pub mod plan;
pub mod pool_address;
pub mod position;
pub mod quote;

// Native swap loop — internal to v3-core per YAGNI. Exposed via
// `quote::exact_in_*` only; direct callers have no use case yet.
mod swap;