dsa-connectors-2.0/contracts/mainnet/connectors/weeth/events.sol

18 lines
339 B
Solidity
Raw Normal View History

2024-04-15 06:07:36 +00:00
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
contract Events {
2024-04-15 09:34:15 +00:00
event LogDeposit(
uint256 eETHAmount,
uint256 weETHAmount,
uint256 getId,
uint256 setId
);
event LogWithdraw(
uint256 weETHAmount,
uint256 eETHAmount,
uint256 getId,
uint256 setId
);
2024-04-15 08:41:37 +00:00
}