We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff3062 commit 5a2da37Copy full SHA for 5a2da37
src/interfaces/token/IWETH.sol
@@ -5,6 +5,9 @@ pragma solidity ^0.8.0;
5
import "IERC20/IERC20.sol";
6
7
interface IWETH is IERC20 {
8
+ event Deposit(address indexed dst, uint amount);
9
+ event Withdrawal(address indexed src, uint amount);
10
+
11
function deposit() external payable;
12
function withdraw(uint256 amount) external;
13
}
0 commit comments