Skip to main content
Three registry tables describe the assets we track. Every other asset table, daily or event by event, joins to them.
  • dimensions.assets: one row per curated asset.
  • dimensions.asset_tokens: one row per onchain deployment, one token contract on one chain.
  • dimensions.reference_assets: one row per thing an instrument tracks or wraps.

Tables

dimensions.assets contains one row per curated tokenized asset. The row belongs to no particular chain: it carries the assetโ€™s name, what kind of instrument it is, and what it tracks. The per-chain contracts live in dimensions.asset_tokens.
ColumnTypeDescription
asset_idSTRINGIdentifier of the asset, for example usdc.
reference_asset_idSTRINGWhat the asset tracks or wraps. Joins dimensions.reference_assets.
nameSTRINGDisplay name of the asset.
symbolSTRINGTicker symbol of the asset.
asset_typeSTRINGWhat kind of instrument it is: stablecoin, tokenized-stocks, tokenized-funds, lending-token, tokenized-commodities, liquid-staking-token, tokenized-cryptoasset or wrapped_native.
descriptionSTRINGShort description of the asset.
created_atTIMESTAMPWhen the asset entered the registry.
metrics_verified_atTIMESTAMPWhen the assetโ€™s published metrics were last verified. Null while unverified.
peg_currencySTRINGISO currency code of the peg, set when the asset tracks a national currency. Empty otherwise: a fund strategy, a share or a commodity is not a peg.
mica_indicatorSTRINGWhich MiCA category the peg implies: e_money_token_candidate for single-currency stablecoins, asset_referenced_token_candidate for other stablecoins, undetermined for everything else. An indicator, not a regulatory ruling.

Sample queries

Count assets by type. asset_type says what kind of instrument it is.