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

# Robinhood Chain feed

## Introduction

The service delivers Robinhood Chain sequencer transactions in real time as complete DIRECT records for latency-sensitive applications and node integrations.

## Records

The feed sends two DIRECT record types:

| Type                    | Value | Purpose                                               |
| ----------------------- | ----: | ----------------------------------------------------- |
| `DIRECT_ITEM`           |   `1` | One complete raw L2 item                              |
| `DIRECT_SEQUENCE_FINAL` |   `3` | Sequence completion and canonical reconstruction data |

Items are identified by sequence number and ordinal. Ordinals begin at zero.

## Incremental and canonical processing

`DIRECT_ITEM` may be used immediately for latency-sensitive incremental processing. A sequence is canonically complete only after its FINAL record and every ordinal from `0` through `item_count - 1` have arrived.

The FINAL record contains the metadata required to reconstruct the original canonical feed message.

## Reconnect behavior

After reconnecting, the relay starts at a fresh sequence boundary. It does not replay stale backlog. Consumers must recover any missing canonical sequences using their normal node or L1 recovery path.

## Message kinds

Do not confuse these fields:

* DIRECT record type is stored in byte `1` of the DIRECT prefix.
* Reconstruction or outer kind is stored in byte `2` of a FINAL record.
* The first byte of a raw L2 item is interpreted as an L2 kind only for an ordinary L2 message whose header kind is `3`.

Non-L2 ArbOS messages must be carried opaquely rather than rejected as unsupported L2 kinds.


---

# 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.txflash.io/robinhood-fast-feed.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.
