// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @title IWETH * @notice Minimal WETH interface for bridge contracts */ interface IWETH { function deposit() external payable; function withdraw(uint256) external; function transfer(address to, uint256 value) external returns (bool); }