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

# Fungible Token Transfers

### Table Details

| Property            | Value                                            |
| ------------------- | ------------------------------------------------ |
| Table Name          | `dydx.assets.fungible_token_transfers`           |
| Table Status        | Production-Ready                                 |
| 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., uatom, 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\_height                   | NUMBER(38,0)      | The height of the block containing this transfer.                                                                                                                                                       |
| block\_hash                     | VARCHAR(64)       | The hash of the block containing this transfer.                                                                                                                                                         |
| block\_event\_kind              | VARCHAR(16777216) | The phase in which the block event was emitted. Possible values are: begin (before transactions are processed), end (after all transactions are processed), finalize (immediately before block commit). |
| block\_event\_index             | NUMBER(38,0)      | The index of the block event.                                                                                                                                                                           |
| block\_event\_type              | VARCHAR(16777216) | The type of the block event.                                                                                                                                                                            |
| 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) | The timestamp when the entry was created.                                                                                                                                                               |
| \_updated\_at                   | TIMESTAMP\_NTZ(9) | The timestamp when the entry was updated.                                                                                                                                                               |
| \_changed\_since\_full\_refresh | BOOLEAN           | Indicates if the record has changed since the last full data refresh.                                                                                                                                   |

### Related Docs

* [COSMOS Assets Fungible Token Transfers](/historical-data/supported-blockchains/cosmos-ecosystem/core-schemas/assets/fungible-token-transfers)
