| from_address | VARCHAR(16777216) | Address that initiated the transfer [Bob’s Wallet] |
| from_address_b | VARCHAR(16777216) | Bounceable user-friendly format of from_address. |
| from_address_nb | VARCHAR(16777216) | Non-bounceable user-friendly format of from_address. |
| from_jetton_address | VARCHAR(16777216) | Jetton address of the user that initiated the transfer [Bob’s Jetton Wallet] |
| from_jetton_address_b | VARCHAR(16777216) | Bounceable user-friendly format of from_jetton_address. |
| from_jetton_address_nb | VARCHAR(16777216) | Non-bounceable user-friendly format of from_jetton_address. |
| to_address | VARCHAR(16777216) | Address that received the transfer [Alice’s wallet]Note: to_jetton_address included in our schema, this field is not present in the decoded transfer payload. |
| to_address_b | VARCHAR(16777216) | Bounceable user-friendly format of to_address. |
| to_address_nb | VARCHAR(16777216) | Non-bounceable user-friendly format of to_address. |
| jetton_master | VARCHAR(16777216) | Jetton master address in hex. This is the token contract equivalent (like ERC20) on TON. |
| jetton_master_b | VARCHAR(16777216) | Bounceable user-friendly format of jetton_master. |
| jetton_master_nb | VARCHAR(16777216) | Non-bounceable user-friendly format of jetton_master. |
| token_name | VARCHAR(16777216) | Name of the token |
| token_symbol | VARCHAR(16777216) | Symbol of the token |
| amount_str | VARCHAR(16777216) | Amount of the token in string format |
| amount | FLOAT | Amount of the token in float format |
| usd_amount | FLOAT | USD value of the token amount at the time of the event, computed using the hourly USD exchange rate. |
| usd_exchange_rate | FLOAT | USD price per unit of the token at the time of the event, used to compute usd_amount. Sourced from Allium’s hourly price feed. |
| raw_amount_str | VARCHAR(16777216) | The unnormalized amount of the token in string format |
| raw_amount | FLOAT | The unnormalized amount of the token in float format |
| response_destination | VARCHAR(16777216) | Response destination of the transfer [Joe’s wallet address] |
| response_destination_b | VARCHAR(16777216) | Bounceable user-friendly format of response_destination. |
| response_destination_nb | VARCHAR(16777216) | Non-bounceable user-friendly format of response_destination. |
| forward_ton_amount | VARCHAR(16777216) | Forward TON amount of the transfer |
| forward_payload | VARCHAR(16777216) | Forward payload of the transfer |
| query_id | VARCHAR(16777216) | Application-defined query identifier linking related messages in a transfer chain. |
| transfer_type | VARCHAR(16777216) | Category of this token movement. For native currency transfers: value_transfer (explicit send), gas_payment_to_miner (priority fee to block producer), or gas_burn (EIP-1559 base fee destroyed). For token transfers: always value_transfer. |
| opcode | VARCHAR(16777216) | Message operation code. Always ‘0x178d4519’ (JettonInternalTransfer). |
| action_result_code | NUMBER(38,0) | TON VM result code from the action phase; 0 = success, non-zero indicates an action error. |
| compute_exit_code | NUMBER(38,0) | TON VM exit code from the compute phase; 0 = success, non-zero indicates a specific error. |
| success | BOOLEAN | Boolean flag indicating whether the transaction executed successfully. True = succeeded, false = failed or reverted. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block that contains the transfer |
| utime | TIMESTAMP_NTZ(9) | Timestamp of the transfer |
| created_lt | NUMBER(38,0) | Logical time of the transfer |
| transaction_hash | VARCHAR(16777216) | Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain. |
| transaction_hash_hex | VARCHAR(16777216) | Hex-encoded lowercase hash of the transaction. |
| hash | VARCHAR(16777216) | Message hash of the transfer |
| message_index | NUMBER(38,0) | Zero-based position of the message within the transaction. A Cosmos transaction can contain multiple messages. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row. Generated from the fields that uniquely identify the record (e.g. transaction hash + log index). Stable across full refreshes. |
| bounce | BOOLEAN | Bounce of the transfer |
| bounced | BOOLEAN | Bounced of the transfer |
| masterchain_seqno | NUMBER(38,0) | Sequence number on the masterchain |
| seqno | NUMBER(38,0) | Sequence number on the workchain |
| shard | VARCHAR(16777216) | Shard of the transfer |
| workchain | NUMBER(38,0) | Workchain of the transfer |
| _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. |