forked from DecentralizedClimateFoundation/DCIPs
10 lines
233 B
Solidity
10 lines
233 B
Solidity
|
// SPDX-License-Identifier: CC0-1.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;
|
||
|
}
|