This schema contains comprehensive on-chain datasets for tracking Hyperliquid fundamental data across multiple metrics categories, including trading activity, fees, revenue streams, and token economics.

Available Tables

Hyperliquid data is available in two main tables:

  • ez_metrics: Aggregated metrics for the entire Hyperliquid protocol with detailed token supply data
  • ez_metrics_by_chain: Contains the same metrics as ez_metrics (where applicable), but broken down by blockchain. Use this table when you need to analyze performance across different chains.

Table Schema

Trading and Activity Metrics

Table NameColumn NameDescription
ez_metricsperp_volumeThe total trading volume on Hyperliquid’s perps exchange
ez_metricsperp_dauThe number of unique traders on Hyperliquid’s perps exchange
ez_metricsperp_txnsThe total number of trades on Hyperliquid’s perps exchange
ez_metricsspot_volumeThe total volume on Hyperliquid’s spot exchange
ez_metricstrading_volumeCombined total of perp_volume and spot_volume (legacy naming)
ez_metricsunique_tradersSame as perp_dau - number of unique traders (legacy naming)
ez_metricstxnsSame as perp_txns - total number of trades (legacy naming)
ez_metricsnum_stakersNumber of HYPE stakers
ez_metricsstaked_hypeAmount of HYPE tokens staked

Fee and Revenue Metrics

Table NameColumn NameDescription
ez_metricsperp_feesThe fees generated by traders on Hyperliquid’s perps exchange
ez_metricsspot_feesThe total amount of fees (in USD) on Hyperliquid’s spot exchange
ez_metricschain_feesThe total transaction fees paid on the HyperEVM
ez_metricsecosystem_revenueGross protocol revenue includes layer 1 transaction fees and trading fees, composed of spot fees, perp fees, and auction fees
ez_metricsfeesTotal trading fees (legacy naming)
ez_metricsauction_feesFees generated from liquidation auctions
ez_metricsrevenueCombined revenue from buybacks and burns (legacy naming)

Cash Flow Distribution Metrics

Table NameColumn NameDescription
ez_metricsburned_cash_flowThe portion of protocol revenue that results in burns in USD. On Hyperliquid, all transaction fees paid on the L1 are burned
ez_metricsburned_cash_flow_nativeThe portion of protocol revenue that results in burns in native tokens
ez_metricsbuyback_cash_flowA portion of protocol revenue (97%) is allocated to the Assistance Fund (AF) for HYPE buybacks
ez_metricsbuybacks_nativeThe amount of tokens actually bought back by the protocol in native token units
ez_metricsservice_cash_flowA portion of protocol revenue (3%) is allocated to the Hyperliquidity Provider (HLP)
ez_metricsprimary_supply_side_revenueRevenue allocated to liquidity providers (3% of trading fees) (legacy naming)
ez_metricsdaily_burnAmount of tokens burned daily (legacy naming)
ez_metricsdaily_buybacks_nativeAmount of HYPE bought back daily in native tokens (legacy naming)

Market and Token Metrics

Table NameColumn NameDescription
ez_metricspriceThe price of HYPE in USD
ez_metricsmarket_capThe market cap of HYPE token in USD
ez_metricsfdmcThe fully diluted market cap of HYPE token in USD
ez_metricstoken_volumeThe trading volume of HYPE token in USD
ez_metricstoken_turnover_circulatingThe turnover of HYPE based on circulating supply
ez_metricstoken_turnover_fdvThe turnover of HYPE based on fully diluted valuation

Token Supply Metrics

Table NameColumn NameDescription
ez_metricscirculating_supply_nativeThe circulating supply of HYPE in native tokens
ez_metricsnet_supply_change_nativeThe net change in the circulating supply of HYPE in native tokens
ez_metricsemissions_nativeThe amount of new HYPE tokens emitted
ez_metricspremine_unlocks_nativeThe amount of native tokens unlocked from premine
ez_metricsburns_nativeThe amount of HYPE tokens burned

Sample Queries

Trading Activity Analysis

-- Analyze Hyperliquid trading activity
SELECT
    date,
    perp_volume,
    spot_volume,
    perp_dau,
    perp_txns
FROM
    art_share.hyperliquid.ez_metrics
WHERE
    date >= DATEADD(month, -3, CURRENT_DATE())
ORDER BY
    date ASC

Revenue Stream Breakdown

-- Analyze Hyperliquid revenue streams
SELECT
    date,
    ecosystem_revenue,
    perp_fees,
    spot_fees,
    chain_fees
FROM
    art_share.hyperliquid.ez_metrics
WHERE
    date >= DATEADD(month, -3, CURRENT_DATE())
ORDER BY
    date ASC

Cash Flow Distribution

-- Track how Hyperliquid revenue is distributed
SELECT
    date,
    ecosystem_revenue,
    buyback_cash_flow,
    service_cash_flow,
    burned_cash_flow
FROM
    art_share.hyperliquid.ez_metrics
WHERE
    date >= DATEADD(month, -1, CURRENT_DATE())
ORDER BY
    date ASC

Token Economics Analysis

-- Track HYPE token supply changes
SELECT
    date,
    price,
    circulating_supply_native,
    emissions_native,
    premine_unlocks_native,
    burns_native,
    net_supply_change_native
FROM
    art_share.hyperliquid.ez_metrics
WHERE
    date >= '2023-06-01'
ORDER BY
    date ASC

Cross-Chain Comparison

-- Compare metrics across chains
SELECT
    date,
    chain,
    perp_volume,
    perp_dau,
    ecosystem_revenue,
    burned_cash_flow
FROM
    art_share.hyperliquid.ez_metrics_by_chain
WHERE
    date >= DATEADD(month, -1, CURRENT_DATE())
ORDER BY
    chain, date ASC