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

15 lines
349 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;
interface IWETHGateway {
function depositETH(address onBehalfOf, uint16 referralCode) external payable;
2020-10-28 14:41:31 +00:00
function withdrawETH(uint256 amount, address onBehalfOf) external;
2020-10-28 14:41:31 +00:00
function repayETH(
uint256 amount,
uint256 rateMode,
address onBehalfOf
) external payable;
}