mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
22 lines
621 B
Solidity
22 lines
621 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.7.6;
|
|
|
|
contract Events {
|
|
event LogSubmitProtection(
|
|
address indexed dsa,
|
|
address indexed action,
|
|
uint256 wantedHealthFactor,
|
|
uint256 minimumHealthFactor,
|
|
bool isPermanent
|
|
);
|
|
event LogUpdateProtection(
|
|
address indexed dsa,
|
|
address indexed action,
|
|
uint256 wantedHealthFactor,
|
|
uint256 minimumHealthFactor,
|
|
bool isPermanent
|
|
);
|
|
event LogCancelProtection(address indexed dsa, address indexed action);
|
|
event LogCancelAndRevoke(address indexed dsa, address indexed action);
|
|
}
|