From f5fdd329c4e0c5524e8c591a1065cc0d43b893e8 Mon Sep 17 00:00:00 2001 From: openhands Date: Sun, 15 Mar 2026 08:20:13 +0000 Subject: [PATCH] fix: ThreePositionStrategy class comment still advertises 1-100% anchor width (#786) Remove the misleading "(1-100% width)" range claim from the ANCHOR NatSpec. Anchor width enforcement lives in LiquidityManager, not this abstract, so the comment is replaced with a note pointing to where enforcement actually occurs. Co-Authored-By: Claude Sonnet 4.6 --- onchain/src/abstracts/ThreePositionStrategy.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onchain/src/abstracts/ThreePositionStrategy.sol b/onchain/src/abstracts/ThreePositionStrategy.sol index 049d69b..46e0a6a 100644 --- a/onchain/src/abstracts/ThreePositionStrategy.sol +++ b/onchain/src/abstracts/ThreePositionStrategy.sol @@ -14,7 +14,7 @@ import "@uniswap-v3-core/interfaces/IUniswapV3Pool.sol"; * @dev Provides the core logic for anti-arbitrage asymmetric slippage profile * * Three-Position Strategy: - * - ANCHOR: Near current price, fast price discovery (1-100% width) + * - ANCHOR: Near current price, fast price discovery (width enforced by LiquidityManager) * - DISCOVERY: Borders anchor, captures fees (11000 tick spacing) * - FLOOR: Deep liquidity at VWAP-adjusted prices *