> For the complete documentation index, see [llms.txt](https://docs-v4.venus.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v4.venus.io/technical-reference/reference-fixed-rate-vaults.md).

# Fixed Term Vaults

Solidity API reference for the Fixed Term Vault system, generated from NatSpec.

The system has three singleton contracts, one vault implementation contract (cloned per loan by the controller), and one abstract base:

| Contract                                                                                                           | Description                                                                                                                                                                                 |
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [InstitutionalVaultController](/technical-reference/reference-fixed-rate-vaults/institutional-vault-controller.md) | Factory and governance proxy. Deploys vault clones, maintains the registry, and proxies all ACM-gated lifecycle calls.                                                                      |
| [InstitutionalLoanVault](/technical-reference/reference-fixed-rate-vaults/institutional-loan-vault.md)             | Core execution contract for a single loan. Holds collateral and supply assets, enforces the state machine, and exposes ERC-4626 supplier and institution-side entry points.                 |
| [LiquidationAdapter](/technical-reference/reference-fixed-rate-vaults/liquidation-adapter.md)                      | The sole address permitted to call `vault.liquidate()`. Manages liquidator/settler whitelists, enforces the close factor, and splits seized collateral between the caller and the protocol. |
| [InstitutionPositionToken](/technical-reference/reference-fixed-rate-vaults/institution-position-token.md)         | Singleton ERC-721. One token per vault; the holder controls all institution-side operations on that vault.                                                                                  |
| [BaseVault](/technical-reference/reference-fixed-rate-vaults/base-vault.md)                                        | Abstract base inherited by `InstitutionalLoanVault`. Provides shared ERC-4626 mechanics, fundraising, interest computation, settlement waterfall, and the pause system.                     |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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-v4.venus.io/technical-reference/reference-fixed-rate-vaults.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.
