Table Columns

Unique Key: account, token_id

Column NameData TypeDescription
accountVARCHARThe address that owns this balance
raw_balanceFLOATThe raw balance amount denoted in drops (smallest unit of XRP)
raw_balance_strVARCHARThe raw balance amount as a string representation, preserving precision for large numbers.
balanceFLOATThe normalized balance amount, typically converted to standard units (XRP or token units).
token_nameVARCHARThe human-readable name of the token/currency. For XRP, this is typically “XRP”. For issued tokens, this is the currency code.
token_issuerVARCHARThe account that issued this token (AccountID). For XRP, this field is null. For issued tokens, this is the account that created the currency.
token_idVARCHARUnique identifier for the token, combining currency code and issuer.
token_codeVARCHARThe three-letter currency code (ISO 4217 format) or hex code for the token. “XRP” for the native currency.
ledger_entry_typeVARCHARThe type of ledger entry that contains this balance. AccountRoot for native XRP, RippleState for other currencies.
ledger_entry_indexVARCHARThe index of this specific ledger entry within the ledger.
ledger_indexBIGINTThe sequence number of the ledger that contains this balance data.
ledger_close_timeTIMESTAMP_NTZ(9)The timestamp when the ledger was closed, indicating when this balance was recorded.
ledger_hashVARCHARThe hash of the ledger header, serving as a unique identifier for the ledger.
transaction_hashVARCHARThe hash of the transaction that last modified this balance.
transaction_indexBIGINTThe index of the transaction within the ledger that last modified this balance.
_created_atTIMESTAMP_NTZ(9)Timestamp when this record was created in the database.
_updated_atTIMESTAMP_NTZ(9)Timestamp when this record was last updated in the database.