> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sqd.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Ethereum Hoodi

> Index Ethereum Hoodi data with SQD

| Property    | Value            |
| ----------- | ---------------- |
| Network ID  | `ethereum-hoodi` |
| Chain ID    | `560048`         |
| Real-time   | No               |
| Traces      | ✗                |
| State Diffs | ✗                |

## Endpoint

<Tabs>
  <Tab title="Portal (recommended)">
    ```
    https://portal.sqd.dev/datasets/ethereum-hoodi
    ```
  </Tab>

  <Tab title="v2 archives (legacy)">
    <Warning>
      Will be sunset soon. [Migrate to Portal →](/en/portal/migration)
    </Warning>

    ```
    https://v2.archive.subsquid.io/network/ethereum-hoodi
    ```
  </Tab>
</Tabs>

## Quick start

```bash theme={"system"}
curl --compressed -X POST \
  'https://portal.sqd.dev/datasets/ethereum-hoodi/stream' \
  -H 'Content-Type: application/json' \
  -d '{
    "type": "evm",
    "fromBlock": 0,
    "toBlock": 100,
    "fields": {
      "block": { "number": true, "timestamp": true },
      "transaction": { "hash": true, "from": true, "to": true, "value": true }
    },
    "transactions": [{}]
  }'
```

For full SDK examples:

<CardGroup cols={2}>
  <Card title="Pipes SDK Quickstart" icon="bars-staggered" href="/en/sdk/pipes-sdk/evm/quickstart">
    Streaming pipeline indexer
  </Card>

  <Card title="Squid SDK Quickstart" icon="server" href="/en/sdk/squid-sdk/quickstart">
    GraphQL API indexer
  </Card>
</CardGroup>

## Schema

<AccordionGroup />

## Reference

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/en/portal/evm/api">
    Field definitions and query syntax
  </Card>

  <Card title="Portal Migration" icon="arrow-right" href="/en/portal/migration">
    Migrate from v2 archives to Portal
  </Card>
</CardGroup>
