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

# layerzero.transfers

> LayerZero cross-chain token transfers — bridged assets with source/destination chain details.

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 `layerzero.transfers` table contains all cross-chain transfers executed through the LayerZero protocol. Each transfer represents a value transfer event between source and destination chains.

## Table Schema

| Column Name            | Data Type | Description                                     |
| ---------------------- | --------- | ----------------------------------------------- |
| timestampUpdated       | timestamp | Timestamp of the last update                    |
| primary\_key           | string    | Unique identifier for the transfer              |
| messages\_foreign\_key | string    | Foreign key reference to the associated message |
| addr\_to               | string    | Recipient address                               |
| type\_transfer         | string    | Type of transfer                                |
| symbol                 | string    | Token symbol                                    |
| token                  | string    | Token address                                   |
| usd\_value             | double    | USD value of the transfer                       |
| \_updated\_at          | timestamp | Last update timestamp                           |
| \_ingested\_at         | timestamp | Ingestion timestamp                             |

## Sample Query

```sql theme={null}
-- Get the top tokens by volume transferred in the last 24 hours
SELECT 
    symbol,
    COUNT(*) as transfer_count,
    SUM(usd_value) as total_volume_usd
FROM layerzero.transfers
WHERE timestampUpdated >= NOW() - INTERVAL '24' HOUR
GROUP BY symbol
ORDER BY total_volume_usd DESC
LIMIT 10;
```
