> ## 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.

# cex.addresses

> Centralized exchange address directory — all known addresses attributed to major exchanges.

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 `cex.addresses` table contains all identified centralized exchange addresses across 29 chains, including non-EVM networks like Bitcoin, Solana, Aptos, Tron, and Sui.

## Table Schema

| Column          | Type        | Description                  |
| --------------- | ----------- | ---------------------------- |
| `blockchain`    | `VARCHAR`   | Blockchain                   |
| `address`       | `VARBINARY` | CEX-controlled address       |
| `cex_name`      | `VARCHAR`   | Centralized exchange name    |
| `distinct_name` | `VARCHAR`   | Distinct name of the address |
| `added_by`      | `VARCHAR`   | Who added the address        |
| `added_date`    | `DATE`      | Date the address was added   |

## Table sample

<TableSample tableSchema="cex" tableName="addresses" />
