| from_account | VARCHAR(16777216) | XRPL account (r-address) the tokens were sent from. |
| to_account | VARCHAR(16777216) | XRPL account (r-address) the tokens were sent to. |
| token_address | VARCHAR(16777216) | Allium-composed identifier for the XRPL token: the currency code joined with the issuer account (currency.issuer). XRP itself is represented as xrp. |
| currency_hex | VARCHAR(16777216) | Currency code of the issued token as stored on-ledger: a 3-character standard code or a 160-bit hex code for non-standard currencies. |
| issuer | VARCHAR(16777216) | XRPL account address of the token issuer. Null for XRP. |
| raw_amount_str | VARCHAR(16777216) | Amount of tokens (unnormalized) as a string to retain precision. |
| raw_amount | FLOAT | Amount of tokens (unnormalized). |
| amount_str | VARCHAR(16777216) | Amount of tokens transferred, as a string to retain precision. |
| amount | FLOAT | Decimal-adjusted amount of tokens involved in this record. |
| usd_amount | FLOAT | USD value of the amount at the record’s timestamp. |
| usd_exchange_rate | FLOAT | USD price of one unit of the token at the record’s timestamp. |
| token_name | VARCHAR(16777216) | Human-readable name of the token. |
| token_symbol | VARCHAR(16777216) | Ticker symbol of the token. |
| currency | VARCHAR(16777216) | The reference currency the stablecoin is pegged to (e.g. USD, EUR) |
| base_asset | VARCHAR(16777216) | The base asset or backing of the stablecoin (e.g., USD, EUR). |
| is_bridge | BOOLEAN | Whether the stablecoin is a bridged version from another chain. |
| supply_delta | FLOAT | Signed change in the token’s total supply produced by this record. |
| supply_delta_rounded | FLOAT | Supply delta rounded to the token’s decimal precision. |
| transfer_type | VARCHAR(16777216) | Type of transfer that produced this record (e.g. payment, offer crossing, escrow). |
| transaction_hash | VARCHAR(16777216) | Hash of the XRPL transaction that produced this record. |
| transfer_index | NUMBER(38,0) | Zero-based position of this transfer within the transaction. |
| ledger_entry_index | VARCHAR(16777216) | Zero-based position of the ledger entry change within the transaction metadata. |
| ledger_close_time | TIMESTAMP_NTZ(9) | Close timestamp (UTC) of the ledger that contains this record. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the ledger close; alias of ledger_close_time for cross-chain consistency. |
| ledger_index | NUMBER(38,0) | Sequence number of the ledger (block) that contains this record. |
| ledger_hash | VARCHAR(16777216) | Cryptographic hash of the ledger that contains this record. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row. Stable across full refreshes. |
| _metadata_created_at | TIMESTAMP_NTZ(9) | Timestamp of when the token metadata record was created. |
| _metadata_updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the token metadata was last updated. |
| event_name | VARCHAR(16777216) | Name of the ledger event that produced this record. |
| is_mint | BOOLEAN | True if this record increases the token’s supply (issuance). |
| is_burn | BOOLEAN | True if this record decreases the token’s supply (redemption/burn). |
| _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. |