dsa-connectors/contracts/mainnet/connectors/gelato/aave-services/protection/events.sol
2021-09-23 17:05:33 +02:00

21 lines
620 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);
}