mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
d7a58e88ff
ARB: deploy protocols
8 lines
241 B
Solidity
8 lines
241 B
Solidity
// SPDX-License-Identifier: BUSL-1.1
|
|
pragma solidity 0.8.21;
|
|
|
|
abstract contract Events {
|
|
/// @notice emitted when borrow magnifier is updated at vault
|
|
event LogUpdateBorrowRateMagnifier(uint256 oldMagnifier, uint256 newMagnifier);
|
|
}
|