📦 Datasets
Hyperliquid Misc Events
Exchange-consolidated stream of miscellaneous Hyperliquid events with raw JSON payloads.
Hyperliquid Misc Events
Overview
The Hyperliquid Misc Events data type provides exchange-level miscellaneous events from Hyperliquid L4. Rows carry event metadata and the original JSON payload as reported by the source stream.
[!NOTE]
This is an exchange-consolidated stream for
HYPERLIQUIDL4. Files are not split by symbol.
File Organization
Hyperliquid Misc Events data is organized in the coinapi bucket using the structure below.
T-HLMISCEVENTS/
└── D-{YYYYMMDD | YYYYMMDDHH}/
└── E-HYPERLIQUIDL4/
└── *.csv.gzWhere:
T-HLMISCEVENTS: Indicates the data type (Hyperliquid Misc Events)D-{YYYYMMDD | YYYYMMDDHH}defines the time partition:YYYYMMDDincoinapi-> legacy daily partitions published before 2026-06-09YYYYMMDDHHincoinapi-> hourly partitions for data published on or after 2026-06-09
E-HYPERLIQUIDL4: Hyperliquid L4 exchange identifier
File Format
Files are in CSV format, compressed with gzip. Each row represents one miscellaneous event.
Data Fields
| Column Name | Type | Description |
|---|---|---|
| time_exchange | datetime | UTC timestamp of the event from the exchange stream. |
| time_coinapi | datetime | UTC timestamp when CoinAPI received the event. |
| exchange_id | string | Exchange identifier. |
| block_number | integer | Blockchain block number associated with the event. |
| event_type | string | Exchange event type. |
| json_payload | string | Raw JSON payload returned by the exchange. |
Example Data
time_exchange;time_coinapi;exchange_id;block_number;event_type;json_payload
2026-06-09T00:16:07.1280000;2026-06-09T00:16:07.4394421;HYPERLIQUIDL4;47261513;vaultTransfer;{"user":"0xabc","amount":"12500","asset":"USDC"}Data Collection Process
- We subscribe to Hyperliquid L4 exchange-level raw event streams.
- Miscellaneous event payloads are normalized and serialized into CSV rows.
- Data is uploaded to the
coinapibucket as hourly partitions for data published on or after 2026-06-09. Legacy daily partitions published before that date remain incoinapi.
Corner Cases and Special Considerations
json_payloadis exchange-native and can contain nested objects or arrays.- Event ordering should rely primarily on
block_number, then timestamp fields. - New
event_typevalues can appear without schema changes.