> 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/understanding-the-system/safety-and-security.md).

# Safety & Security

## AI output never authorizes a transaction

The conversational layer that reads your message can propose, explain, and answer questions. It has no path to sign or submit a transaction. Execution happens through separate, deterministic code, gated entirely on your explicit confirmation of a specific, already-priced proposal. This is a structural property of the system, not a policy — see [How STONKFUNBOT Works](/welcome/how-it-works.md).

## What protects you

* **Account isolation.** Your wallet only ever acts for your account. Nothing signs in response to someone else's message.
* **Explicit confirmation.** Every spend requires a separate, deliberate confirmation of a specific proposal — see [Confirmations](/understanding-the-system/confirmations.md).
* **Transaction inspection.** Before anything is signed, it's decoded and checked — never trusted blindly from an upstream service.
* **Accepted-transaction binding.** What gets signed is proven to be the exact transaction that was checked, not something swapped in afterward.
* **Spending guardrails.** A hard cap bounds how much SOL any single signed transaction can move out of your wallet.
* **Duplicate-execution protection.** A repeated or replayed confirmation returns the original result instead of acting a second time.
* **Durable recovery.** An uncertain outcome is recorded and reconciled against the chain directly, rather than guessed at or silently retried.
* **Verified chain success.** You're told an action succeeded only once the network has actually confirmed it.
* **Encrypted wallet storage.** Wallet secrets are encrypted at rest, under a key held only in the server environment.

## What we won't do

We will never ask you for your seed phrase or private key — not STONKFUNBOT, not support, not anyone claiming to represent it. Never send one to anyone who does.

## Related pages

* [Transaction Verification](/understanding-the-system/transaction-verification.md) — what inspection actually checks.
* [Privacy](/understanding-the-system/privacy.md) — what's kept off public surfaces.
* [Failures & Recovery](/understanding-the-system/failures-and-recovery.md) — what happens when something doesn't go cleanly.


---

# 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/understanding-the-system/safety-and-security.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.
