---
title: "Fees"
description: "Launch fees, trading fees, and how fees are routed."
---

> Documentation Index
> Fetch the complete documentation index at: https://developer.clank.trade/llms.txt
> Use this file to discover all available pages before exploring further.

# Fees

## Current Robinhood configuration

| Setting               | Current value                                |
| --------------------- | -------------------------------------------- |
| Factory               | `0x798daAa0707C1e538bB5Acf0867Ac0e1A84cccF2` |
| Chain ID              | `4663`                                       |
| Current Config ID | `0`                                          |
| Launch fee            | Free                                         |
| Bonding-curve fee     | **1%** (`100` basis points)                  |
| Uniswap V4 fee        | **0.3%** (`3_000` millionths)                |
| Anti-snipe tax        | Disabled                                     |

> **Fees are snapshotted**
>
> If the config is updated, previous curves will have the same config.
> Only new curves are affected.

## Bonding curve

The curve charges **1%** on buys and sells. Buy fees come out of the pair-token
input; sell fees come out of the gross pair-token output. The quote functions
already return fee-adjusted amounts:

- `quoteBuyFor` returns the launch-token output, fee, and any terminal refund.
- `quoteSell` returns the gross pair-token output, net output, and fee.

Fees are rounded up to the pair token's smallest unit. See
[Trade on the bonding curve](/guides/trade-on-the-bonding-curve) for executable
examples.

## Uniswap V4

After graduation, the pool charges **0.3%** per swap. Fees earned by Clank's
full-range liquidity position remain attached to its permanently locked
position until collected.

## Fee collection

Bonding-curve fees accrue in a shared escrow. V4 fees accrue to the locked
position. Anyone may trigger collection, but all funds go to the factory's
current `feeDestination`; callers cannot redirect them.

The factory also requires a zero launch fee, zero creator tax, and no buyback.

Source: https://developer.clank.trade/concepts/fees/index.mdx
