# Overview

Alpha Vaults is a binary smart contract system for decentralised liquidity management. It creates liquidity vaults for any Uniswap V3 pool, and contains everything that's needed to manage the liquidity within a pool.

The core contracts define the logic for vault creation, the infrastructure to manage deposits and withdrawals, and the strategy to manage liquidity.

Periphery contracts interact with one or more Core contracts but are not part of the core. They contain methods to provide more information on a vault's positions, on the fees earned by the vault; and the logic for verifying the vault's manager.

The contracts are found in the following Github repo:

{% embed url="<https://github.com/charmfinance/alpha-vaults-v2-contracts/tree/main/contracts>" %}

{% hint style="danger" %}
The contracts only support tokens with standard ERC-20 implementations.  It is not compatible with non-standard ERC-20 implementations such as deflationary or rebase tokens, and incompatible with other token standards such as ERC777.

You may encounter unexpected behaviours if you create a vault for these types of tokens.
{% endhint %}


---

# 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://learn.charm.fi/charm/technical-references/overview.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.
