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

# Overview

LiquidLaunch is a token creation and fair launch platform on Hyperliquid. Anyone can create an ERC20 token with automated bonding curve trading.

**Contract:** `0xDEC3540f5BA6f2aa3764583A9c29501FeB020030`

## How it works

1. **Create a token** — call `createToken` with metadata. Any HYPE sent with the transaction automatically buys tokens for the creator (anti-snipe).
2. **Trade on the bonding curve** — users buy and sell via `buyTokens` / `sellTokens`. Price adjusts automatically.
3. **Trade via LiquidSwap** — launched tokens are also routable through the LiquidSwap aggregator, where users can swap with any supported token (not just HYPE).

## Token specs

| Property               | Value                                   |
| ---------------------- | --------------------------------------- |
| Total supply           | 1,000,000,000 (6 decimals)              |
| Virtual HYPE liquidity | 300 HYPE                                |
| Initial price          | `VIRTUAL_HYPE_LIQUIDITY / TOTAL_SUPPLY` |

All tokens trade on an **x × y = k** constant-product curve against virtual reserves. Price increases as tokens are bought and decreases as they are sold — the same mechanic as Uniswap V2, but with virtual (not deposited) liquidity.

## Bonding

Tokens currently trade exclusively on the LiquidLaunch bonding curve — they do not bond out to a DEX pool. In a future release, tokens will be able to bond into LiquidLaunch's own Uniswap V2 deployment for deeper liquidity.

## Fees

* **1% on all trades** (deducted from HYPE sent or received)
* **Split:** 50% to token creator, 50% to protocol
* **Claiming:** anyone can call `claimFees(token)` to distribute accumulated fees — only the creator and protocol receive the split, not the caller

## Creator restrictions

Token creators cannot sell for **1 hour** after creation, preventing immediate dumps.


---

# 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.liqd.ag/liquidlaunch-integration/overview.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.
