From 5a2da37b33544442211b1bbfe7a720e8e1b1228f Mon Sep 17 00:00:00 2001 From: Agustin Velez Date: Sat, 5 Oct 2024 17:38:30 -0300 Subject: [PATCH] add missing events to IWETH (#63) --- src/interfaces/token/IWETH.sol | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/interfaces/token/IWETH.sol b/src/interfaces/token/IWETH.sol index 51b8530..4cf79b7 100644 --- a/src/interfaces/token/IWETH.sol +++ b/src/interfaces/token/IWETH.sol @@ -5,6 +5,9 @@ pragma solidity ^0.8.0; import "IERC20/IERC20.sol"; interface IWETH is IERC20 { + event Deposit(address indexed dst, uint amount); + event Withdrawal(address indexed src, uint amount); + function deposit() external payable; function withdraw(uint256 amount) external; }