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

> Known centralized exchange deposit addresses — identified user-facing deposit wallets by exchange.

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.deposit_addresses` table contains programmatically detected user deposit addresses — identified through on-chain consolidation patterns where tokens flow from external wallets through deposit addresses to known CEX hot wallets.

## Table Schema

| Column                           | Type        | Description                        |
| -------------------------------- | ----------- | ---------------------------------- |
| `blockchain`                     | `VARCHAR`   | Blockchain                         |
| `address`                        | `VARBINARY` | Deposit address                    |
| `cex_name`                       | `VARCHAR`   | CEX name                           |
| `first_deposit_token_standard`   | `VARCHAR`   | Token standard of first deposit    |
| `first_deposit_token_address`    | `VARBINARY` | Token address of first deposit     |
| `deposit_first_block_time`       | `TIMESTAMP` | Time of first deposit              |
| `consolidation_first_block_time` | `TIMESTAMP` | Time of first consolidation by CEX |
| `deposit_count`                  | `BIGINT`    | Number of deposits                 |
| `consolidation_count`            | `BIGINT`    | Number of consolidations           |
| `amount_deposited`               | `DOUBLE`    | Total amount deposited             |
| `consolidation_unique_key`       | `VARCHAR`   | Unique key for consolidation       |
| `deposit_unique_key`             | `VARCHAR`   | Unique key for deposit             |

## Table sample

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