8 lines
227 B
Solidity
8 lines
227 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.8.20;
|
||
|
|
||
|
interface IWETH {
|
||
|
function deposit() external payable;
|
||
|
function transfer(address to, uint value) external returns (bool);
|
||
|
function withdraw(uint) external;
|
||
|
}
|