dsa-connectors/contracts/polygon/connectors/gelato/aave-services/protection/events.sol
2021-08-21 13:11:21 +02:00

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);
}