aave-protocol-v2/contracts/interfaces/IWETHGateway.sol
2020-10-28 15:41:31 +01:00

15 lines
329 B
Solidity

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.8;
interface IWETHGateway {
function depositETH(address onBehalfOf, uint16 referralCode) external payable;
function withdrawETH(uint256 amount) external;
function repayETH(
uint256 amount,
uint256 rateMode,
address onBehalfOf
) external payable;
}