Documentation Index
Fetch the complete documentation index at: https://v2-docs.exponent.finance/llms.txt
Use this file to discover all available pages before exploring further.
Exponent Strategy Vaults are onchain, policy-gated managed funds. Each vault pools capital and can deploy it across approved programs such as Exponent Core, Exponent rCLMM, Exponent Orderbook, Kamino Lend, Loopscale, and Titan. 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.
- 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
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 ofcreateVaultSyncTransaction, including mixed Loopscale flows.
Getting Started
Vault Creation Quickstart
Learn how to create a Strategy Vault through Exponent’s SDK.
Technical Concepts
A technical overview of the architecture behind Exponent Strategy Vaults.
VaultTransactionBuilder
Build multi-step manager flows and mixed Loopscale execution paths.