ethereum.core Table: fact_token_balances Type: View
βThis table contains the unadjusted token balances for users on the Ethereum blockchain. When a
token transfer event occurs, we will read the balance of the involved parties at the transfer block.
Please see ethereum.core.dim_contracts for decimal adjustments. Includes both ERC20s and ERC721s.β
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_NUMBER | NUMBER | Block number at which the token balance was read. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | Timestamp of block number read. |
| USER_ADDRESS | TEXT | Wallet / contract address holding tokens. |
| CONTRACT_ADDRESS | TEXT | The contract address of the token. |
| BALANCE | NUMBER | The unadjusted token balance. |
| FACT_TOKEN_BALANCES_ID | TEXT | Primary key - unique identifier for each row ensuring data integrity. |
- Deduplication in incremental loads
- Join operations for data quality checks
- Troubleshooting specific records
- Data freshness monitoring
- Incremental processing markers
- Debugging data pipeline issues
- SLA tracking