ICEth

Git Source

Functions

accrueInterest

function accrueInterest() external returns (uint256);

borrowRate

function borrowRate() external returns (uint256);

borrowIndex

function borrowIndex() external returns (uint256);

borrowBalanceStored

function borrowBalanceStored(address) external returns (uint256);

mint

function mint() external payable;

exchangeRateCurrent

function exchangeRateCurrent() external returns (uint256);

exchangeRateStored

function exchangeRateStored() external view returns (uint256);

supplyRatePerBlock

function supplyRatePerBlock() external returns (uint256);

redeem

function redeem(uint256) external returns (uint256);

redeemUnderlying

function redeemUnderlying(uint256) external returns (uint256);

approve

function approve(address spender, uint256 amount) external returns (bool);

transferFrom

function transferFrom(address, address, uint256) external returns (bool);

transfer

function transfer(address dst, uint256 amount) external returns (bool);

balanceOf

function balanceOf(address) external returns (uint256);

balanceOfUnderlying

function balanceOfUnderlying(address account) external returns (uint256);

borrow

function borrow(uint256) external returns (uint256);

repayBorrow

function repayBorrow() external payable;

borrowBalanceCurrent

function borrowBalanceCurrent(address) external returns (uint256);

borrowRatePerBlock

function borrowRatePerBlock() external view returns (uint256);