Skip to content

Commit 5a2da37

Browse files
authored
add missing events to IWETH (#63)
1 parent eff3062 commit 5a2da37

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/interfaces/token/IWETH.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ pragma solidity ^0.8.0;
55
import "IERC20/IERC20.sol";
66

77
interface IWETH is IERC20 {
8+
event Deposit(address indexed dst, uint amount);
9+
event Withdrawal(address indexed src, uint amount);
10+
811
function deposit() external payable;
912
function withdraw(uint256 amount) external;
1013
}

0 commit comments

Comments
 (0)