| event_type | VARCHAR(16777216) | Type of token-transfer event (e.g. transfer, mint, burn, clawback). |
| event_stage | VARCHAR(16777216) | Stage at which the event was emitted (e.g. during_tx, after_tx). |
| event_index | NUMBER(38,0) | Index of this event within its transaction. |
| from_address | VARCHAR(16777216) | Address whose balance decreased in this transfer. |
| from_muxed_id | VARCHAR(16777216) | 64-bit sub-account id of the sender’s multiplexed account, if used. |
| to_address | VARCHAR(16777216) | Address whose balance increased in this transfer. |
| to_muxed_id | VARCHAR(16777216) | 64-bit sub-account id of the recipient’s multiplexed account, if used. |
| contract_id | VARCHAR(16777216) | Soroban contract address of the token, for contract-based assets. |
| asset_id | VARCHAR(16777216) | Composite code:issuer identifier of the asset for non-native assets. |
| asset_code | VARCHAR(16777216) | Asset code for a classic asset. |
| asset_issuer | VARCHAR(16777216) | Issuer G-address for a classic asset. |
| token_id | NUMBER(38,0) | Identifier of the Soroban token for contract-based assets. |
| amount_str | VARCHAR(16777216) | Transfer amount in the token’s smallest unit, stored as a string for full precision. |
| amount | NUMBER(38,0) | Transfer amount in the token’s smallest unit (stroops for classic assets). |
| ledger_sequence | NUMBER(38,0) | Sequence number of the ledger containing this transfer. |
| ledger_close_time | TIMESTAMP_NTZ(9) | Time when the ledger containing this transfer closed and was finalized. |
| ledger_hash | VARCHAR(16777216) | Hash of the ledger containing this transfer. |
| transaction_hash | VARCHAR(16777216) | Hash of the transaction that produced this transfer. |
| transaction_index | NUMBER(38,0) | Position of the transaction within its ledger. |
| transaction_result | VARCHAR(16777216) | Result code of the transaction that produced this transfer. |
| transaction_successful | BOOLEAN | True if the transaction that produced this transfer executed successfully. |
| operation_index | NUMBER(38,0) | Index of the operation within the transaction that produced this transfer. |
| unique_id | VARCHAR(16777216) | Deterministic unique identifier for this row. |
| _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. |