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

Table Columns

Column NameData TypeDescription
addressVARCHARThe wallet address holding the token
token_addressVARCHARContract address of the ERC721 token
token_idVARCHARToken ID of the ERC721 token
block_dateTIMESTAMP_NTZ(9)The UTC date (end of day) this balance snapshot covers
balanceNUMBERToken balance as of the end of the day. For ERC721 tokens, the max is 1
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
transaction_hashVARCHARTransaction hash of the last balance-changing activity on this date
_short_token_addressVARCHARTruncated form of token_address used as a clustering key for query pruning