ghost-dao-contracts/dependencies/@uniswap-v2-periphery-1.1.0-beta.0/contracts/interfaces/IWETH.sol
2025-10-07 14:20:56 +03:00

8 lines
196 B
Solidity

pragma solidity >=0.5.0;
interface IWETH {
function deposit() external payable;
function transfer(address to, uint value) external returns (bool);
function withdraw(uint) external;
}