wp-evm-ramses-core 0.1.2

Pure data + quote + plan for Ramses-family CL DEXes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! wp-evm-ramses-core — pure computation/data for Ramses-family CL DEXes.
//!
//! Modules:
//! - `data` — Ramses-family records and protocol configuration.
//! - `plan` — pure calldata/approval planning.
//! - `pool_address` — pure CREATE2 pool address derivation for Shadow-pattern Ramses forks.
//! - `position` — Ramses-family NFPM position view + pool position key helper.
//! - `quote` — re-exported V3 CL quote math.

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

pub use position::{position_key, RamsesPositionView, VelodromePositionRow};
/// Re-export of v3 core quote module — Ramses pool math is identical to Uniswap V3.
pub use wp_evm_v3_core::quote;