| from_address | VARCHAR(66) | Address where the token is being transferred from. |
| to_address | VARCHAR(66) | Address where the token is being transferred to. |
| token_address | VARCHAR(66) | Token address of the asset transferred. |
| token_name | VARCHAR(16777216) | Name of the asset transferred. |
| token_symbol | VARCHAR(16777216) | Token symbol of the asset transferred. |
| raw_amount_str | VARCHAR(16777216) | Amount of tokens transferred (unnormalized) in string to retain precision. |
| raw_amount | FLOAT | Amount of tokens transferred (unnormalized). |
| amount_str | VARCHAR(16777216) | Amount of token transferred, normalized in string to retain precision. |
| amount | FLOAT | Amount of token transferred, normalized. |
| usd_amount | FLOAT | The amount of tokens moved, in $USD. |
| usd_exchange_rate | FLOAT | The exchange rate used to calculate the usd_amount. |
| sender_address | VARCHAR(66) | Address that initiated the bridge transfer on the source chain. |
| transaction_hash | VARCHAR(66) | Transaction hash that this transfer belongs to. |
| transaction_index | NUMBER(38,0) | The position of this transaction in the block. The first transaction of a block has index 0. |
| event_index | NUMBER(38,0) | Zero-based index of this event within its transaction. The specific semantics depend on the chain — on Aptos this is the event_index within the transaction; on Cosmos this is within the message. |
| block_timestamp | TIMESTAMP_NTZ(9) | The time when the block that contains this transaction was included on the blockchain. |
| block_number | NUMBER(38,0) | The block number that the corresponding transaction of this transfer belongs to. |
| block_hash | VARCHAR(66) | The block hash that the corresponding transaction of this transfer belongs to. |
| unique_id | VARCHAR(16777216) | Unique ID generated for each transfer. Includes transaction hash and log index. |
| _tokens_updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the token metadata was last updated. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full refresh. |