dsa-connectors-2.0/contracts/mainnet/connectors/weeth/events.sol
2024-04-15 14:11:37 +05:30

8 lines
263 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);
}