> ## Documentation Index
> Fetch the complete documentation index at: https://docs.exponent.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# High-level Overview

> A high-level technical introduction to Exponent Strategy Vaults

***

Exponent Strategy Vaults are onchain, policy-gated managed funds. Each vault pools capital and can deploy it across approved programs such as [Exponent Core](/developer-core/overview), [Exponent rCLMM](/developer-clmm/overview), [Exponent Orderbook](/developer-orderbook/overview), [Kamino Lend](https://kamino.com), [Loopscale](https://docs.loopscale.com/introduction/overview), and [Titan](https://titan.exchange).

Users deposit tokens and receive LP tokens proportional to their share of the Strategy Vault AUM. The vault's manager deploys capital into yield strategies through policy-gated execution. Most integrations go through `createVaultSyncTransaction`, while Loopscale flows start from `LoopscaleClient` responses or `VaultTransactionBuilder`.

```text theme={null}
Users → [Deposit Tokens] → Vault → [Policies] → Strategy Positions (Core, Orderbook, CLMM, Kamino, Loopscale, Titan)
```

Each vault maintains:

* **Token Entries** — accepted deposit tokens, each with its own escrow and price configuration
* **Policies** — Squads-level constraints that gate every strategy interaction
* **AUM** — total assets under management (base liquidity + position valuations)
* **Strategy Positions** — tracked allocations to external protocols
* **Withdrawal Queue** — pending LP redemptions waiting to be filled and executed

Access to administrative operations is controlled by the [Vault Roles](/developer-strategy-vaults/roles) (Manager, Curator, Allocator, Sentinel).

## On-Chain Program

| Network        | Program ID                                    |
| -------------- | --------------------------------------------- |
| Solana Mainnet | `sVau1tXvayVWfotzm9Ahcv2qfnnfRWttt78BCnNC6dD` |

## SDK surfaces

The Strategy Vaults SDK exposes two main manager-side entry points:

* **`ExponentVault`** — Loads vault state and provides instruction builders for deposits, withdrawals, governance, and direct strategy operations.
* **`VaultTransactionBuilder`** — Orchestrates multi-step strategy execution on top of `createVaultSyncTransaction`, including mixed Loopscale flows.

## Getting Started

<CardGroup cols={2}>
  <Card title="Vault Creation Quickstart" href="/developer-strategy-vaults/vault-creation-101">
    Learn how to create a Strategy Vault through Exponent's SDK.
  </Card>

  <Card title="Technical Concepts" href="/developer-strategy-vaults/concepts">
    A technical overview of the architecture behind Exponent Strategy Vaults.
  </Card>

  <Card title="VaultTransactionBuilder" href="/developer-strategy-vaults/vault-transaction-builder">
    Build multi-step manager flows and mixed Loopscale execution paths.
  </Card>
</CardGroup>
