RemoveLiquidityIntent
struct RemoveLiquidityIntent {
/// @notice The address that owns the LP tokens and submits the intent.
address owner;
/// @notice The identifier of the pool from which liquidity should be removed.
PoolId poolId;
/// @notice Amount of LP tokens to burn for withdrawal.
uint256 lpTokenAmount;
/// @notice Arbitrary user-provided salt to make the intent hash unique.
bytes32 salt;
}Last updated
Was this helpful?