From 6f4bec3163c2846e109fe939435d9b5ff7a3c908 Mon Sep 17 00:00:00 2001 From: ChefCupcake Date: Fri, 20 Dec 2024 20:57:13 +0800 Subject: [PATCH] chore: Add a disclaimer before review --- src/pool-cl/anti-sniping/CLAntiSniping.sol | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pool-cl/anti-sniping/CLAntiSniping.sol b/src/pool-cl/anti-sniping/CLAntiSniping.sol index 8225749..a41c1d2 100644 --- a/src/pool-cl/anti-sniping/CLAntiSniping.sol +++ b/src/pool-cl/anti-sniping/CLAntiSniping.sol @@ -16,6 +16,12 @@ import {FullMath} from "pancake-v4-core/src/pool-cl/libraries/FullMath.sol"; import {FixedPoint128} from "pancake-v4-core/src/pool-cl/libraries/FixedPoint128.sol"; import {SafeCast} from "pancake-v4-core/src/libraries/SafeCast.sol"; +/* + * @dev Disclaimer: + * - This contract has not been audited. + * - Developers using this code are advised to thoroughly review and test it before deploying it to production. + */ + /// @title AntiSnipingHook /// @notice A PancakeSwap V4 hook that prevents MEV sniping attacks by enforcing time locks on positions and redistributing fees accrued in the initial block to legitimate liquidity providers. /// @dev Positions are time-locked, and fees accrued in the first block after position creation are redistributed.