diff --git a/src/onchain/TestArbitrage.sol b/src/onchain/TestArbitrage.sol index 2afa76c..a74c0a0 100644 --- a/src/onchain/TestArbitrage.sol +++ b/src/onchain/TestArbitrage.sol @@ -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 // //////////////////////////////////////////////////////////////