Skip to main content

Asset Types

The Balances tables contain the following asset types:

Balance Tracking Methodology

Precision Handling

To maintain numerical precision, especially for tokens with large supplies or many decimal places:
  1. Raw balances are stored as VARCHAR to preserve exact values.
  2. Normalized balances are calculated using high-precision arithmetic with custom Snowflake UDFs.
  3. Both raw and human-readable balances are provided.
This approach ensures:
  • No loss of precision from floating-point arithmetic.
  • Accurate balance tracking over time.
  • Reliable historical data for analysis.