> ## 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.

# Hyperliquid Replica Commands

> Index Hyperliquid Replica Commands data with SQD

<Info>HyperCore replica command stream — used for advanced infrastructure monitoring and replay.</Info>

| Property   | Value                      |
| ---------- | -------------------------- |
| Network ID | `hyperliquid-replica-cmds` |
| Real-time  | No                         |

## Endpoint

```
https://portal.sqd.dev/datasets/hyperliquid-replica-cmds
```

## Quick start

```bash theme={"system"}
curl --compressed -X POST \
  'https://portal.sqd.dev/datasets/hyperliquid-replica-cmds/stream' \
  -H 'Content-Type: application/json' \
  -d '{
    "type": "hyperliquidReplicaCmds",
    "fromBlock": 0,
    "toBlock": 100,
    "fields": {
      "block": { "number": true, "timestamp": true },
      "action": { "type": true, "user": true, "data": true }
    },
    "actions": [{}]
  }'
```

## Schema

<AccordionGroup>
  <Accordion title="Blocks">
    | Field       | Type    | Description     |
    | ----------- | ------- | --------------- |
    | `number`    | integer | Block number    |
    | `hash`      | string  | Block hash      |
    | `timestamp` | integer | Block timestamp |
  </Accordion>

  <Accordion title="Actions">
    | Field  | Type    | Description           |
    | ------ | ------- | --------------------- |
    | `type` | string  | Action type           |
    | `user` | string  | Acting address        |
    | `data` | object  | Action payload        |
    | `hash` | string  | Action hash           |
    | `time` | integer | Action timestamp (ms) |
  </Accordion>
</AccordionGroup>

## Reference

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/en/portal/hyperliquid/overview">
    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>
