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

# Confirm

Confirmation is the one step that turns a priced proposal into a signed transaction. It's the only thing that authorizes execution.

## What confirming means

You reply with the code from your proposal — for example, "confirm A1B2C3D4." That's it. Nothing else you say authorizes a transaction; an arbitrary word like "yes" does not confirm anything on its own.

## What confirming checks

* **The proposal exists and hasn't expired.** A stale confirmation is refused, not executed against an old price.
* **It's yours.** A proposal is bound to the account it was made for. A confirmation from any other account is refused, as if the proposal didn't exist.
* **The price still holds.** Confirming re-checks the real cost against what you were shown. If it moved beyond a small tolerance, the confirmation fails closed — nothing is signed — rather than silently charging more.

See [Confirmations](/understanding-the-system/confirmations.md) for the full detail on how this is enforced.

## Duplicate confirmations

Confirming the same proposal twice — a retry, a doubled message — returns the original result instead of acting a second time.

## Next

A confirmed proposal moves to [Execute](/transaction-flow/execute.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.stonkfun.bot/transaction-flow/confirm.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.
