mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.0;
 | |
| pragma experimental ABIEncoderV2;
 | |
| 
 | |
| interface IMorphoCore {
 | |
| 	function supply(
 | |
| 		address _poolTokenAddress,
 | |
| 		address _onBehalf,
 | |
| 		uint256 _amount
 | |
| 	) external;
 | |
| 
 | |
| 	function supply(
 | |
| 		address _poolToken,
 | |
| 		address _onBehalf,
 | |
| 		uint256 _amount,
 | |
| 		uint256 _maxGasForMatching
 | |
| 	) external;
 | |
| 
 | |
| 	function borrow(address _poolTokenAddress, uint256 _amount) external;
 | |
| 
 | |
| 	function borrow(
 | |
| 		address _poolToken,
 | |
| 		uint256 _amount,
 | |
| 		uint256 _maxGasForMatching
 | |
| 	) external;
 | |
| 
 | |
| 	function withdraw(address _poolTokenAddress, uint256 _amount) external;
 | |
| 
 | |
| 	function repay(
 | |
| 		address _poolTokenAddress,
 | |
| 		address _onBehalf,
 | |
| 		uint256 _amount
 | |
| 	) external;
 | |
| }
 | |
| 
 | |
| interface IMorphoAaveLens {
 | |
| 	function getCurrentBorrowBalanceInOf(address _poolToken, address _user)
 | |
| 		external
 | |
| 		view
 | |
| 		returns (
 | |
| 			uint256 balanceInP2P,
 | |
| 			uint256 balanceOnPool,
 | |
| 			uint256 totalBalance
 | |
| 		);
 | |
| 
 | |
| 	function getCurrentSupplyBalanceInOf(address _poolToken, address _user)
 | |
| 		external
 | |
| 		view
 | |
| 		returns (
 | |
| 			uint256 balanceInP2P,
 | |
| 			uint256 balanceOnPool,
 | |
| 			uint256 totalBalance
 | |
| 		);
 | |
| }
 | 
