Blog

HyperEVM Data Is Live on Flipside

Full EVM coverage for Hyperliquid's smart contract layer: blocks, transactions, decoded events, token transfers, prices, and labels. Query it today.

By Flipside

HyperEVM Data Is Live on Flipside
hyperevm hyperliquid blockchain-data evm

HyperEVM data is live on Flipside

Hyperliquid is one of the most active ecosystems in crypto right now. HyperEVM, its EVM-compatible execution layer, is where the smart contract activity lives: DeFi protocols, token launches, bridges, and applications all deploying at speed.

Data infrastructure usually lags months behind chains like this. By the time curated data shows up, the window for early analysis has closed.

HyperEVM is now live on Flipside. Full EVM schema: blocks, transactions, traces, decoded event logs, token transfers, prices, and labels. Query it today on Flipspace, via Snowflake, or through our API.

We curated HyperEVM in under 2 hoursFull chain coverage that used to take weeks. Read how our agent-driven pipeline deployed the complete HyperEVM data stack in a single session.Read the impact study

What’s covered

All tables live under the hyperevm database and follow the same schema used for Ethereum, Base, Arbitrum, Ink, and every other EVM chain we support. If you’ve queried any EVM chain on Flipside, you already know the table structure.

  • Core (10 tables) - blocks, transactions, traces, event logs, contracts, labels, decoded events, token transfers, native transfers, and contract ABIs
  • Balances - daily ERC-20 and native balance snapshots per address
  • NFT - ERC-721 and ERC-1155 transfer events
  • Price (5 tables) - hourly prices, OHLC, asset metadata, daily market data
  • Stats - hourly aggregate chain metrics

Browse the full schema on docs.

HyperEVM is not HyperCore

HyperEVM is the EVM-compatible layer of Hyperliquid, a general-purpose smart contract environment where DeFi protocols, NFT projects, and applications deploy. HyperCore is the perps layer.

This data covers HyperEVM: transactions, smart contracts, token transfers, and more. If you’re looking for perpetual futures data, that’s a different layer entirely.

What you can do with it

Analyze wallet behavior. Cross-reference fact_transactions with dim_labels to map known entities on HyperEVM. Track bridging patterns from HyperCore and other chains. Measure retention.

Research token activity. ez_token_transfers for transfer patterns and holder distribution. Hourly pricing tables for price correlation. dim_labels for identifying who’s accumulating.

-- Recent high-value transactions on HyperEVM
SELECT block_timestamp, from_address, to_address, value, tx_hash
FROM hyperevm.core.fact_transactions
WHERE block_timestamp >= CURRENT_DATE - 7
  AND value > 0
ORDER BY value DESC
LIMIT 100

Start querying

HyperEVM data is live now.