FixedTermLoanManagerInitializer
\
function accountedInterest ()
view
returns (
uint112
);
Index
Name
Type
Internal Type
Description
0
uint112
uint112
\
function allowedSlippageFor (
address
)
view
returns (
uint256
);
Index
Name
Type
Internal Type
Description
0
``
address
address
Index
Name
Type
Internal Type
Description
0
uint256
uint256
\
Decodes the initialization arguments of a loan manager.
function decodeArguments (
bytes calldata_
)
pure
returns (
address poolManager_
);
Index
Name
Type
Internal Type
Description
0
calldata_
bytes
bytes
ABI encoded address of the pool manager.
Index
Name
Type
Internal Type
Description
0
poolManager_
address
address
Address of the pool manager.
\
function domainEnd ()
view
returns (
uint48
);
Index
Name
Type
Internal Type
Description
0
uint48
uint48
\
function domainStart ()
view
returns (
uint48
);
Index
Name
Type
Internal Type
Description
0
uint48
uint48
\
Encodes the initialization arguments of a loan manager.
function encodeArguments (
address poolManager_
)
pure
returns (
bytes calldata_
);
Index
Name
Type
Internal Type
Description
0
poolManager_
address
address
Address of the pool manager.
Index
Name
Type
Internal Type
Description
0
calldata_
bytes
bytes
ABI encoded address of the pool manager.
\
function fundsAsset ()
view
returns (
address
);
Index
Name
Type
Internal Type
Description
0
address
address
\
function issuanceRate ()
view
returns (
uint256
);
Index
Name
Type
Internal Type
Description
0
uint256
uint256
\
function liquidationInfo (
address
)
view
returns (
bool triggeredByGovernor ,
uint128 principal ,
uint120 interest ,
uint256 lateInterest ,
uint96 platformFees ,
address liquidator
);
Index
Name
Type
Internal Type
Description
0
``
address
address
Index
Name
Type
Internal Type
Description
0
triggeredByGovernor
bool
bool
1
principal
uint128
uint128
2
interest
uint120
uint120
3
lateInterest
uint256
uint256
4
platformFees
uint96
uint96
5
liquidator
address
address
\
function minRatioFor (
address
)
view
returns (
uint256
);
Index
Name
Type
Internal Type
Description
0
``
address
address
Index
Name
Type
Internal Type
Description
0
uint256
uint256
\
function paymentCounter ()
view
returns (
uint24
);
Index
Name
Type
Internal Type
Description
0
uint24
uint24
\
function paymentIdOf (
address
)
view
returns (
uint24
);
Index
Name
Type
Internal Type
Description
0
``
address
address
Index
Name
Type
Internal Type
Description
0
uint24
uint24
\
function payments (
uint256
)
view
returns (
uint24 platformManagementFeeRate ,
uint24 delegateManagementFeeRate ,
uint48 startDate ,
uint48 paymentDueDate ,
uint128 incomingNetInterest ,
uint128 refinanceInterest ,
uint256 issuanceRate
);
Index
Name
Type
Internal Type
Description
0
``
uint256
uint256
Index
Name
Type
Internal Type
Description
0
platformManagementFeeRate
uint24
uint24
1
delegateManagementFeeRate
uint24
uint24
2
startDate
uint48
uint48
3
paymentDueDate
uint48
uint48
4
incomingNetInterest
uint128
uint128
5
refinanceInterest
uint128
uint128
6
issuanceRate
uint256
uint256
\
paymentWithEarliestDueDate
function paymentWithEarliestDueDate ()
view
returns (
uint24
);
Index
Name
Type
Internal Type
Description
0
uint24
uint24
\
function poolManager ()
view
returns (
address
);
Index
Name
Type
Internal Type
Description
0
address
address
\
function principalOut ()
view
returns (
uint128
);
Index
Name
Type
Internal Type
Description
0
uint128
uint128
\
function sortedPayments (
uint256
)
view
returns (
uint24 previous ,
uint24 next ,
uint48 paymentDueDate
);
Index
Name
Type
Internal Type
Description
0
``
uint256
uint256
Index
Name
Type
Internal Type
Description
0
previous
uint24
uint24
1
next
uint24
uint24
2
paymentDueDate
uint48
uint48
\
function unrealizedLosses ()
view
returns (
uint128
);
Index
Name
Type
Internal Type
Description
0
uint128
uint128
\
Emitted when the loan manager is initialized.
event Initialized (
address poolManager_
);
Index
Name
Type
Internal Type
Description
0
poolManager_
address
address
Address of the associated pool manager.
\