stellar.core Table: ez_token_transfers Type: Base Table
What
The token transfers raw table contains the SEP-41 compliant event stream from the token transfer processor. This table’s purpose is to track the token value movement on the stellar network in the form of transfer, mint, burn, clawback, and fee events. transfer, mint, burn, and clawback events are emitted at the operation grain. fee events are emitted at the transaction grain because there is no individual fee per operation. fee events can be negative in the event of a refund. The final fee paid (intial fee + refund) will always be positive. More information about fee refunds can be found here. Note that the events within this table are a subset of the events in the history_contract_events table.Columns
| Column Name | Data Type | Description |
|---|---|---|
| TRANSACTION_HASH | TEXT | TRANSACTION_HASH column |
| LEDGER_SEQUENCE | NUMBER | LEDGER_SEQUENCE column |
| OPERATION_ID | NUMBER | OPERATION_ID column |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | BLOCK_TIMESTAMP column |
| FROM_ADDRESS | TEXT | FROM_ADDRESS column |
| TO_ADDRESS | TEXT | TO_ADDRESS column |
| AMOUNT | FLOAT | AMOUNT column |
| AMOUNT_RAW | TEXT | AMOUNT_RAW column |
| AMOUNT_USD | FLOAT | AMOUNT_USD column |
| ASSET | TEXT | ASSET column |
| ASSET_CODE | TEXT | ASSET_CODE column |
| ASSET_ISSUER | TEXT | ASSET_ISSUER column |
| ASSET_TYPE | TEXT | ASSET_TYPE column |
| TOKEN_IS_VERIFIED | BOOLEAN | TOKEN_IS_VERIFIED column |
| CONTRACT_ID | TEXT | CONTRACT_ID column |
| EVENT_TOPIC | TEXT | EVENT_TOPIC column |
| TO_MUXED | TEXT | TO_MUXED column |
| TO_MUXED_ID | TEXT | TO_MUXED_ID column |
| TRANSACTION_ID | NUMBER | TRANSACTION_ID column |
| CLOSED_AT | TIMESTAMP_NTZ | CLOSED_AT column |
| BATCH_ID | TEXT | BATCH_ID column |
| BATCH_RUN_DATE | TIMESTAMP_NTZ | BATCH_RUN_DATE column |
| BATCH_INSERT_TS | TIMESTAMP_NTZ | BATCH_INSERT_TS column |
| EZ_TOKEN_TRANSFERS_ID | TEXT | EZ_TOKEN_TRANSFERS_ID column |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | INSERTED_TIMESTAMP column |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | MODIFIED_TIMESTAMP column |