wp-evm-v4-core 0.1.14

Pure data + quote + plan for v4-family DEXes — no async dependencies
Documentation
//! wp-evm-v4-core — pure computation for v4-family DEXes.
//!
//! Modules:
//! - `data` — pure records (PoolState, Quote, ProtocolConfig, etc.)
//! - `quote` — pure swap-math delegation for hookless pools
//! - `plan` — pure calldata-encoding functions
//! - `v4_planner` — native V4 action sequencer (replaces the
//!   `uniswap-v4-sdk` `V4Planner`; see R17-pre Slice B)
//! - `hook_options` — native V4 hook permission decoder
//!   (replaces `uniswap_v4_sdk::utils::hook`; see R17-pre Slice D)
//!
//! Zero async dependencies. Consumers that need chain I/O should depend on
//! `wp-evm-v4-provider`, which re-exports all of this crate's public API.

pub mod data;
pub mod hook_options;
pub mod permit2;
pub mod plan;
pub mod position_info;
pub mod quote;
pub mod v4_planner;