mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.0;
 | |
| 
 | |
| interface CTokenInterface {
 | |
|     function mint(uint mintAmount) external returns (uint);
 | |
|     function redeem(uint redeemTokens) external returns (uint);
 | |
|     function borrow(uint borrowAmount) external returns (uint);
 | |
|     function repayBorrow(uint repayAmount) external returns (uint);
 | |
|     function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); // For ERC20
 | |
|     function liquidateBorrow(address borrower, uint repayAmount, address cTokenCollateral) external returns (uint);
 | |
| 
 | |
|     function borrowBalanceCurrent(address account) external returns (uint);
 | |
|     function redeemUnderlying(uint redeemAmount) external returns (uint);
 | |
|     function exchangeRateCurrent() external returns (uint);
 | |
| 
 | |
|     function balanceOf(address owner) external view returns (uint256 balance);
 | |
| }
 | |
| 
 | |
| interface CETHInterface {
 | |
|     function mint() external payable;
 | |
|     function repayBorrow() external payable;
 | |
|     function repayBorrowBehalf(address borrower) external payable;
 | |
|     function liquidateBorrow(address borrower, address cTokenCollateral) external payable;
 | |
| }
 | |
| 
 | |
| interface ComptrollerInterface {
 | |
|     function enterMarkets(address[] calldata cTokens) external returns (uint[] memory);
 | |
|     function exitMarket(address cTokenAddress) external returns (uint);
 | |
|     function getAssetsIn(address account) external view returns (address[] memory);
 | |
|     function getAccountLiquidity(address account) external view returns (uint, uint, uint);
 | |
|     function claimComp(address) external;
 | |
| }
 | |
| 
 | |
| interface CompoundMappingInterface {
 | |
|     function cTokenMapping(string calldata tokenId) external view returns (address);
 | |
|     function getMapping(string calldata tokenId) external view returns (address, address);
 | |
| } | 
