aave-protocol-v2/contracts/misc/interfaces/IWETHGateway.sol

26 lines
507 B
Solidity
Raw Normal View History

2020-10-28 14:41:31 +00:00
// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.8;
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
2020-10-28 14:41:31 +00:00
interface IWETHGateway {
function depositETH(
ILendingPool pool,
address onBehalfOf,
uint16 referralCode
) external payable;
2020-10-28 14:41:31 +00:00
function withdrawETH(
ILendingPool pool,
uint256 amount,
address onBehalfOf
) external;
2020-10-28 14:41:31 +00:00
function repayETH(
ILendingPool pool,
2020-10-28 14:41:31 +00:00
uint256 amount,
uint256 rateMode,
address onBehalfOf
) external payable;
}