dsa-connectors/contracts/mainnet/connectors/b.protocol/liquity/events.sol

22 lines
470 B
Solidity
Raw Normal View History

2021-08-23 10:06:49 +00:00
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
);
}