Skip to main content

Overview

HyperCore powers fully onchain perpetual futures and spot order books with 200,000 orders/second throughput. The backbone of Hyperliquid’s high-performance trading infrastructure.
HyperCore is a non-EVM chain purpose-built for high-frequency derivatives trading. GoldRush provides real-time streaming access to HyperCore’s native trading data — including data not available via the public Hyperliquid API, such as liquidation details, vault actions, and complete ledger event history.

What makes this unique

  • Exclusive data: Liquidation cascades, vault deposits/withdrawals, and detailed ledger events that bypass Hyperliquid’s public API limitations
  • Zero rate limits: Dedicated infrastructure with no request throttling
  • Dedicated Tokyo nodes: Private backbone for low-latency, high-throughput data ingestion directly from Hyperliquid’s infrastructure
  • Rich decoded events: 6 decoded event types covering fills, funding rates, delegations, deposits, withdrawals, and 20+ ledger subtypes
  • Non-EVM native: First-class support for Hyperliquid’s custom chain architecture, not an EVM compatibility layer

Supported APIs

Streaming API

Stream Hyperliquid fills, liquidations, funding rates, vault actions, and OHLCV pricing data in real-time using GraphQL over WebSockets.

Use cases: Trading bots, perps dashboards, liquidation monitoring, and AI Agents.

Foundational API

Coming soon. REST API access to historical HyperCore data — balances, transaction histories, and decoded events.

Mainnet

PropertyValue
Chain NameHYPERCORE_MAINNET
Chain IDna
Network TypeFrontier Chain
Support Levelfrontier
Block ExplorerHyperliquid Explorer
Official WebsiteHyperCore Website
Native Gas TokenHYPE

API Usage

To use this blockchain network in GoldRush API calls, use:

Chain Name

  • HYPERCORE_MAINNET (mainnet)

Example Streaming Subscription

subscription {
  walletTxs(
    chain_name: HYPERCORE_MAINNET,
    wallet_addresses: ["0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"]
  ) {
    block_signed_at
    block_height
    tx_hash
    tx_offset
    successful
    decoded_type
  }
}
Connect via WebSocket at wss://streaming.goldrushdata.com/graphql with your API key in the connection parameters. See the Streaming API Quickstart for full setup details.

Streaming API Support

This chain supports 2 GoldRush Streaming APIs:
  • OHLCV Tokens Stream — real-time and historical OHLCV candles for all Hyperliquid markets (perpetuals, commodities, equities)
  • Wallet Activity Stream — track wallet positions, trades, PnL, and all onchain activity across thousands of wallets simultaneously

Decoded Event Types

GoldRush decodes raw HyperCore transactions into structured, typed events. These are unique to Hyperliquid’s architecture and go far beyond what standard EVM decoded events provide.
Event TypeDescription
Fill TransactionPerpetuals trade fills with liquidation context, side, PnL, and builder fees
Funding EventFunding rate payments between long and short position holders
Ledger Event20+ subtypes: vault deposits/withdrawals, liquidations, spot transfers, staking, borrow/lend, reward claims, and more
Delegation EventStaking delegation and undelegation events
Deposit EventCross-chain deposits from external chains
Withdrawal EventFinalized cross-chain withdrawals
All decoded events share a common interface via HypercoreMiscEventsTransaction with hash, and time fields.

Additional Resources