Loan Management
Loan Management Module
LoanManagementModule.sol
is used for creating claims and repaying them.
Transactional Functions
CreateClaim
This function executes CreateClaim
in LTVProtectBlueprint.sol
function createClaim(
bytes calldata claimData_,
address user_,
uint256 loanId_,
string memory lenderName_,
string memory pointer,
uint256 protectionId_
)
Process:
Forwards the call to
CreateClaim
inLTVProtectBlueprint.sol
Returns execution result
RepayClaim
This function executes RepayClaim
in LTVProtectBlueprint.sol
function repayClaim(address user_, uint256 loanId_, address paymentToken_, string memory pointer_)
Process:
Forwards the call to
RepayClaim
inLTVProtectBlueprint.sol
Returns execution result
Last updated