Skip to main content

Identity Demo Tables

Demo samples of key identity tables, each containing 5,000 randomly sampled rows from the full dataset. Use these to explore the schema and build queries before upgrading to full access.
Demo tables are available in the allium_identity.demo schema (e.g., allium_identity.demo.address_labels_demo).
Want full access? These demo tables are limited samples. For complete, production-grade identity data, contact our team at hello@allium.so to discuss access and pricing.

Address Labels

allium_identity.demo.address_labels_demo Blockchain addresses mapped to their primary entity, category, and risk indicators. Covers all chains.
Column NameDescription
chainThe blockchain network (e.g., ‘ethereum’, ‘solana’, ‘bitcoin’, ‘tron’).
addressThe blockchain address.
primary_labelThe primary attribution label for this address (e.g., ‘binance hot wallet’, ‘coinbase deposit wallet’).
primary_entityThe entity this address is attributed to (e.g., ‘binance’, ‘coinbase’, ‘uniswap’).
primary_categoryThe category of the entity (e.g., ‘exchange’, ‘defi’, ‘bridge’, ‘mev’).
subcategoryMore specific classification within the category.
primary_category_idNumeric ID for the primary category, for joining to taxonomy tables.
primary_entity_idNumeric ID for the primary entity, for joining to taxonomy tables.
is_illicitBoolean flag indicating the address belongs to an illicit category (e.g., exploit, scam).
is_high_riskBoolean flag indicating the address belongs to a high-risk category.
other_labelsArray of alternative attribution labels when multiple sources disagree.
other_entitiesArray of alternative entity attributions.
total_attribution_countNumber of distinct attribution sources for this address.
has_multiple_attributionsBoolean flag indicating whether this address has conflicting attributions from multiple sources.
attribution_dateDate when this address was first attributed.
chain_groupGrouping of chains (e.g., ‘evm’ for EVM-compatible chains).
confidenceConfidence level of the attribution.
source_typeType of data source for the attribution.
source_systemThe system that produced this attribution.
category_rankingPriority ranking of the category in collision resolution.
entity_rankingPriority ranking of the entity in collision resolution.
source_priorityPriority score of the attribution source.
composite_ranking_scoreCombined ranking score used to resolve competing attributions.
category_tierTier classification of the category.
entity_tierTier classification of the entity.
_attribution_processed_atTimestamp when the attribution was processed.
_attribution_updated_atTimestamp when the attribution was last updated.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Addresses Geography

allium_identity.demo.addresses_geography_demo Address-level geographic mapping with inferred country and region. Covers Ethereum, Polygon, and Base.
Column NameDescription
addressThe blockchain address (EVM only — Ethereum, Polygon, Base).
primary_countryThe most likely country associated with this address (e.g., ‘United States’, ‘South Korea’, ‘Turkey’). NULL if only region-level data is available.
primary_regionThe geographic region. One of ‘emea’, ‘apac’, or ‘americas’.
scoreComposite confidence score between 0 and 10.
confidenceCategorical confidence level: Very High, High, Medium, Low, or Very Low.
reasoningHuman-readable explanation of why this address was attributed to the given country.

Addresses Timezones

allium_identity.demo.addresses_timezones_demo Address-level timezone inference for individual user addresses. Covers EVM, Solana, and Tron.
Column NameDescription
addressThe blockchain address.
chainThe blockchain network (‘evm’, ‘solana’, ‘tron’).
likely_timezoneThe predicted timezone region. One of ‘emea’, ‘apac’, or ‘americas’.
separation_scoreScore between 0 and 1 measuring how clearly the top timezone separates from the second-best.
absolute_confidenceScore between 0 and 1 measuring how closely the activity pattern matches the predicted timezone.
sample_confidenceScore between 0 and 1 reflecting whether the address has enough transactions for a reliable prediction.
confidence_scoreFinal confidence score between 0 and 1.
conviction_levelCategorical label: Very High Conviction, High Conviction, Moderate Conviction, Low Conviction, or Very Low Conviction.
_updated_atTimestamp of when this row was last computed.

CEX Deposits & Withdrawals

allium_identity.demo.cex_deposits_withdrawals_demo Daily deposit and withdrawal volumes aggregated by entity, chain, and token.
Column NameDescription
dateThe date of the aggregated transfers.
entityThe exchange entity (e.g., ‘binance’, ‘coinbase’, ‘kraken’).
chainThe blockchain network.
token_addressThe token contract address.
token_symbolThe token symbol (e.g., ‘USDT’, ‘ETH’).
token_nameThe full token name.
amount_inTotal token amount deposited to the exchange on this date.
amount_outTotal token amount withdrawn from the exchange on this date.
usd_amount_inTotal USD value of deposits on this date.
usd_amount_outTotal USD value of withdrawals on this date.
net_usd_amountNet USD flow (usd_amount_in - usd_amount_out). Positive means net inflow.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Entity Balances Daily

allium_identity.demo.entity_balances_daily_demo Daily stablecoin and native token balances for entity wallets.
Column NameDescription
activity_dateThe date of the balance snapshot.
chainThe blockchain network.
wallet_idAnonymized wallet identifier (immutable, based on first transaction chronological order).
anonymized_labelHuman-readable label combining entity name and wallet ID (e.g., ‘Binance 42’).
primary_entityThe entity this wallet belongs to.
primary_categoryThe category of the entity (e.g., ‘exchange’).
token_typeEither ‘stablecoin’ or ‘native’.
token_addressThe token contract address (NULL for native tokens).
token_symbolThe token symbol (e.g., ‘USDT’, ‘ETH’).
stablecoin_idStandardized stablecoin identifier (e.g., ‘usdt’, ‘usdc’). NULL for native tokens.
balanceToken balance amount.
usd_balanceUSD value of the balance.
current_balance_rankRank of this wallet within the entity for the same token on the same date, by USD balance desc.
last_activity_block_timestampTimestamp of the last on-chain activity for this balance.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.