<!-- 0Gkit docs — INDEXER_REORG_LIMIT_EXCEEDED
     Source: https://docs.0gkit.com/errors/INDEXER_REORG_LIMIT_EXCEEDED
     LLM-friendly Markdown twin of the page. -->

# INDEXER_REORG_LIMIT_EXCEEDED

**Reorg depth exceeded configured limit**

## What happened

A reorg deeper than the indexer's configured `reorgDepth` (default 64) was detected. The indexer can't safely rewind past this limit.

## How to fix

Increase `reorgDepth` if you expect deep reorgs on this chain, or reset the cursor and rebuild from a known-safe block.

## Example

```ts
import { Indexer } from "@foundryprotocol/0gkit-indexer";
const indexer = new Indexer({ network: "galileo", reorgDepth: 128 });
```

## Reference

- Namespace: `INDEXER`
- Help URL: `https://0gkit.com/errors/INDEXER_REORG_LIMIT_EXCEEDED`
- See also: [all error codes](/errors)
