> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# labels.ens

> Ethereum Name Service (ENS) domain resolution data — links human-readable .eth names to blockchain addresses for identity verification and aggregation

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

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

| Column        | Type        | Description                                         |
| ------------- | ----------- | --------------------------------------------------- |
| `blockchain`  | `VARCHAR`   | Blockchain (always Ethereum)                        |
| `address`     | `VARBINARY` | Resolved blockchain address                         |
| `name`        | `VARCHAR`   | ENS domain name (e.g., vitalik.eth)                 |
| `category`    | `VARCHAR`   | Label category                                      |
| `contributor` | `VARCHAR`   | Contributor(s) who created the label                |
| `source`      | `VARCHAR`   | How the label was generated (static or query-based) |
| `created_at`  | `DATE`      | When the label was created                          |
| `updated_at`  | `TIMESTAMP` | When the label was last updated                     |
| `model_name`  | `VARCHAR`   | Name of the label model sourced from                |
| `label_type`  | `VARCHAR`   | Type of label                                       |

## Table Sample

<TableSample tableSchema="labels" tableName="ens" />

## Example Query

The following SQL query demonstrates how to retrieve details for a specific ENS name within the Ethereum blockchain:

```sql theme={null}
SELECT
  address,
  name
FROM
  labels.ens
WHERE
  name = 'vitalik.eth'
```
