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

# safe.safes_all

> All Safe (formerly Gnosis Safe) multisig wallet addresses across supported chains, with creation version and creation time.

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 `safe.safes_all` table lists all deployed Safe multisig wallets across supported EVM chains. Each row represents a unique Safe contract with its creation metadata.

## Table Schema

| Column             | Type        | Description                              |
| ------------------ | ----------- | ---------------------------------------- |
| `blockchain`       | `VARCHAR`   | Blockchain on which the Safe is deployed |
| `address`          | `VARBINARY` | Safe contract address                    |
| `creation_version` | `VARCHAR`   | Initial Safe version during creation     |
| `block_date`       | `DATE`      | Date of Safe creation                    |
| `creation_time`    | `TIMESTAMP` | Datetime of Safe creation                |
| `tx_hash`          | `VARBINARY` | Transaction hash of Safe creation        |

## Table sample

<TableSample tableSchema="safe" tableName="safes_all" />
