# Builder RPC (Private orderflow)

| Network | URL                                                                                                   |
| ------- | ----------------------------------------------------------------------------------------------------- |
| Mainnet | <https://realtime-rpc.ethgas.com/builder>                                                             |
| Hoodi   | [https://realtime-rpc.ethgas.com/hoodi/builder](<https://realtime-rpc.ethgas.com/hoodi/builder&#xA;>) |

### eth\_sendRawTransaction

{% tabs %}
{% tab title="Request" %}

```
{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendRawTransaction”,
  "params": ["0x…"],  // Signed raw tx hex
}

```

{% endtab %}

{% tab title="Response" %}

```
{"result":200,"error":null,"id":1}
```

{% endtab %}
{% endtabs %}

Submits a raw transaction (serialized and signed) for broadcasting to the network. The transaction data should be encoded as a hexadecimal string starting with `0x`. You can create and sign a transaction externally using libraries like [web3.js](https://web3js.readthedocs.io/) or [ethers.js](https://docs.ethers.org/).

**Note:** For [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) transactions, the raw form must be in the network format, which includes blobs, KZG commitments, and KZG proofs.


---

# 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.ethgas.com/overview/realtime/builder-rpc-private-orderflow.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.
