mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
11 lines
248 B
Solidity
11 lines
248 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.21;
|
|
|
|
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
|
|
|
interface IWETH9 is IERC20 {
|
|
function deposit() external payable;
|
|
|
|
function withdraw(uint256 wad) external;
|
|
}
|