mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			374 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			374 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
//SPDX-License-Identifier: MIT
 | 
						|
pragma solidity ^0.7.0;
 | 
						|
 | 
						|
interface IInstaLite {
 | 
						|
 | 
						|
	function supplyEth(address to_) external payable returns (uint256);
 | 
						|
 | 
						|
	function supply(
 | 
						|
		address token_,
 | 
						|
		uint256 amount_,
 | 
						|
		address to_
 | 
						|
	) external returns (uint256);
 | 
						|
 | 
						|
	function withdraw(uint256 amount_, address to_) external returns (uint256);
 | 
						|
 | 
						|
	function deleverage(uint amt_) external;
 | 
						|
 | 
						|
}
 |