> 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/quick-reference.md).

# Quick Reference

### Prerequisites

1. **Whitelist your EOA address** by reaching out [here](https://www.spire.dev/contact)
2. **Deploy Proposer Contract**
3. **Submit EIP-7702 Transaction** to associate your Proposer with your EOA
4. **Fund GasTank** with ETH to cover gas costs for your future transactions

### RPC Endpoints

| Environment | URL                                                                              |
| ----------- | -------------------------------------------------------------------------------- |
| Hoodi       | [`https://da-builder.hoodi.spire.dev/`](https://da-builder.hoodi.spire.dev/)     |
| Mainnet     | [`https://da-builder.mainnet.spire.dev/`](https://da-builder.mainnet.spire.dev/) |

### Contract Addresses

<table><thead><tr><th width="156.44921875">Environment</th><th>Hoodi</th><th>Mainnet</th></tr></thead><tbody><tr><td>GasTank</td><td><a href="https://hoodi.etherscan.io/address/0x18Fa15ea0A34a7c4BCA01bf7263b2a9Ac0D32e92">0x18Fa15ea0A34a7c4BCA01bf7263b2a9Ac0D32e92</a></td><td><a href="https://etherscan.io/address/0x2565c0A726cB0f2F79cd16510c117B4da6a6534b">0x2565c0A726cB0f2F79cd16510c117B4da6a6534b</a></td></tr><tr><td>ProposerMulticall</td><td><a href="https://hoodi.etherscan.io/address/0x5132dCe9aD675b2ac5E37D69D2bC7399764b5469">0x5132dCe9aD675b2ac5E37D69D2bC7399764b5469</a></td><td><a href="https://etherscan.io/address/0x9ccc2f3ecdE026230e11a5c8799ac7524f2bb294">0x9ccc2f3ecdE026230e11a5c8799ac7524f2bb294</a></td></tr><tr><td>TrustlessProposer</td><td><a href="https://hoodi.etherscan.io/address/0x64568c70A52d289DF196dC7f33e38B0E58A16567">0x64568c70A52d289DF196dC7f33e38B0E58A16567</a></td><td><a href="https://etherscan.io/address/0x1b3068A7dC934cCEBF7784cBd9266D80948a98A1">0x1b3068A7dC934cCEBF7784cBd9266D80948a98A1</a></td></tr><tr><td>TrustedProposer</td><td><a href="https://hoodi.etherscan.io/address/0xb3b91b87183e74102AAb105F04b7160201DdF8c4">0xb3b91b87183e74102AAb105F04b7160201DdF8c4</a></td><td><a href="https://etherscan.io/address/0xC09f597034f654283a05B058EE1306534b837868">0xC09f597034f654283a05B058EE1306534b837868</a></td></tr></tbody></table>

### Supported RPC Methods

| Method                      | Description                                                                                                                                                                                                           |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `eth_sendRawTransaction`    | <p>Submit transaction.</p><p>note: will not increment the EOA's nonce.</p>                                                                                                                                            |
| `eth_getTransactionReceipt` | Track transaction status                                                                                                                                                                                              |
| `eth_sendBundle`            | <p>A simplified version of eth\_sendBundle which accepts two parameters (<code>txs</code> and <code>blockNumber</code>) but <code>txs</code> must contain only 1 tx.<br>note: will not increment the EOA's nonce.</p> |
| `dab_accountInfo`           | Custom RPC Extension. Takes 1 account string and returns the account `balance` in the GasTank and the `outstanding` charges                                                                                           |

### Common Error Codes

| Error                   | Meaning                      | Solution                 |
| ----------------------- | ---------------------------- | ------------------------ |
| `Account not found`     | Account not funded           | Deposit funds to GasTank |
| `Insufficient balance.` | Low balance                  | Add more funds           |
| `Transaction not found` | Transaction not yet included | Wait and retry           |

### Transaction Lifecycle

1. **Submit** → Receive transaction ID
2. **Poll** → Check status with `eth_getTransactionReceipt`
3. **Included** → Get blockchain hash from receipt
4. **Confirmed** → Transaction on-chain

### Cost Structure

* **Blob Gas**: Shared across aggregated transactions
* **Execution Gas**: Based on your transaction's gas usage (intrinsic gas fee is shared)
* **Service Fee**: Small aggregation fee

### Support

Please reach out to us at <hello@spire.dev> !


---

# 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/quick-reference.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.
