forked from mico/idle_moloch
11 lines
249 B
Solidity
11 lines
249 B
Solidity
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
pragma solidity >=0.5.0;
|
|
|
|
interface IWETH {
|
|
function deposit() external payable;
|
|
|
|
function transfer(address to, uint256 value) external returns (bool);
|
|
|
|
function withdraw(uint256) external;
|
|
}
|