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

# Vault Initialization Guide

> Get from zero to a fully operational vault

This guide helps you get from zero to a fully operational vault. There are two paths depending on your needs.

## Choose Your Path

|                             | UI Path                                                       | SDK Path        |
| --------------------------- | ------------------------------------------------------------- | --------------- |
| **Best for**                | MPC Wallets requiring browser experience (admin actions only) | Everything else |
| **Vault creation**          | Yes                                                           | Yes             |
| **Config updates**          | Yes                                                           | Yes             |
| **Metadata setup**          | Yes                                                           | Yes             |
| **Strategy initialization** | No — requires scripts                                         | Yes             |
| **Fund allocation**         | No — requires scripts                                         | Yes             |

<Tip>
  **Recommendation**: Use the **UI** for vault creation and config management, then use the **SDK + protocol-specific scripts** for strategy initialization and fund allocation. Most vault owners use both.
</Tip>

## Common Prerequisites

Regardless of which path you choose, you'll need:

1. **A Solana wallet** with sufficient SOL (\~0.15 SOL for vault creation + ongoing transaction fees)
2. **An RPC endpoint** — a reliable Solana RPC provider (e.g., Helius, Triton, QuickNode)
3. **Admin and manager keypairs** — two separate Solana keypairs for role separation
4. **A clear plan for your vault** — which asset, which strategies, target fees

<CardGroup cols={2}>
  <Card title="Via UI" icon="window" href="/vault-owners/initialization/via-ui">
    No-code vault creation
  </Card>

  <Card title="Via SDK" icon="code" href="/vault-owners/initialization/prerequisites">
    Full programmatic control
  </Card>
</CardGroup>
