Files
smom-dbis-138/contracts/vendor/sushiswap-v2/interfaces/IWETH.sol

9 lines
232 B
Solidity

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;
interface IWETH {
function deposit() external payable;
function transfer(address to, uint value) external returns (bool);
function withdraw(uint) external;
}