> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Transfers

> Track all transfers of RWA tokens across different blockchains.

## Overview

The transfers table tracks all movement of RWA tokens across different blockchains, including regular transfers between addresses as well as mint and burn events.

## Tables

| Table Name                 | Description                                               |
| -------------------------- | --------------------------------------------------------- |
| `crosschain.rwa.transfers` | All transfers of RWA tokens across different blockchains. |

## Table Columns

<Tabs>
  <Tab title="Transfers">
    All transfers of RWA tokens across different blockchains. This model tracks the movement of tokenized traditional assets across all asset classes and asset types.

    Unique key: `unique_id`

    | Column Name             | Description                                                                                                            |
    | ----------------------- | ---------------------------------------------------------------------------------------------------------------------- |
    | `rwa_class`             | **(Deprecated — removed March 15, 2026)** Classification of the RWA token. Use `asset_class` and `asset_type` instead. |
    | `asset_class`           | Top-level V2 classification (rates, equities, credit, fx, commodities, private\_funds, real\_estate)                   |
    | `asset_type`            | Granular V2 sub-classification within the asset class                                                                  |
    | `chain`                 | The blockchain network where the transfer occurred (e.g., ethereum, solana, aptos)                                     |
    | `token_type`            | The token standard (e.g., erc20, spl\_token)                                                                           |
    | `token_address`         | The contract address of the RWA token                                                                                  |
    | `token_name`            | The name of the RWA token                                                                                              |
    | `token_symbol`          | The symbol of the RWA token                                                                                            |
    | `raw_amount`            | The raw amount of tokens transferred (not adjusted for decimals)                                                       |
    | `amount`                | The amount of tokens transferred (adjusted for decimals)                                                               |
    | `usd_amount`            | The USD value of the transferred tokens at the time of transfer                                                        |
    | `from_address`          | The address that sent the tokens                                                                                       |
    | `to_address`            | The address that received the tokens                                                                                   |
    | `token_acc_from`        | The token account of the sender (applicable for Solana only)                                                           |
    | `token_acc_to`          | The token account of the receiver (applicable for Solana only)                                                         |
    | `transaction_hash`      | The hash of the transaction (or txn\_id for Solana)                                                                    |
    | `block_timestamp`       | The timestamp of the block when the transaction was executed                                                           |
    | `block_number`          | The number of the block when the transaction was executed                                                              |
    | `block_hash`            | The hash of the block when the transaction was executed                                                                |
    | `unique_id`             | Unique identifier for the transfer event                                                                               |
    | `event_name`            | The name of the transfer event (e.g., Transfer, Mint, Burn)                                                            |
    | `is_mint`               | Boolean flag indicating if this is a token minting event                                                               |
    | `is_burn`               | Boolean flag indicating if this is a token burning event                                                               |
    | `_transfers_created_at` | Timestamp when the transfer was first recorded in the source system                                                    |
    | `_created_at`           | Timestamp when this record was created                                                                                 |
    | `_updated_at`           | Timestamp when this record was last updated                                                                            |
  </Tab>
</Tabs>
