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

> Fungible Token Transfers on Aptos.

The `aptos.assets.fungible_transfers` table contains transfers of coin / fungible transfers.

| Column Name          | Description                                                                                |
| -------------------- | ------------------------------------------------------------------------------------------ |
| from\_address        | The source address of the fungible token transfer                                          |
| to\_address          | The destination address of the fungible token transfer                                     |
| token\_type          | Type of token - either 'coin' or 'fungible\_asset'                                         |
| coin\_address        | Contract address of the coin (applicable when token\_type is 'coin')                       |
| coin\_name           | Name of the coin (applicable when token\_type is 'coin')                                   |
| coin\_symbol         | Symbol of the coin (applicable when token\_type is 'coin')                                 |
| coin\_decimals       | Decimal precision of the coin (applicable when token\_type is 'coin')                      |
| fa\_address          | Contract address of the fungible asset (applicable when token\_type is 'fungible\_asset')  |
| fa\_name             | Name of the fungible asset (applicable when token\_type is 'fungible\_asset')              |
| fa\_symbol           | Symbol of the fungible asset (applicable when token\_type is 'fungible\_asset')            |
| fa\_decimals         | Decimal precision of the fungible asset (applicable when token\_type is 'fungible\_asset') |
| token\_address       | Coalesced address from either coin\_address or fa\_address                                 |
| token\_name          | Coalesced name from either coin\_name or fa\_name                                          |
| token\_symbol        | Coalesced symbol from either coin\_symbol or fa\_symbol                                    |
| token\_decimals      | Coalesced decimals from either coin\_decimals or fa\_decimals                              |
| match\_type          | Classification of how the transfer was matched/identified                                  |
| transfer\_type       | Type of transfer operation                                                                 |
| withdraw\_metadata   | JSON metadata for the withdrawal event                                                     |
| deposit\_metadata    | JSON metadata for the deposit event                                                        |
| raw\_amount\_str     | Raw transfer amount as a string                                                            |
| raw\_amount          | Raw transfer amount as a float                                                             |
| amount\_str          | Normalized transfer amount as a string (adjusted for token decimals)                       |
| amount               | Normalized transfer amount as a float                                                      |
| usd\_amount          | USD value of the transfer at the time of transaction                                       |
| usd\_exchange\_rate  | USD exchange rate of the token at the time of transaction                                  |
| tx\_sender           | Address that sent the transaction                                                          |
| tx\_payload          | Full payload details of the transaction                                                    |
| block\_hash          | Hash of the block containing the transfer                                                  |
| block\_height        | Block number/height of the transfer                                                        |
| block\_timestamp     | Timestamp when the block was created                                                       |
| transaction\_hash    | Hash of the transaction containing the transfer                                            |
| transaction\_index   | Index of the transaction within the block                                                  |
| transaction\_version | Version number of the transaction                                                          |
| event\_index         | Index of the event within the transaction                                                  |
| unique\_id           | Unique identifier for the transfer event                                                   |
| created\_at          | Timestamp when this record was created                                                     |
| updated\_at          | Timestamp when this record was last updated                                                |
| tx\_function         | Function called in the transaction (currently null in the example)                         |
