# How Strategies are Managed

### **1. Creating a Strategy**

* Strategies are created through **governance processes**.
* Each strategy has:
  * Its own **implementation address**.
  * Compatibility with base assets.
  * A **witness type** to ensure valid interactions with the vault.

**Base Asset Compatibility**:

* Strategies must support the same base asset as their associated vault.\
  \&#xNAN;*Example*: A strategy linked to a USDC vault must also handle USDC.

***

### 2. Issuing Shares

* When base assets are deposited, the strategy issues shares proportional to the deposit.
* These shares are sent back to the vault, representing the vault’s ownership of the assets in the strategy.

**Equation for Issuing Shares:**

$$
\text{shares\_issued} = \frac{\text{amount\_deposited} \times \text{total\_shares}}{\text{total\_assets}}
$$

***

### 3. Burning Shares

* When assets are withdrawn, the strategy burns the corresponding shares.
* The amount of base assets returned is proportional to the number of shares burned.

**Equation for Burning Shares:**

$$
\text{amount\_withdrawn} = \frac{\text{shares\_burned} \times \text{total\_assets}}{\text{total\_shares}}
$$


---

# 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.canopyhub.xyz/canopys-four-layers/strategy-layer/how-strategies-are-managed.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.
