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

### Table Details

| Property            | Value                                            |
| ------------------- | ------------------------------------------------ |
| Table Name          | `provenance.assets.transfers`                    |
| Table Status        | Beta 🌱                                          |
| Unique Key          | `block_timestamp`, `unique_id`                   |
| Clustering Key(s)   | `block_timestamp::date`                          |
| Search Optimization | `from_address`, `to_address`, `transaction_hash` |

### Table Columns

| Column Name                     | Data Type         | Description                                                                    |
| ------------------------------- | ----------------- | ------------------------------------------------------------------------------ |
| from\_address                   | VARCHAR(16777216) | The sender address of the transfer.                                            |
| to\_address                     | VARCHAR(16777216) | The recipient address of the transfer.                                         |
| currency                        | VARCHAR(16777216) | Token denomination identifier of the asset transferred (e.g., nhash, ibc/...). |
| token\_name                     | VARCHAR(16777216) | The name of the token.                                                         |
| token\_symbol                   | VARCHAR(16777216) | The symbol of the token.                                                       |
| raw\_amount\_str                | VARCHAR(16777216) | The raw token amount as a string.                                              |
| raw\_amount                     | FLOAT             | The raw token amount before decimal normalization.                             |
| amount\_str                     | VARCHAR(16777216) | The normalized token amount as a string.                                       |
| amount                          | FLOAT             | The normalized token amount of the transfer.                                   |
| usd\_amount                     | FLOAT             | The USD value of the transfer.                                                 |
| usd\_exchange\_rate             | FLOAT             | The exchange rate used to calculate the USD value.                             |
| event\_type                     | VARCHAR(16777216) | The type of transfer event (e.g., transfer, ibc\_transfer, coin\_spent).       |
| tx\_sender                      | VARCHAR(16777216) | The address that initiated the transaction.                                    |
| transaction\_hash               | VARCHAR(64)       | The hash of the transaction containing this transfer.                          |
| transaction\_index              | NUMBER(38,0)      | The index of the transaction within the block.                                 |
| event\_index                    | NUMBER(38,0)      | The index of the event within the transaction.                                 |
| block\_timestamp                | TIMESTAMP\_NTZ(9) | Timestamp of the block containing this transfer.                               |
| block\_number                   | NUMBER(38,0)      | The height of the block containing this transfer.                              |
| block\_hash                     | VARCHAR(64)       | The hash of the block containing this transfer.                                |
| code                            | NUMBER(38,0)      | The transaction result code (0 indicates success).                             |
| tx\_success                     | BOOLEAN           | Whether the transaction was successful.                                        |
| authz\_msg\_index               | NUMBER(38,0)      | The index of the authorized message within an authz grant execution.           |
| memo                            | VARCHAR(16777216) | The memo field attached to the transaction.                                    |
| src\_channel                    | VARCHAR(16777216) | The source IBC channel for cross-chain transfers.                              |
| dst\_channel                    | VARCHAR(16777216) | The destination IBC channel for cross-chain transfers.                         |
| unique\_id                      | VARCHAR(16777216) | A unique identifier for the transfer.                                          |
| \_created\_at                   | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was created in the database.                       |
| \_updated\_at                   | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was last updated in the database.                  |
| \_changed\_since\_full\_refresh | BOOLEAN           | Indicates if the record has changed since the last full data refresh.          |
