> For the complete documentation index, see [llms.txt](https://spire-docs.gitbook.io/spire/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spire-docs.gitbook.io/spire/da-builder/architecture.md).

# Architecture

DA Builder's architecture consists of several key components that work together to aggregate and execute transactions efficiently. Below is an example showing how a rollup would setup an account with DA Builder and submit blob transactions to their inbox through DA Builder to save on costs:

### System Architecture

<figure><img src="/files/oddDm2O6raOnogcZxra8" alt=""><figcaption></figcaption></figure>

### Component Responsibilities

**User's EOA with EIP-7702 Proposer Code**:

* Contains the deployed proposer contract code (e.g., TrustlessProposer)
* Validates signatures and executes authorized transactions
* Signs transactions to be submitted to DA Builder

**DA Builder Service**:

* Accepts transaction submissions from users
* Validates EIP-7702 setup and account funding
* Collects multiple user transactions
* Creates aggregated EIP-4844 blob transactions
* Manages transaction ordering and batching
* Returns transaction IDs for tracking

**ProposerMulticall Contract**:

* Executes the aggregated transaction on-chain
* Calls each user's proposer contract in sequence

**GasTank Contract**:

* Stores user deposits to cover their respective transaction fees
* Provides balance tracking

**L2 Rollup Inbox**:

* Receives the actual user transaction
* Processes it according to L2 protocol rules
* Updates L2 state based on transaction execution


---

# 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://spire-docs.gitbook.io/spire/da-builder/architecture.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.
