Skip to main content
The GoldRush Pipeline API delivers structured blockchain data across multiple chains. Each chain exposes a set of topics that you can subscribe to, covering everything from raw block data and transaction logs to decoded DEX trades and protocol-specific events.

Base (EVM)

Base provides core EVM primitives including blocks, transactions, traces, logs, receipts, and token transfers.
EntityTopicDescriptionStatus
Blocksbase.mainnet.ref.block.blocksBlock headers and metadataLive
Tracesbase.mainnet.ref.block.tracesInternal call tracesLive
Transactionsbase.mainnet.ref.block.transactionsFull transaction dataLive
Logsbase.mainnet.ref.block.logsEvent logs emitted by contractsLive
Receiptsbase.mainnet.ref.block.receiptsTransaction receipts with status and gas usageLive
Transfersbase.mainnet.ref.block.transfersToken and native transfersLive
Swapsbase.mainnet.ref.block.swapsDEX swap eventsLive

Hyperliquid

Hyperliquid exposes trading-specific entities including fills, trades, orders, and miscellaneous events.
EntityTopicDescriptionStatus
Fillshypercore.mainnet.ref.block.fillsOrder fill eventsLive
Tradeshypercore.mainnet.ref.block.tradesExecuted trade recordsLive
Ordershypercore.mainnet.ref.block.ordersOrder placement and cancellation eventsLive
Misc Eventshypercore.mainnet.ref.block.misceventsMiscellaneous protocol eventsLive

Solana

Solana provides decoded DEX trades, token transfers, and protocol-specific events across major DeFi protocols.
EntityTopicDescriptionStatus
DEX Swapssolana.mainnet.ref.block.swapsDEX swap eventsLive
SPL Token Transferssolana.mainnet.ref.block.transfersToken transfer recordsLive

Coming Soon

The following chains are on the roadmap and will be added in upcoming releases:
  • Polygon - EVM-compatible L2 with high throughput and low fees
  • Arbitrum - Optimistic rollup on Ethereum with growing DeFi activity
  • Ethereum Mainnet - The primary EVM chain with the deepest liquidity and broadest protocol coverage
Chain availability is subject to change. Check this page for the latest status or contact the team for early access.

Topic Naming Convention

All topics follow a consistent naming pattern:
{chain}.{network}.{qualifier}.block.{entity}
ComponentDescriptionExamples
chainThe blockchain identifierbase, hypercore, solana
networkThe network environmentmainnet
qualifierThe data processing levelref (structured), raw (unprocessed)
blockFixed segment indicating block-level datablock
entityThe specific data typeblocks, transactions, swaps, fills
For example, the topic solana.mainnet.ref.block.swaps delivers structured, block-level DEX trade data from Solana mainnet.