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

# CCTP Transactions

> Noble blockchain Cross-Chain Transfer Protocol transactions 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 Transfer Protocol (CCTP) transactions in the Noble blockchain, including token transfers, 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 transaction 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 transaction.                   |
| **dst\_domain**        | varchar                     | The destination domain of the transaction.              |
| **authorized\_caller** | varchar                     | The address of the authorized caller.                   |
| **contract**           | varchar                     | The contract address involved in the transaction.       |
| **nonce**              | varchar                     | The nonce associated with the transaction.              |
| **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="cctp_transactions" />
