mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
22 lines
470 B
Solidity
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
|
|
);
|
|
} |