# Loan Lifecycle

All loans on the Protocol are structured to be secured bullet loans and interest is accrued linearly when a loan is outstanding. Principal and all accrued interest are to be paid in one payment and the NFT Collateral will be released from the custody of the loan smart contract when the loan expires. The ownership of the NFT Collateral will be returned to the borrower contingent upon all the obligations of the borrower are met.

## LTV

### Current LTV

Current LTV is an important metrics that is measured for each loan throughout its lifecycle:

$$
Current LTV = (Principal + Accrued Interest) ÷ CollateralValue
$$

### New Loan LTV Limit

The LTV limit for a new loan is derived using the initial LTV limit set for the loan offer by the lender and the rollover LTV buffer set by the protocol:

$$
New Loan MaxLTV = Initial LTV Limit \* (1-RollOverLTVBuffer)
$$

This buffer is only discounted from the max LTV limit for a newly initiated loan. It does not apply to the max LTV for loan rollover.

## Events

<table><thead><tr><th width="199">Time</th><th>Event</th></tr></thead><tbody><tr><td>T - 24H</td><td>Notifications that loan will expire in 24 hours</td></tr><tr><td>T - 2H</td><td>Notifications that loan will expire in 2 hours</td></tr><tr><td>T</td><td>Loan expires - notifications that loan has expired and if current LTV is greater than or equal to Loan Recall LTV, the loan is immediately liquidable by the lender</td></tr><tr><td>6 Months after loan became liquidable</td><td>NFT belongs to Pine protocol if no liquidation done on liquidable asset by the lender</td></tr></tbody></table>

### **Events of Loan Recall**

If the current LTV of the outstanding loan exceeds the Loan Recall LTV at any point of time, the lender is allowed to recall the loan. When a loan is recalled, the borrower will be given 24 hour to either repay the loan in full or to repay partially so that the current LTV is below the Variable LTV Limit. Loan Recall is only applicable to loans that are using the standard valuation from the Pine Pricer. In other words, if the loan was initiated from a pool that uses custom valuation, the lender cannot recall the loan within the loan term. This is to protect borrowers from valuation manipulation which will lead to malicious liquidation attempts of their loan positions.

### Roll-over

Borrowers can enter into a new term loan agreement prior to expiry of the original loan at the prevailing market offer such that the repayment can be postponed without defaulting the loan. The roll-over can only be done if the current LTV of the loan is below the maximum LTV Limit of the lending offer which the loan will be rolled over into. If the current LTV is greater than the maximum LTV of all available lending offers, then the borrower must make some payment to reduce the LTV before he/she can roll over the loan.

### Events of Default

A default happens when full repayment of the loan is not made by the borrower before or by expiry or the loan is not renewed successfully at expiry.

### **Events of Liquidation**

If the loan is not repaid the loan will become liquidable and the lender is given the right to liquidate the NFT Collateral after settling the liquidation charge. The ownership of the NFT Collateral will be transferred to the lender after successful liquidation. If the lender does not repossess the NFT Collateral 6 months after a loan becomes liquiable, ownership of the NFT Collateral will be permanently remained under the Protocol.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pine.loans/pine-protocol/loan-lifecycle.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
