# Security & Best Practices

If you only read one section before shipping something public, read this one.

## Essential Reading

* [Program Security](https://solana.com/developers/courses/program-security)
* [Verified Builds](https://solana.com/developers/guides/advanced/verified-builds)
* [Anchor Verifiable Builds](https://www.anchor-lang.com/docs/references/verifiable-builds)
* [Fees](https://solana.com/docs/core/fees)
* [PDA Accounts](https://solana.com/docs/core/pda/pda-accounts)
* [CPIs with PDA signers](https://solana.com/docs/core/cpi/cpi-with-pda)

## Practical Advice

* do not treat a hackathon submission as an excuse to ignore security basics
* use the simplest possible architecture that still solves the problem
* understand signer checks, account ownership, and PDA behavior before mainnet thinking
* verify that your deployed code matches your source if the project continues after the hackathon

## For Teams

Before submitting:

* confirm judges can access your repo and any docs
* document what is onchain and what is offchain
* explain why you chose Solana-specific design decisions


---

# Agent Instructions: 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:

```
GET https://docs.superteamde.fun/superteam-germany-guilds/build-on-solana/security-and-best-practices.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
