mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
21 lines
378 B
Solidity
21 lines
378 B
Solidity
pragma solidity ^0.7.0;
|
|
|
|
contract Events {
|
|
|
|
event LogDeposit(
|
|
address indexed universeVault,
|
|
uint256 amountA,
|
|
uint256 amountB,
|
|
uint256 share0,
|
|
uint256 share1
|
|
);
|
|
|
|
event LogWithdraw(
|
|
address indexed universeVault,
|
|
uint256 amountA,
|
|
uint256 amountB,
|
|
uint256 share0,
|
|
uint256 share1
|
|
);
|
|
}
|