# Organization

The Synthetic Blockchain is composed of a few main components, not unlike a typical blockchain. There needs to be a place for transactions to be staged, a way for blocks to be finalized, a canonical format for a Command to be accepted onchain, and actions that are triggered by these commands.

These components are:

* [Indexer](https://docs.simulacrum.network/synthetic-blockchain/organization/indexer): The mechanism that adds new commands to the mempool
* [Mempool](https://docs.simulacrum.network/synthetic-blockchain/organization/mempool): Where commands are staged until they are executed
* [Blocks](https://docs.simulacrum.network/synthetic-blockchain/organization/blocks): The collection of commands executed in unison
* [Commands](https://docs.simulacrum.network/synthetic-blockchain/organization/commands): The format for a user submitted request, analogous to a Transaction on standard blockchains
* [Effects](https://docs.simulacrum.network/synthetic-blockchain/organization/effects): Requirements that require asynchronous actions to take place. Intents that can not be handled within the execution of the Command.


---

# 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.simulacrum.network/synthetic-blockchain/organization.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.
