Skip to content

Commit

Permalink
Update briefcase
Browse files Browse the repository at this point in the history
Changes:
M	src/protocols/v4-core/interfaces/IPoolManager.sol
  • Loading branch information
github-actions[bot] committed Feb 21, 2025
1 parent 2209278 commit b69d10e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/protocols/v4-core/interfaces/IPoolManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ interface IPoolManager is IProtocolFees, IERC6909Claims, IExtsload, IExttload {
/// @param hookData The data to pass through to the add/removeLiquidity hooks
/// @return callerDelta The balance delta of the caller of modifyLiquidity. This is the total of both principal, fee deltas, and hook deltas if applicable
/// @return feesAccrued The balance delta of the fees generated in the liquidity range. Returned for informational purposes
/// @dev Note that feesAccrued can be artificially inflated by a malicious actor and integrators should be careful using the value
/// For pools with a single liquidity position, actors can donate to themselves to inflate feeGrowthGlobal (and consequently feesAccrued)
/// atomically donating and collecting fees in the same unlockCallback may make the inflated value more extreme
function modifyLiquidity(PoolKey memory key, ModifyLiquidityParams memory params, bytes calldata hookData)
external
returns (BalanceDelta callerDelta, BalanceDelta feesAccrued);
Expand Down

0 comments on commit b69d10e

Please sign in to comment.