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

# Pooled Lending

> How lenders deposit capital into Leviathan pools, earn yield through LP tokens, and how pool accounting works.

> **CONFIDENTIAL & PROPRIETARY © 2026 Inkwell Finance, Inc. All Rights Reserved.**
>
> This document is for informational purposes only and does not constitute legal, tax, or investment advice, nor an offer to sell or a solicitation to buy any security or other financial instrument. Any examples, structures, or flows described here are design intent only and may change.

## Overview

Leviathan's pooled lending system, managed by the `leviathan-pool` Solana program, allows lenders to supply capital to shared pools rather than funding individual loans directly. In return, lenders receive **LP tokens** — fungible receipt tokens representing their proportional share of the pool.

This model provides lenders with diversified exposure across multiple borrowers, predictable yield mechanics, and the ability to enter or exit positions through standard token transfers.

## How It Works

### Depositing

1. A lender deposits capital (e.g., USDC) into a lending pool
2. The pool mints LP tokens proportional to the lender's share of total pool value
3. LP tokens are standard SPL tokens — they can be held, transferred, or used in other DeFi protocols

The exchange rate between LP tokens and the underlying asset increases over time as interest accrues, meaning LP tokens appreciate in value relative to the deposited asset.

### Withdrawing

1. A lender redeems LP tokens against the pool
2. The pool burns the LP tokens and returns the proportional share of pool value
3. The returned amount includes the original deposit plus accumulated interest, minus any losses from defaults

Withdrawals are subject to available liquidity — if most pool capital is actively deployed in loans, withdrawals may be partially filled or queued until capital returns.

## Interest Rate Models

Pool yields are determined by **utilization-based interest rate models**:

* **Utilization rate** — the percentage of pool capital currently deployed in active loans
* **Base rate** — the minimum interest rate charged to borrowers, even at low utilization
* **Slope** — how quickly rates increase as utilization rises

When utilization is low, rates stay near the base to attract borrowers. As utilization increases, rates rise to incentivize new deposits and discourage excessive borrowing. This creates a self-balancing mechanism that manages pool liquidity.

<Note>
  Interest rate model parameters are configured per pool and can be adjusted through governed on-chain mechanisms. Specific rate curves and parameters vary by pool.
</Note>

## Yield Strategies

Idle capital sitting in the pool (not deployed to active loans) can be put to work through **yield strategies**:

* Pool administrators can configure approved yield sources for undeployed capital
* Strategies are subject to the same policy and risk controls as loan deployments
* Returns from yield strategies accrue to the pool, benefiting all LP token holders

This ensures that capital waiting for loan deployment still generates returns, improving overall pool efficiency.

## Pool Accounting

The pool program maintains precise accounting of all capital flows:

| Metric                  | Description                                                    |
| ----------------------- | -------------------------------------------------------------- |
| **Total deposits**      | Cumulative capital deposited by all lenders                    |
| **Active loans**        | Capital currently deployed in outstanding loans                |
| **Available liquidity** | Capital available for new loans or withdrawals                 |
| **Accrued interest**    | Interest earned from active loans, reflected in LP token value |
| **Realized losses**     | Capital lost to loan defaults, absorbed by LP token holders    |

All accounting is on-chain and verifiable. LP token holders can inspect pool state at any time to understand their position.

## Risk Isolation

Each lending pool operates independently:

* **Separate risk profiles** — pools can target different borrower segments, credit tiers, or use cases
* **Independent parameters** — interest rate models, utilization targets, and yield strategies are configured per pool
* **Isolated losses** — defaults in one pool do not affect other pools

This allows the protocol to offer pools with different risk/return characteristics. A conservative pool might only lend to top-tier borrowers at lower rates, while a higher-yield pool might accept broader credit profiles with higher compensation for risk.

## LP Token Properties

LP tokens have several important properties:

* **Fungible** — all LP tokens for the same pool are interchangeable
* **Appreciating** — the exchange rate against the underlying asset increases as interest accrues
* **Transferable** — LP tokens are standard SPL tokens that can be transferred, traded, or used as collateral in other protocols
* **Redeemable** — LP tokens can always be redeemed against the pool, subject to available liquidity

<Warning>
  LP tokens represent a share of pool value, including exposure to potential loan defaults. The value of LP tokens can decrease if pool losses exceed accumulated interest. Lenders should understand the risk profile of any pool before depositing.
</Warning>
