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

# Originators

Originators send signed transactions through the public or partner RPC endpoint.

To request an originator account or a refund-read-only subaccount, contact us at <info@ethgas.com>.

| Access  | Endpoint                                               |
| ------- | ------------------------------------------------------ |
| Public  | `https://originator.orderflow.ethgas.com/v1`           |
| Partner | `https://originator.orderflow.ethgas.com/v1/{API_KEY}` |

## Send a transaction

The engine supports these equivalent methods:

* `eth_sendRawTransaction` with `params: ["0x..."]`
* `eth_sendPrivateRawTransaction` with `params: ["0x..."]`
* `eth_sendPrivateTransaction` with `params: [{"tx":"0x..."}]`

Each returns the ordinary Ethereum transaction hash.

## Send a bundle

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendBundle",
  "params": [{
    "txs": ["0x<SIGNED_TX_1>", "0x<SIGNED_TX_2>"],
    "blockNumber": "0x12abcde",
    "refundPercent": 90,
    "refundRecipient": "0x1111111111111111111111111111111111111111"
  }]
}
```

`txs` must contain signed transaction(s). `blockNumber` and both refund fields are optional. If the target block has already passed, the request is rejected. `refundPercent` and `refundRecipient` are optional. The default values are 90% and the sender of the bundle's first transaction respectively.

The result contains the engine's local identity:

```json
{"jsonrpc":"2.0","id":1,"result":{"bundleHash":"0x..."}}
```

## Refund override

Any originator method can use a query override:

```
?refund=0x1111111111111111111111111111111111111111:75
```

The query value takes precedence over bundle-body refund fields. Percentages outside the deployment's configured range fall back to the configured default; malformed values are rejected.

Without an override, the configured default percentage and the first transaction's recovered sender are used.

## Bundle references

The last transaction in originator orderflow is its shareable reference. Searchers receive the full decoded transaction list and use that last hash to reference the flow. During builder forwarding, the engine replaces the reference with every original signed transaction in order.


---

# 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.ethgas.com/orderflow/originators.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.
