# Protocol Owned Liquidity

```
┌─────────────────────────────────────────────────────────────────────┐
│  RENTED LIQUIDITY (Traditional DeFi)                                │
└─────────────────────────────────────────────────────────────────────┘

  Protocol ──pays rewards──▶ External LPs ──provide liquidity──▶ Pool
                                   │
                                   │ (when rewards drop)
                                   ▼
                              LPs WITHDRAW
                                   │
                                   ▼
                            💀 POOL DIES


┌─────────────────────────────────────────────────────────────────────┐
│  PROTOCOL-OWNED LIQUIDITY (Crypto DAO)                              │
└─────────────────────────────────────────────────────────────────────┘

  Users ──bond LP tokens──▶ Protocol ──locks LP──▶ DEAD ADDRESS (0x000...dead)
                                                          │
                                                          │ (forever)
                                                          ▼
                                                   🔒 PERMANENT LIQUIDITY
                                                          │
                                                          ▼
                                                   ✓ Always tradeable
```

## The Problem with Rented Liquidity

This phenomenon is called "mercenary capital." LPs have no loyalty — they follow the highest yield.

## How Crypto DAO Solves This

{% stepper %}
{% step %}

### User deposits USDT

A user purchases a bond by depositing USDT.
{% endstep %}

{% step %}

### Contract pairs USDT with PRO → Creates LP token

The contract pairs the deposited USDT with PRO and mints LP tokens.
{% endstep %}

{% step %}

### LP token sent to black hole address

The LP token is sent to an address with no private key (a black hole).
{% endstep %}

{% step %}

### LP is locked permanently (no withdrawal function)

Because the address is inaccessible, the LP cannot be withdrawn or moved.
{% endstep %}

{% step %}

### User receives discounted PRO over time

In exchange, the user receives discounted PRO tokens over the vesting period.
{% endstep %}
{% endstepper %}

The liquidity never leaves. Ever.

***

## Why "Blackhole"?

A black hole address is a wallet with no private key, or where the key has been provably destroyed. Tokens sent there:

* Cannot be withdrawn
* Cannot be moved
* Cannot be accessed by anyone — including the team

It's a one-way trip.

{% hint style="info" %}
Don't trust. Verify.
{% endhint %}

## Benefits

| Benefit                | Explanation                                        |
| ---------------------- | -------------------------------------------------- |
| **Guaranteed trading** | Liquidity exists as long as the blockchain exists  |
| **No rug pull risk**   | Team cannot drain LP (there's no function to call) |
| **Price floor**        | More locked LP = more stable trading               |
| **Compounding effect** | Each bond adds permanent liquidity                 |

## Verification

{% stepper %}
{% step %}

### Check black hole address on block explorer

Look up the black hole address on a trusted block explorer.
{% endstep %}

{% step %}

### Confirm LP token balance

Verify the LP token balance held at that address.
{% endstep %}

{% step %}

### Review contract code — no withdrawal function exists

Audit the relevant contract(s) to ensure there is no function allowing LP withdrawal.
{% endstep %}
{% endstepper %}

## Related

* [How Bonds Work](/c-dao/2.-mechanics/bonds.md)
* [Black Hole Liquidity](/c-dao/1.-overview/core-concepts/protocol-owned-liquidity.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cryptodao-it.gitbook.io/c-dao/1.-overview/core-concepts/protocol-owned-liquidity.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
