mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
14 lines
319 B
Solidity
14 lines
319 B
Solidity
|
pragma solidity ^0.7.6;
|
||
|
|
||
|
contract Events {
|
||
|
event LogDeposit(address token, uint256 amount, address path);
|
||
|
event LogWithdraw(address token, uint256 amount, address path);
|
||
|
event LogClaimRewards(address token, uint256 amount);
|
||
|
event LogSwap(
|
||
|
address from,
|
||
|
address to,
|
||
|
uint256 amountIn,
|
||
|
uint256 amountOut
|
||
|
);
|
||
|
}
|