> For the complete documentation index, see [llms.txt](https://docs.ensuro.co/ensuro-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ensuro.co/ensuro-docs/smart-contracts/asset-management.md).

# Asset Management

The [Reserve](/ensuro-docs/smart-contracts/reserves.md) contracts hold assets that can be invested to get additional returns. The investment strategy is implemented by [IAssetManager](/ensuro-docs/smart-contracts/contracts/iassetmanager.md) contracts that are plugged into the reserve contracts and execute different investments, always prioritizing safety and liquidity.

So far, all the strategies involve keeping some funds liquid (as USDC) in the reserve contract and investing the remaining funds. The logic (implemented in the [LiquidityThresholdAssetManager](/ensuro-docs/smart-contracts/contracts/iassetmanager/liquiditythresholdassetmanager.md) abstract contract) uses parametrized thresholds to decide when to invest some liquid funds into the specific investment strategy or when to de-invest funds and leave them liquid in the reserve contract.&#x20;

It is important to mention that we always choose **highly liquid** investment strategies, so this movement of funds between funds liquid in the reserve and funds invested in other protocols is not driven by liquidity needs, but instead to **avoid the gas costs** we would have if we had 100% of the funds invested.

Each of the reserves can have a different asset management strategy, or not have one, in that case, 100% of the funds are liquid in the contract.&#x20;

In June 2024 we implemented a [MultiStrategyERC4626](/ensuro-docs/smart-contracts/contracts/extensions/multistrategyerc4626.md) (MSV), a vault contract that diversifies the funds into different protocols, like AAVEv3, CompoundV3, and Mountain Protocol (USDM). Through the [ERC4626AssetManager](/ensuro-docs/smart-contracts/contracts/iassetmanager/erc4626assetmanager.md), most of the reserves deploy funds into the MSV, getting shares of the vault. The funds, invested in the different protocols accrue yields that increase the value of the vault and, thus the values of the shares. This single MSV allows us to have a diversified investment strategy without having to fragment the liquidity into different contracts.


---

# 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.ensuro.co/ensuro-docs/smart-contracts/asset-management.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.
