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
15 changes: 15 additions & 0 deletions src/onchain/TestArbitrage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,21 @@ contract TestArbitrage is IFlashLoanRecipient, ReentrancyGuard, Ownable, Pausabl
/// @dev Adds security delay for emergency functions
uint256 public emergencyUnlockTime;

/// @notice Profit recipient address (can be different from owner)
/// @dev Allows profit distribution to different address
address public profitRecipient;

//////////////////////////////////////////////////////////////
// EVENTS //
//////////////////////////////////////////////////////////////

/// @notice Emitted when contract configuration is updated
/// @param parameter Name of the parameter changed
/// @param oldValue Previous value
/// @param newValue New value
/// @param changedBy Address that made the change
event ConfigurationUpdated(string parameter, uint256 oldValue, uint256 newValue, address changedBy);

//////////////////////////////////////////////////////////////
// CONSTRUCTOR //
//////////////////////////////////////////////////////////////
Expand Down
Loading