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

# ethereum.contracts

> Verified contract registry on Ethereum — contract name, namespace, ABI, and deployment metadata.

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>
  </>;

## Table Description

The `ethereum.contracts` table contains information about the contracts Dune has decoded on the Ethereum blockchain.

## Column Descriptions

| Column             | Type             | Description                                           |
| ------------------ | ---------------- | ----------------------------------------------------- |
| `abi_id`           | `varchar`        | Unique identifier for the ABI                         |
| `abi`              | `array(varchar)` | Contract ABI (Application Binary Interface)           |
| `address`          | `varbinary`      | Contract address                                      |
| `from`             | `varbinary`      | Address that deployed the contract                    |
| `code`             | `varbinary`      | Deployed bytecode of the contract                     |
| `name`             | `varchar`        | Name of the contract                                  |
| `namespace`        | `varchar`        | Project namespace (e.g., uniswap\_v3)                 |
| `dynamic`          | `boolean`        | Whether the contract was dynamically detected         |
| `base`             | `boolean`        | Whether this is the base contract submission          |
| `factory`          | `boolean`        | Whether this contract is a factory contract           |
| `detection_source` | `varchar`        | How the contract was detected (manual, factory, etc.) |
| `created_at`       | `timestamp`      | When this record was created in Dune                  |

## Table Sample

<TableSample tableSchema="ethereum" tableName="contracts" />
