Skip to main content
The Fungible Balances EOD table holds the raw end-of-day fungible token balance for each (address, token) pair. It is an intermediate, “unhydrated” table: balances are unnormalized and token metadata and USD values are added downstream. Columns prefixed with _ are internal helpers used for clustering, query pruning, and error tracking.

Table Columns

Column NameData TypeDescription
addressVARCHARThe wallet address holding the tokens
token_addressVARCHARContract address of the token (or sentinel address for the native token)
raw_balance_strVARCHARToken balance, unnormalized, as a string to retain precision
block_dateTIMESTAMP_NTZ(9)The UTC date (end of day) this balance snapshot covers
block_timestampTIMESTAMP_NTZ(9)Block timestamp of the last balance-changing activity on this date
block_numberNUMBERBlock number of the last balance-changing activity on this date
block_hashVARCHARBlock hash of the last balance-changing activity on this date
_has_errorNUMBERFlag indicating whether an error occurred computing this balance (1 = error)
_short_addressVARCHARTruncated form of address used as a clustering key for query pruning
_short_token_addressVARCHARTruncated form of token_address used as a clustering key for query pruning