lib_sol8->lib_uniswap

This commit is contained in:
7400
2023-11-05 20:00:59 -08:00
parent 779c180fad
commit 3522c9b59b
41 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
// SPDX-License-Identifier: GPL-2.0-or-later
// pragma solidity =0.7.6;
pragma solidity >=0.8.0;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
/// @title Interface for WETH9
interface IWETH9 is IERC20 {
/// @notice Deposit ether to get wrapped ether
function deposit() external payable;
/// @notice Withdraw wrapped ether to get ether
function withdraw(uint256) external;
}