ILoanManagerStorage

Git Source

Functions

asset

Gets the asset used for the protocol.

function asset() external view returns (address asset_);

Returns

unrealizedLosses

Gets the unrealized losses.

function unrealizedLosses() external view returns (uint128);

Returns

loanCounter

Gets the total number of loans.

function loanCounter() external view returns (uint16);

Returns

paymentCounter

Gets the total number of payments.

function paymentCounter() external view returns (uint24);

Returns

paymentWithEarliestDueDate

Gets the payment ID with the earliest due date.

function paymentWithEarliestDueDate() external view returns (uint24);

Returns

domainStart

Gets the start date of the domain.

function domainStart() external view returns (uint48);

Returns

domainEnd

Gets the end date of the domain.

function domainEnd() external view returns (uint48);

Returns

accountedInterest

Gets the accounted interest.

function accountedInterest() external view returns (uint112);

Returns

principalOut

Gets the total principal amount lent out.

function principalOut() external view returns (uint128);

Returns

issuanceRate

Gets the issuance rate.

function issuanceRate() external view returns (uint256);

Returns

paymentIdOf

Gets the payment ID of the given loan.

function paymentIdOf(uint16 loanId_) external view returns (uint24);

Parameters

Returns

Last updated