> For the complete documentation index, see [llms.txt](https://docs.socialhood.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.socialhood.app/social-app/keys.md).

# Creator Keys

Every creator on Socialhood has a **key market** — a friend.tech-style bonding curve tied to their profile. Holding someone's key is a bet on their attention, and it unlocks their **holder room** (key-gated group chat).

## The curve

The price of the next key at supply `s` is:

```
price(s) = s² / 32,000  ETH
```

Quadratic: early keys are nearly free, later keys get expensive fast. Price discovery is pure supply and demand — there is no market maker and no admin lever.

## Fees — 10% on every trade

Every buy **and** sell pays a 10% fee, split:

| Share  | Recipient                                          |
| ------ | -------------------------------------------------- |
| **7%** | The creator (the "fees earned" number on profiles) |
| **3%** | Protocol treasury                                  |

Fees are pushed to recipients instantly on each trade, with a pull-based `claimFees()` fallback if a push fails. There are no other fees, no hidden rakes.

## Rules enforced by the contract

* **First key self-claim** — the first key of any market can only be bought by the creator themself. A market only exists once its owner claims it. Combined with X-id anchoring, this is the anti-impersonation backbone.
* **Solvency invariant** — the contract always holds enough ETH for every key to be sold back. This is fuzz-tested with invariant testing.
* **Non-upgradeable** — no mint, no pause, no backdoors. The owner (multisig) can only change the treasury address.

## Why hold keys?

* Access to the creator's **holder room**.
* Key holders are **snapshotted for token airdrops** when the creator launches on the [Terminal](/terminal-launchpad/graduation.md) — 2.5% of every launched token's supply goes to its creator's key holders.
* Points accrue for buying, holding, and breadth of holdings (see [Points](/social-app/points.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, and the optional `goal` query parameter:

```
GET https://docs.socialhood.app/social-app/keys.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
