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

# Managing Products

> Your portal home for managing account types, browsing the vault catalog, and tracking your integration.

Your portal home for managing account types, browsing the vault catalog, and tracking your integration.

## Dashboard

The dashboard is the first screen you see after signing in. It changes based on where you are in the setup journey.

**Before your first account type**, the dashboard shows a setup checklist. Complete each step in order: request your first vaults, create an account type, configure your SIWE domain, and review the integration guide. The checklist disappears once you finish.

**After setup**, the dashboard shows three metrics: total account types, pending flow plans, and total user accounts. A table lists your top 5 account types by account count with status indicators.

The quick start card stays visible at the top. It shows your publishable key, an npm install command, and a "Copy to LLM" button that exports your full SDK context. Use this to paste into an AI assistant when building your integration.

<Tip>
  The pending flow plans count on the dashboard links directly to the flow plans page. Check this regularly if you have auto-approve turned off.
</Tip>

## Catalog

The catalog shows every vault scored by Blend's risk vendors. Browse by vendor, filter by chain or risk tier, and request the vaults you want.

<Snippet file="snippets/philidor-context.mdx" />

### Vendor tabs

| Vendor       | What it covers              | How vaults are scored                                                                 |
| ------------ | --------------------------- | ------------------------------------------------------------------------------------- |
| **Philidor** | DeFi vault risk ratings     | Composite score 0-10 across asset quality, platform security, and governance controls |
| **Credora**  | Crypto credit ratings       | Institutional credit assessment for lending protocols                                 |
| **RWA.xyz**  | Tokenized real-world assets | Ratings for real-world asset vaults and structured products                           |

Switch between vendor tabs to see different vault categories. Each tab has its own filtering and search.

### Filtering and search

The Philidor tab supports filtering by chain, risk tier, and free-text search. Each vault card shows the score, chain, protocol name, and current APY. The risk tiers break down like this:

| Tier      | Score range | What it means                                  |
| --------- | ----------- | ---------------------------------------------- |
| **Prime** | 8.0 - 10.0  | Blue-chip protocols with strong governance     |
| **Core**  | 5.0 - 7.9   | Established protocols with solid track records |
| **Edge**  | 0.0 - 4.9   | Newer protocols or weaker controls             |

### Requesting vaults

Select up to 5 vaults at a time and click **Request**. Blend provisions on-chain infrastructure for each vault you request. Once activated, the vault appears in your organization's catalog and you can use it in account type allocations.

Vault requests go through a short approval window. You'll see the status on your catalog page.

## Account types

Account types are the products your users interact with. Each one ties together vault allocations, credentials, and flow plan settings.

### Settings

Every account type has these settings:

| Setting          | What it controls                                                                                      |
| ---------------- | ----------------------------------------------------------------------------------------------------- |
| **Slug**         | The `accountTypeId` used in SDK calls. Set at creation, can't be changed.                             |
| **Display name** | Human-readable name shown in the portal. Editable anytime.                                            |
| **Description**  | Internal notes about this account type. Editable anytime.                                             |
| **Auto-approve** | When on, flow plans execute without manual review.                                                    |
| **Paused**       | Blocks new deposits. SDK returns 423 for deposit attempts. Withdrawals still work. Toggle on and off. |

### Vault config lifecycle

When you change allocations on an account type, the new config goes through a pipeline before it goes live.

| State            | What's happening                                                                 | Terminal? |
| ---------------- | -------------------------------------------------------------------------------- | --------- |
| **No config**    | No allocations set. Account type can't accept deposits yet.                      | No        |
| **Pending**      | Allocation change submitted. Waiting for Blend to provision infrastructure.      | No        |
| **Provisioning** | Blend is setting up on-chain infrastructure for your vaults.                     | No        |
| **Ready**        | Infrastructure ready. 24-hour timelock countdown starts. Deploy when it expires. | No        |
| **Cancelled**    | Config discarded. Reverts to previous allocation.                                | Yes       |

Weight-only changes (same vaults, new percentages) skip Pending and Provisioning. They go straight to Ready with a 24-hour timelock.

<Note>
  Emergency bypass is available for the timelock. You'll need to type the account type name to confirm. Use this only when you need to deploy changes immediately.
</Note>

### Pausing an account type

Pausing blocks new deposits. The SDK returns a 423 status code for deposit attempts, and deposit-related session transitions (lock, submit) are also blocked. Existing positions keep earning yield. Withdrawals always work - your users can get their money out at any time. You can unpause whenever you're ready.

### Accounts sub-page

Each account type has an **Accounts** tab showing all user accounts. The table is searchable by account ID, user address, or Safe address.

Click any account to see which chains its Safe is deployed on. You can disable individual accounts here. Disabling an account stops Blend from serving deposit and withdrawal calldata, but the user keeps full ownership of their Safe and funds.

### Publishable key

Find the publishable key on the account type detail page under **Settings**. Each account type gets its own key. Pass it to the frontend SDK when you create a `BlendSdk` instance.

The key format is `pk_live_` followed by 64 hex characters. It's safe to include in client-side code.

<CardGroup cols={2}>
  <Card title="Portal operations" icon="sliders" href="/build/portal/operations">
    Manage flow plans, credentials, and your team day-to-day.
  </Card>

  <Card title="Test with Try Position" icon="flask-vial" href="/build/portal/try-position">
    Test deposits and withdrawals directly in the portal.
  </Card>
</CardGroup>
