Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/LiquidityManagerV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,18 @@ contract LiquidityManagerV2 is Ownable, ReentrancyGuard, Pausable {
/// @notice Protocol fee recipient
address public protocolFeeRecipient;

/// @notice Protocol fee (in basis points, e.g., 100 = 1%)
uint256 public protocolFee = 50; // 0.5%

/// @notice Default liquidity threshold (20 USDC)
uint256 public defaultLiquidityThreshold = 20 * 1e6;

/// @notice Default vesting duration (8 months)
uint256 public defaultVestingDuration = 8 * 30 days;

/// @notice Emergency withdrawal delay
uint256 public emergencyWithdrawDelay = 7 days;

////////////////////
// Constructor //
////////////////////
Expand Down
Loading