Skip to content

Latest commit

 

History

History
260 lines (239 loc) · 8.64 KB

ILoanPool.md

File metadata and controls

260 lines (239 loc) · 8.64 KB

ILoanPool.sol

View Source: contracts/interfaces/ILoanPool.sol

ILoanPool contract

Functions


tokenPrice

function tokenPrice() external view
returns(price uint256)
Source Code
function tokenPrice() external view returns (uint256 price);

borrowInterestRate

function borrowInterestRate() external view
returns(uint256)
Source Code
function borrowInterestRate() external view returns (uint256);

totalAssetSupply

function totalAssetSupply() external view
returns(uint256)
Source Code
function totalAssetSupply() external view returns (uint256);

Contracts