mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
11 lines
331 B
Solidity
11 lines
331 B
Solidity
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
pragma solidity 0.8.21;
|
||
|
|
||
|
abstract contract Events {
|
||
|
/// @notice Emitted when magnifier is updated
|
||
|
event LogUpdateMagnifier(address indexed vault, uint256 newMagnifier);
|
||
|
|
||
|
/// @notice Emitted when rewards are started
|
||
|
event LogRewardsStarted(uint256 startTime, uint256 endTime);
|
||
|
}
|