dsa-connectors/contracts/polygon/connectors/mstable/events.sol

25 lines
445 B
Solidity
Raw Normal View History

2022-03-22 16:17:41 +00:00
//SPDX-License-Identifier: MIT
2021-12-29 10:37:38 +00:00
pragma solidity ^0.7.6;
contract Events {
2022-01-27 12:34:47 +00:00
event LogDeposit(address token, uint256 amount, address path, bool stake);
event LogWithdraw(
address token,
uint256 amount,
address path,
bool unstake
);
2021-12-30 05:05:31 +00:00
event LogClaimRewards(
2021-12-29 10:37:38 +00:00
address token,
uint256 amount,
address platformToken,
uint256 platformAmount
);
2021-12-30 09:22:24 +00:00
event LogSwap(
address from,
address to,
uint256 amountIn,
uint256 amountOut
);
2021-12-29 10:37:38 +00:00
}