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

# Bridge Transfers

> Noble blockchain cross-chain bridge transfer data

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

This table contains data about cross-chain bridge transfers in the Noble blockchain, including transfer details, source and destination chains, and transfer status.

## Column Descriptions

| Column name            | Data Type                   | Description                                          |
| ---------------------- | --------------------------- | ---------------------------------------------------- |
| **block\_date**        | date                        | The date of the block.                               |
| **block\_height**      | bigint                      | The height of the block where the transfer occurred. |
| **block\_timestamp**   | timestamp(3) with time zone | Timestamp when the block was validated.              |
| **tx\_id**             | varchar                     | The unique ID of the transaction.                    |
| **tx\_index**          | bigint                      | The index of the transaction in the block.           |
| **message\_index**     | bigint                      | The index of the message in the transaction.         |
| **event\_index**       | bigint                      | The index of the event in the message.               |
| **action\_index**      | bigint                      | The index of the action in the event.                |
| **sender**             | varchar                     | The address of the sender.                           |
| **receiver**           | varchar                     | The address of the receiver.                         |
| **token\_amount**      | decimal(38, 0)              | The amount of tokens transferred.                    |
| **token\_denom**       | varchar                     | The denomination of the token.                       |
| **src\_domain**        | varchar                     | The source domain of the transfer.                   |
| **dst\_domain**        | varchar                     | The destination domain of the transfer.              |
| **protocol**           | varchar                     | The protocol used for the transfer.                  |
| **protocol\_metadata** | varchar                     | Additional metadata related to the protocol.         |
| **updated\_at**        | timestamp(3) with time zone | Timestamp of when the record was last updated.       |
| **ingested\_at**       | timestamp(3) with time zone | Timestamp of when the record was ingested into Dune. |

## Table Sample

<TableSample tableSchema="noble" tableName="bridge_transfers" />
