mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
18 lines
339 B
Solidity
18 lines
339 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.19;
|
|
|
|
contract Events {
|
|
event LogDeposit(
|
|
uint256 eETHAmount,
|
|
uint256 weETHAmount,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
event LogWithdraw(
|
|
uint256 weETHAmount,
|
|
uint256 eETHAmount,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
}
|