| token_type | VARCHAR(16777216) | Type of the token (e.g., ‘erc20’, ‘native’) |
| from_address | VARCHAR(42) | Address from which the tokens were transferred |
| to_address | VARCHAR(42) | Address where the tokens were transferred to |
| token_address | VARCHAR(42) | Token address of the token |
| token_name | VARCHAR(16777216) | Name of the token |
| token_symbol | VARCHAR(16777216) | Token symbol |
| raw_amount_str | VARCHAR(16777216) | Amount of tokens moved (unnormalized) in string |
| raw_amount | FLOAT | Amount of tokens moved (unnormalized) |
| amount_str | VARCHAR(16777216) | Amount of tokens moved, normalized in string |
| amount | FLOAT | Amount of tokens moved, normalized by the decimal points defined in the token contract |
| usd_amount | FLOAT | The amount of tokens moved, in $USD |
| usd_exchange_rate | FLOAT | The price of a single token, in USD |
| transaction_from_address | VARCHAR(42) | The address that initiated the transaction |
| transaction_to_address | VARCHAR(42) | The address that received the transaction |
| 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 has index 0 |
| log_index | NUMBER(38,0) | The position of this log within the block. The first log has index 0 |
| call_type | VARCHAR(16777216) | Type of the call that generated this transfer |
| transfer_type | VARCHAR(16777216) | Type of the transfer |
| block_timestamp | TIMESTAMP_NTZ(9) | The timestamp of the block that contains this transfer |
| block_number | NUMBER(38,0) | The block number that contains this transfer |
| block_hash | VARCHAR(66) | The block hash that contains this transfer |
| unique_id | VARCHAR(16777216) | Unique id for each transfer, includes transaction hash, log index and credit/debit type |
| _tokens_updated_at | TIMESTAMP_NTZ(9) | Timestamp when token metadata was last updated |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp when this record was created |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp when this record was last updated |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full refresh |