dsa-connectors/contracts/mainnet/connectors/b.protocol/liquity/events.sol
2022-03-22 20:54:40 +05:30

23 lines
501 B
Solidity

//SPDX-License-Identifier: MIT
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
);
}