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
5 changes: 5 additions & 0 deletions src/onchain/TestArbitrage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@ contract TestArbitrage is IFlashLoanRecipient, ReentrancyGuard, Ownable, Pausabl
/// @param changedBy Address that made the change
event ConfigurationUpdated(string parameter, uint256 oldValue, uint256 newValue, address changedBy);

/// @notice Emitted when profit is distributed
/// @param recipient Address receiving profit
/// @param amount Profit amount
/// @param token Token address
event ProfitDistributed(address indexed recipient, uint256 amount, address indexed token);
//////////////////////////////////////////////////////////////
// CONSTRUCTOR //
//////////////////////////////////////////////////////////////
Expand Down
Loading