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.raw.question_metadata table contains snapshots of Hyperliquid HIP-4 questions. A question groups two or more named outcomes plus a fallback outcome (“Other”). Recurring price-binary outcomes are not grouped under a question.

Table Columns

Column NameDescription
timestampUTC timestamp of the snapshot.
questionThe question ID (numeric). Groups outcomes via named_outcomes and fallback_outcome.
nameQuestion display name.
descriptionQuestion description.
fallback_outcomeThe outcome ID representing the fallback / “Other” choice for this question.
named_outcomesVARIANT array of outcome IDs that are explicitly named under this question.
settled_named_outcomesVARIANT array of outcome IDs that have settled. Empty until the question resolves.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Sample Query

SELECT
  timestamp,
  question,
  name,
  fallback_outcome,
  named_outcomes,
  settled_named_outcomes
FROM hyperliquid.raw.question_metadata
WHERE TO_DATE(timestamp) >= CURRENT_DATE - 7
ORDER BY timestamp DESC, question
LIMIT 100