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

# Tutorials

- [SRC20: Private Token](https://docs.seismic.systems/tutorials/src20.md): \Build a private ERC20 token where balances and transfers are hidden from observers
- [ERC20 to SRC20: What Changes](https://docs.seismic.systems/tutorials/src20/erc20-to-src20.md): See exactly what changes between a standard ERC20 and a private SRC20
- [Shielded Balances and Transfers](https://docs.seismic.systems/tutorials/src20/shielded-balances-and-transfers.md): Implement transfer() and transferFrom() with suint256
- [Encrypted Events](https://docs.seismic.systems/tutorials/src20/encrypted-events.md): Emit transfer events with encrypted amounts using AES precompiles
- [Signed Reads](https://docs.seismic.systems/tutorials/src20/signed-reads-for-balance-checking.md): Let users check their own balance without exposing it to others
- [Intelligence Contracts](https://docs.seismic.systems/tutorials/src20/intelligence-contracts.md): Add compliance-compatible access control to your private token
- [Building the Frontend](https://docs.seismic.systems/tutorials/src20/building-the-frontend.md): Connect your SRC20 contract to a React frontend with seismic-react
- [Clown Beatdown](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract.md)
- [Setting Up Your Project](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/setting-up-your-project.md)
- [Verify devtool installation](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/setting-up-your-project/verify-devtool-installation.md)
- [Create project structure](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/setting-up-your-project/create-project-structure.md)
- [Initialize contracts](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/setting-up-your-project/initialize-contracts.md)
- [Initialize the CLI](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/setting-up-your-project/initialize-cli.md)
- [Writing the Contract](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract.md)
- [Ch 1: The Secrets Pool](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract/chapter-1-the-secrets-pool.md)
- [Ch 2: Stamina and Robbing Secrets](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract/chapter-2-the-stamina-bar-and-robbing-secrets.md)
- [Ch 3: Rounds and Contributor Access](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract/chapter-3-reset-mechanism-rounds-and-contributor-access.md)
- [Ch 4: Testing](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract/chapter-4-testing.md)
- [Deploying](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/writing-the-contract/deploying.md)
- [Building the CLI](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-cli.md)
- [Seismic-viem Primer](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-cli/seismic-viem-primer.md)
- [Ch 1: Constants and Utilities](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-cli/chapter-1-constants-and-utilities.md)
- [Ch 2: Core App Logic](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-cli/chapter-2-core-app-logic.md)
- [Ch 3: Bringing It All Together](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-cli/chapter-3-bringing-it-all-together.md)
- [Building the Frontend](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-frontend.md)
- [Ch 1: Project Setup and Providers](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-frontend/chapter-1-project-setup-and-providers.md)
- [Ch 2: Contract Hooks](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-frontend/chapter-2-contract-hooks.md)
- [Ch 3: Game UI Components](https://docs.seismic.systems/tutorials/understanding-the-clown-beatdown-contract/building-the-frontend/chapter-3-game-ui-components.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.seismic.systems/tutorials.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.
