Skip to main content
dimensions.accounts holds one row per labeled address on Solana, keyed on chain_id and address. An account is a wallet or a program, such as an exchange wallet or an Orca pool, and its row names the project that runs it, so a raw address in any Solana table resolves to a name. label_source says how an address reached the table. The Solana rows are curated, an attribution a person authored; factory_derived marks an address a known factory emitted and names that factory in parent_address. Every column is documented at Accounts.

Sample queries

The table is clustered on account_id, and that key is the one filter that prunes a scan of it. A query filtered on chain_id or project_id instead reads every row, which stays inexpensive because the table is small, but keep the select list to the columns you need.
Rank the projects with the most labeled addresses on Solana. Joining dimensions.projects on project_id adds each project’s name and its market sector.