From c3628047c4bee64df31d678aad2cfbc4c2ddf3e6 Mon Sep 17 00:00:00 2001 From: Agustin Velez Date: Sat, 5 Oct 2024 14:57:18 -0300 Subject: [PATCH] add missing events to IWETH --- 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; }