mirror of
				https://github.com/Instadapp/aave-protocol-v2.git
				synced 2024-07-29 21:47:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			459 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			459 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| // SPDX-License-Identifier: agpl-3.0
 | |
| pragma solidity 0.6.12;
 | |
| 
 | |
| interface IWETHGateway {
 | |
|   function depositETH(address onBehalfOf, uint16 referralCode) external payable;
 | |
| 
 | |
|   function withdrawETH(uint256 amount, address onBehalfOf) external;
 | |
| 
 | |
|   function repayETH(
 | |
|     uint256 amount,
 | |
|     uint256 rateMode,
 | |
|     address onBehalfOf
 | |
|   ) external payable;
 | |
| 
 | |
|   function borrowETH(
 | |
|     uint256 amount,
 | |
|     uint256 interesRateMode,
 | |
|     uint16 referralCode
 | |
|   ) external;
 | |
| }
 | 
