Repay ERC20 Loan
async doERC20Repayment()
async doERC20Repayment()
Repaying ERC20 loan you should use:
The outstandingBalance and contractAddress information you will get after getting a successful response from Single Loan.
loan:interface
– is the loanData interface explained at Loan RequestwalletAddress:string
- is the address of the user.
const response = await this.newBorrowingService. doERC20Repayment(
loan.outstandingBalance, loan.creditLine.contractAddress,
loan, walletAddress
)
Last updated