Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.allium.so/llms.txt

Use this file to discover all available pages before exploring further.

The hyperliquid.unhydrated.summaries_eod table contains end-of-day account summary snapshots for every (user, dex) on Hyperliquid. One row per day, keeping the last snapshot of the day.

Table Columns

Identifiers

Column NameDescription
block_dateCalendar date of the summary snapshot.
userUser wallet address.
dexDEX deployer address associated with the user.
timestampTimestamp of the last snapshot taken on this day.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Agent

Column NameDescription
agent_addressAgent address associated with the user.
agent_valid_untilAgent validity timestamp.

Cross Margin

Column NameDescription
cross_maintenance_margin_usedCross maintenance margin used.
cross_margin_summary_account_valueCross margin summary account value.
cross_margin_summary_total_margin_usedCross margin summary total margin used.
cross_margin_summary_total_natl_posCross margin summary total notional position.
cross_margin_summary_total_raw_usdCross margin summary total raw USD.

Margin Summary

Column NameDescription
margin_summary_account_valueMargin summary account value.
margin_summary_total_margin_usedMargin summary total margin used.
margin_summary_total_natl_posMargin summary total notional position.
margin_summary_total_raw_usdMargin summary total raw USD.

Account & Vault

Column NameDescription
withdrawableWithdrawable amount.
net_depositNet deposit amount.
is_vaultTrue when the user is a vault.
total_vault_equityTotal vault equity.
pnlPnL of the user at the snapshot timestamp.

Staking

Column NameDescription
staking_delegatedAmount of staked tokens delegated.
staking_undelegatedAmount of staked tokens undelegated.
staking_total_pending_withdrawalTotal amount of staked tokens pending withdrawal.

Sample Query

SELECT
  block_date,
  user,
  margin_summary_account_value,
  withdrawable,
  pnl
FROM hyperliquid.unhydrated.summaries_eod
WHERE block_date >= CURRENT_DATE - 7
ORDER BY block_date DESC, margin_summary_account_value DESC
LIMIT 100