dsa-connectors/contracts/mainnet/connectors/b.protocol/liquity/events.sol
yaron velner ed791eba47 b.liquity
2021-08-23 13:06:49 +03:00

22 lines
470 B
Solidity

pragma solidity ^0.7.6;
contract Events {
/* Stability Pool */
event LogStabilityDeposit(
address indexed borrower,
uint amount,
uint lqtyGain,
uint getDepositId,
uint setDepositId,
uint setLqtyGainId
);
event LogStabilityWithdraw(
address indexed borrower,
uint numShares,
uint lqtyGain,
uint getWithdrawId,
uint setWithdrawId,
uint setLqtyGainId
);
}