> For the complete documentation index, see [llms.txt](https://docs.rakelaunch.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rakelaunch.xyz/rake/trading-and-utility/burn-and-buyback.md).

# Burn & Buyback

RAKE's market-buy and burn flows for $RAKE and $PONS.

## Burn & Buyback

Burn and buyback are related user actions. Burn destroys tokens you already hold. Buyback purchases tokens with ETH, then burns those purchased tokens.

### Burn

Burn applies to your own tokens.

```
@rake_agent burn 1000 $RAKE
```

```
User specifies token amount
    ↓
Echo confirmation
    ↓
User's own tokens are burned
```

Burn requires Echo confirmation. RAKE prepares the requested amount for exact confirmation before burning occurs.

### Buyback

Buyback combines a purchase with a burn.

```
@rake_agent buyback 0.02 ETH of $MOON then burn
```

```
ETH amount
    ↓
Buy token
    ↓
Burn purchased token
```

Buyback also requires Echo confirmation. The ETH amount in the confirmation must match the prepared draft. [Echo Confirmation](/rake/how-rake-works/echo-confirmation.md) defines the confirmation model.

### User actions and protocol fee mechanism

The commands on this page are user-triggered utilities:

* `burn`
* `buyback`

They differ from the protocol fee mechanism. Harvested fees allocate 15% toward market-buying and burning `$RAKE`. They also allocate 15% toward market-buying and burning `$PONS`.

[Tokenomics](/rake/tokenomics.md) and [Fee Split](/rake/how-rake-works/fee-split.md) cover that fee mechanism.


---

# 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.rakelaunch.xyz/rake/trading-and-utility/burn-and-buyback.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.
