Skip to main content
The hyperliquid.stablecoins.transfers table contains stablecoin transfer events on Hyperliquid, including mints, burns, and wallet-to-wallet transfers for all tracked stablecoin tokens, with USD-denominated amounts and token metadata.
This table is clustered by timestamp::date and token_address. Always include a timestamp filter in your WHERE clause to avoid scanning the full table.

Table Columns

Token & Classification

Column NameDescription
product_idStablecoin product identifier (e.g. ‘usdc_hyperliquid’).
is_nativeWhether the token is the chain’s native asset.
stablecoin_typeThe stablecoin type classification.
currencyThe fiat currency the stablecoin is denominated in (e.g. ‘usd’).
token_addressHyperliquid numeric token index.
token_nameFull stablecoin name.
token_symbolStablecoin symbol.

Transfer Details

Column NameDescription
from_addressThe sending address. Mint events originate from the zero/mint address.
to_addressThe receiving address. Burn events are sent to the burn address.
amount_strTransfer amount as VARCHAR (full precision).
amountTransfer amount in decimal units.
usd_amountTransfer value in USD.
usd_exchange_rateThe USD exchange rate applied to derive usd_amount.
event_typeThe transfer event type (e.g. transfer, mint, burn).
activity_typeHigher-level activity classification for the transfer.
trade_detailsJSON variant with additional transfer context, when available.

Block & Lineage

Column NameDescription
hashTransaction hash.
transfer_indexIndex of the transfer within its transaction.
block_heightThe height of the block.
block_hashThe block hash.
timestampThe UTC timestamp of the transfer.
unique_idDeterministic unique identifier per row.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.
_metadata_updated_atToken-metadata last update timestamp.

Sample Query

SELECT
  timestamp,
  token_symbol,
  event_type,
  from_address,
  to_address,
  usd_amount
FROM hyperliquid.stablecoins.transfers
WHERE timestamp >= CURRENT_DATE - 7
ORDER BY timestamp DESC
LIMIT 100