> ## 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 movement of assets across major blockchain networks.

# Transfers

The Bridge Transfers table aggregates transaction-level bridge transfers across multiple blockchains indexed by Allium.

<Info>
  We are actively improving bridge protocol & blockchain coverage and data
  completeness for the bridges vertical.
</Info>

### Columns

Unique key: `unique_id`

| Column Name                | Data Type         | Description                                                                                                             |
| -------------------------- | ----------------- | ----------------------------------------------------------------------------------------------------------------------- |
| bridge                     | VARCHAR           | The slug or name of the bridge. For canonical bridges, the bridge name corresponds to the destination chain name.       |
| protocol                   | VARCHAR           | The protocol associated with the bridge transfer. Optimism stack bridge events will share the same bridge protocol, op. |
| contract\_address          | VARCHAR           | The contract address of the bridge.                                                                                     |
| event\_name                | VARCHAR           | The name of the event that triggered the transfer.                                                                      |
| sender\_address            | VARCHAR           | The address that initiated the transfer.                                                                                |
| recipient\_address         | VARCHAR           | The address that received the transfer on the destination chain, if applicable.                                         |
| direction                  | VARCHAR           | The direction of the transfer (e.g., inbound or outbound), based on the chain.                                          |
| source\_chain\_id          | VARCHAR           | The ID of the source chain. Note that for non-EVM chains, there is typically no chainID.                                |
| source\_chain              | VARCHAR           | The name of the source chain, i.e. the chain on which a token was originally deployed and minted.                       |
| destination\_chain\_id     | VARCHAR           | The ID of the destination chain. Note that for non-EVM chains, there is typically no chainID.                           |
| destination\_chain         | VARCHAR           | The name of the destination chain, i.e. the chain on which a bridge user wants to have their tokens.                    |
| token\_in\_address         | VARCHAR           | The address of the token being transferred.                                                                             |
| token\_in\_name            | VARCHAR           | The name of the token being transferred.                                                                                |
| token\_in\_symbol          | VARCHAR           | The symbol of the token being transferred.                                                                              |
| token\_in\_amount\_raw     | VARCHAR           | The raw amount of the token being transferred.                                                                          |
| token\_in\_amount\_str     | VARCHAR           | The normalized amount of the token being transferred, in string format to retain precision.                             |
| token\_in\_amount          | FLOAT             | The normalized amount of the token being transferred.                                                                   |
| usd\_in\_amount            | FLOAT             | The USD equivalent of the token being transferred.                                                                      |
| token\_out\_address        | VARCHAR           | (Nullable) The address of the token being transferred out.                                                              |
| token\_out\_name           | VARCHAR           | (Nullable) The name of the token being transferred out.                                                                 |
| token\_out\_symbol         | VARCHAR           | (Nullable) The symbol of the token being transferred out.                                                               |
| token\_out\_amount\_raw    | VARCHAR           | (Nullable) The raw amount of the token being transferred out.                                                           |
| token\_out\_amount\_str    | VARCHAR           | (Nullable) The normalized amount of the token being transferred out, in string format to retain precision.              |
| token\_out\_amount         | FLOAT             | (Nullable) The normalized amount of the token being transferred out.                                                    |
| usd\_out\_amount           | FLOAT             | (Nullable) The USD equivalent of the token being transferred out.                                                       |
| usd\_amount                | FLOAT             | The USD equivalent of the transfer, capped at a maximum value.                                                          |
| extra\_fields              | VARIANT           | Additional fields related to the transfer.                                                                              |
| transaction\_from\_address | VARCHAR           | The address from which the transaction was sent.                                                                        |
| transaction\_to\_address   | VARCHAR           | The address to which the transaction was sent.                                                                          |
| transaction\_hash          | VARCHAR           | The hash of the transaction.                                                                                            |
| transaction\_index         | BIGINT            | The index of the transaction within the block.                                                                          |
| log\_index                 | BIGINT            | The index of the log within the transaction.                                                                            |
| block\_number              | BIGINT            | The number of the block containing the transaction.                                                                     |
| block\_timestamp           | TIMESTAMP\_NTZ(9) | The timestamp of the block containing the transaction.                                                                  |
| block\_hash                | VARCHAR           | The hash of the block containing the transaction.                                                                       |
| unique\_id                 | VARCHAR           | A unique identifier for the transfer.                                                                                   |
| created\_at                | TIMESTAMP\_NTZ(9) | The timestamp when the record was created.                                                                              |
| updated\_at                | TIMESTAMP\_NTZ(9) | The timestamp when the record was last updated.                                                                         |
