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

20 lines
387 B
Solidity
Raw Normal View History

2022-03-22 15:24:40 +00:00
//SPDX-License-Identifier: MIT
2021-12-30 10:42:44 +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 10:42:44 +00:00
event LogClaimRewards(address token, uint256 amount);
event LogSwap(
address from,
address to,
uint256 amountIn,
uint256 amountOut
);
}