Skip to content

Commit

Permalink
add missing events to IWETH (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgusVelez5 authored Oct 5, 2024
1 parent eff3062 commit 5a2da37
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/interfaces/token/IWETH.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 5a2da37

Please sign in to comment.