smart-contract/contracts/ProxyLogics/InstaCompound.sol

15 lines
905 B
Solidity
Raw Normal View History

2019-05-25 19:57:44 +00:00
pragma solidity ^0.5.0;
interface CTokenInterface {
function mint(uint mintAmount) external returns (uint); // For ERC20
function mint() external payable; // For ETH
function redeem(uint redeemTokens) external returns (uint);
function redeemUnderlying(uint redeemAmount) external returns (uint);
function borrow(uint borrowAmount) external returns (uint);
function repayBorrow(uint repayAmount) external returns (uint); // For ERC20
function repayBorrow() external payable; // For ETH
function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); // For ERC20
function repayBorrowBehalf(address borrower) external payable; // For ETH
function liquidateBorrow(address borrower, uint repayAmount, address cTokenCollateral) external returns (uint);
function liquidateBorrow(address borrower, address cTokenCollateral) external payable;
}