# Error Explanation

#### Type11: 'Input amount is invalid',

* Check the length of the input number, Larix only recognizes 6 digits after the decimal point.
* Check if there are 2 decimal digits in the input number.

#### Type20: 'Insufficient liquidity available',

* The amount borrowed/withdraw is larger than the liquidity of the pool.

#### Type23: 'Withdraw amount too small,

* The input number needs to be larger than 0.000001.

#### Type24: 'Withdraw amount too large',

* The withdraw/repay amount is larger than the deposit amount/borrow amount.

#### Type26: 'Borrow amount too large for deposited collateral amount',

* More collateral is needed to borrow the input amount.
* Borrow amount too large for current collateral.

#### Type27: 'Repay amount too small to transfer liquidity',

* The input number needs to be larger than 0.000001.

#### Type28: 'Liquidation amount too small to receive collateral',

* For example, Ben deposit 2 BTC (BTC price: 50,000) on Larix and borrow 10,000 USDT, which trigger the liquidation process. Alice liquidated 0.1USDT of Ben‘s account, but 0.1 USDT is still less than 0.000001 BTC(smallest unit of BTC). Therefore, although Alice does liquidation for Ben’s account, so she cannot get Ben’s collateral.

#### Type31: 'Borrow limit exceeded',

* The amount typed in is larger than the borrowing limit, try a smaller amount.

#### Type32: 'Obligation owner is invalid',

* Only the obligation owner can operate the position.

#### Type33: 'Obligation deposits are empty ',

* Need to open the collateral button to continue.

#### Type34: 'Obligation borrows are empty',

* There isn’t any borrow asset.

#### Type37: 'Invalid obligation collateral',

* When taking out collateral from Obligation, try to retrieve the collateral corresponding to a Reserve that has not been mortgaged.

#### Type38: 'Invalid obligation liquidity',

* Don’t repay an unborrowed reserve fund

#### Type39: 'Obligation collateral is empty',

* The collateral needs to be opened before borrowing assets.

#### Type40: 'Obligation liquidity is empty',

* The collateral button needs to be opened to get obligation liquidity.
* The borrow assets meet the borrowing limit.

#### Type56:'Deposit amount too large for account balance',

* The deposit amount is larger than the account balance.

#### Type57: 'Withdraw amount too large for deposit balance',

* Withdraw amount is larger than the deposit balance.

#### Type58:'Withdraw amount too large for deposit balance',

* Withdraw amount is larger than deposit balance'

#### Type59: 'Repay amount too large for borrow amount',

* The repay amount is larger than the borrow amount.

#### Type60: 'Deposit is now paused',

* The deposit service for this token is now paused.

#### Type61: 'Borrow is now paused',

* The borrowing service for this token is now paused.

#### Type62: 'Liquidation is now paused',

* The liquidation service is now paused.

#### Type63: 'Cannot withdraw all deposits"',

* Please check if the borrow assets are fully repaid.
* All deposits can be withdrawn after borrow assets are fully repaid.


---

# 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.projectlarix.com/faq-1/error-explanation.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.
