| address | VARCHAR(42) | Address of the account that was credited or debited value amount of token |
| counterparty_address | VARCHAR(42) | The address of counter party of this credit or debit transfer. |
| token_address | VARCHAR(42) | Token address of the asset transferred. Note: Native ETH does not have a contract address, but for convention, it is labelled as: 0x0000000000000000000000000000000000000000 |
| token_name | VARCHAR(16777216) | Name of the asset transferred. |
| token_symbol | VARCHAR(16777216) | Token symbol of the asset transferred. |
| token_id | VARCHAR(16777216) | Identifier for non-fungible tokens (ERC-721) or semi-fungible tokens (ERC-1155). Each unique token_id within a collection represents a distinct asset. |
| raw_amount | FLOAT | Amount of tokens moved (unnormalized). For ERC721 and ERC1155 tokens, there are no decimals division involved. |
| raw_amount_str | VARCHAR(16777216) | Raw collateral amount in USDC base units (6 decimals), as a string. |
| amount | FLOAT | Amount of token moved, normalized. |
| amount_str | VARCHAR(16777216) | Normalized token amount stored as a string to preserve full precision. Equivalent to amount but avoids floating-point truncation for very large or very small values. |
| usd_amount | FLOAT | The amount of tokens moved, in $USD. |
| usd_exchange_rate | FLOAT | Token symbol of this token. |
| transaction_from_address | VARCHAR(42) | Address of the externally-owned account (EOA) that signed and submitted the transaction. This is the wallet that paid gas, which may differ from the from_address of an individual token transfer if a contract is routing tokens on behalf of a user. |
| transaction_to_address | VARCHAR(42) | Address the transaction was sent to (the top-level to field of the transaction). May be a router, aggregator, or bridge contract rather than the direct recipient of assets. |
| transaction_hash | VARCHAR(66) | Transaction hash that this transfer belongs to. |
| transaction_index | NUMBER(38,0) | Zero-based position of the transaction within its block. The first transaction in a block has index 0. |
| block_timestamp | TIMESTAMP_NTZ(9) | The timestamp of the block that the corresponding transaction of this transfer belongs to. This is also the timestamp when this transfer occurred. |
| 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. |
| token_type | VARCHAR(16777216) | The type of asset transferred. Currently supports ETH, ERC20, ERC721 and ERC1155 tokens. |
| unique_id | VARCHAR(16777216) | Unique id generated to each transfer. Includes transaction hash, log index and credit and debit transaction type. |
| _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 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. |