example-portal-fast-withdrawal/evm/contracts/interfaces/IWETH.sol

11 lines
260 B
Solidity
Raw Normal View History

2022-10-11 11:16:07 -07:00
// contracts/Bridge.sol
// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function deposit() external payable;
function withdraw(uint amount) external;
}