| chain | VARCHAR(16777216) | Blockchain this record belongs to; always stellar. |
| token_type | VARCHAR(16777216) | Token standard of the asset (Stellar classic asset or Soroban contract token). |
| asset_id | VARCHAR(16777216) | Canonical asset identifier in CODE:ISSUER form. |
| asset_code | VARCHAR(16777216) | Asset code of the classic Stellar asset. |
| asset_issuer | VARCHAR(16777216) | Issuer G-address of the classic Stellar asset. |
| token_name | VARCHAR(16777216) | Full name of the RWA token. |
| token_symbol | VARCHAR(16777216) | Ticker symbol of the RWA token. |
| decimals | NUMBER(38,0) | Number of decimal places used to normalize the token’s raw amounts. |
| raw_amount_str | VARCHAR(16777216) | Supply-change amount in the smallest unit, stored as a string for full precision. |
| raw_amount | FLOAT | Supply-change amount in the token’s smallest unit (not decimal-adjusted). |
| amount_str | VARCHAR(16777216) | Normalized supply-change amount stored as a string for full precision. |
| amount | FLOAT | Supply-change amount normalized by the token’s decimal precision (raw_amount / 10^decimals). |
| usd_amount | FLOAT | USD value of the supply-change amount at the time of the event. |
| usd_exchange_rate | FLOAT | USD price per unit of the token used to compute usd_amount. |
| from_address | VARCHAR(16777216) | Stellar address that sent the tokens (balance decreased); the burn source for burns. |
| from_muxed_id | VARCHAR(16777216) | 64-bit muxed sub-account id of the sender, when the source is a muxed account. |
| to_address | VARCHAR(16777216) | Stellar address that received the tokens (balance increased); the mint destination for mints. |
| to_muxed_id | VARCHAR(16777216) | 64-bit muxed sub-account id of the recipient, when the destination is a muxed account. |
| contract_id | VARCHAR(16777216) | Soroban token contract id, for contract-based token events. |
| event_type | VARCHAR(16777216) | Type of transfer event that changed supply. |
| event_stage | VARCHAR(16777216) | Stage of the event within transaction processing. |
| event_index | NUMBER(38,0) | Index of this event within its transaction. |
| is_mint | BOOLEAN | Whether this event is a token issuance (mint) that increases supply. |
| is_burn | BOOLEAN | Whether this event is a token redemption (burn) that decreases supply. |
| transaction_hash | VARCHAR(16777216) | Hash of the transaction that produced this event. |
| transaction_index | VARCHAR(16777216) | Position of the transaction within its ledger. |
| transaction_result | VARCHAR(16777216) | Stellar transaction result code. |
| transaction_successful | VARCHAR(16777216) | Whether the transaction executed successfully. |
| operation_index | VARCHAR(16777216) | Index of the operation within the transaction. |
| ledger_close_time | TIMESTAMP_NTZ(9) | Close time of the ledger containing this event. |
| ledger_date | DATE | Calendar date of the ledger containing this event. |
| ledger_sequence | NUMBER(38,0) | Sequence number of the ledger containing this event. |
| ledger_hash | VARCHAR(16777216) | Hash of the ledger containing this event. |
| unique_id | VARCHAR(16777216) | Deterministic unique identifier for this row. |
| _rwa_token_created_at | TIMESTAMP_NTZ(9) | Internal pipeline timestamp: when this token was added to the RWA registry. |
| _transfers_created_at | TIMESTAMP_NTZ(9) | Internal pipeline timestamp: when the underlying transfer record was created. |
| _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. |