WETH9 Functions receive() fallback() deposit() withdraw(wad) totalSupply() approve(guy, wad) transfer(dst, wad) transferFrom(src, dst, wad) Events Approval(src, guy, wad) Transfer(src, dst, wad) Deposit(dst, wad) Withdrawal(src, wad) receive() external fallback() external deposit() public withdraw(uint256 wad) public totalSupply() → uint256 public approve(address guy, uint256 wad) → bool public transfer(address dst, uint256 wad) → bool public transferFrom(address src, address dst, uint256 wad) → bool public Approval(address src, address guy, uint256 wad) event Transfer(address src, address dst, uint256 wad) event Deposit(address dst, uint256 wad) event Withdrawal(address src, uint256 wad) event ← Voting Upgrader Withdrawable →