Skip to main content
The labels.addresses table on Dune catalogs specific blockchain addresses, associating them with descriptive labels, categories, and usage metrics. This table is a superset of many other labels.<category> tables, providing a comprehensive overview of labeled addresses across various categories and blockchains. You can use the category column to filter labels for the specific type of address you are interested in.
The labels.addresses table serves as a central repository for all labeled addresses on Dune, offering a consolidated view of labeled entities across different categories and blockchains.

Available Categories

Here are all the distinct category values available in the labels.addresses table:

Table Schema

ColumnTypeDescription
blockchainVARCHARBlockchain the address belongs to
addressVARBINARYLabeled blockchain address
nameVARCHARHuman-readable label name for the address
categoryVARCHARLabel category (e.g., dex, cex, bridge, dao)
contributorVARCHARContributor(s) who created the label
sourceVARCHARHow the label was generated (static or query-based)
created_atDATEWhen the label was created
updated_atTIMESTAMPWhen the label was last updated
model_nameVARCHARName of the label model sourced from
label_typeVARCHARType of label

Table Sample

Example Query

The following SQL query demonstrates how to find addresses categorized under ‘dex’ within the Binance blockchain:
SELECT
  address,
  name
FROM
  labels.addresses
WHERE
  category = 'dex' AND
  blockchain = 'bnb'