Increase Collateral for ETH
async increaseLoanETHCollateral()
async increaseLoanETHCollateral()To increase the collateral for ETH loan so it will not get liquidated we should send:
The amount and loanContractAddress - you will get after a successful response from Single Loan
loanData:interface– is the already explained interface.walletAddress:string- is the address of the user
const response = await this.newBorrowingService.increaseLoanETHCollateral(
amount,
loanContractAddress,
loanData,
userAddress
)Last updated