Skip to main content
The labels.ens table on Dune provides key information about Ethereum Name Service (ENS) domains and their associated addresses. This table is instrumental in linking human-readable names with blockchain addresses, aiding in identity verification and data aggregation within the Ethereum ecosystem.

Table Schema

ColumnTypeDescription
blockchainVARCHARBlockchain (always Ethereum)
addressVARBINARYResolved blockchain address
nameVARCHARENS domain name (e.g., vitalik.eth)
categoryVARCHARLabel category
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 retrieve details for a specific ENS name within the Ethereum blockchain:
SELECT
  address,
  name
FROM
  labels.ens
WHERE
  name = 'vitalik.eth'