canton.price Table: ez_asset_metadata Type: Base Table
What
Analytics-ready token asset metadata for Canton blockchain. This table provides reference data for all tokens available on Canton, including token symbols, names, decimals, and verification status. Key Use Cases:- Token lookup and identification
- Decimal conversion for raw amounts
- Token verification status checks
- Native token (Amulet/CNS) identification
- Join to
price__ez_prices_hourlyon token_address for price data - Join to core transfer/balance tables for token amount conversions
token_address: Primary identifier for joining with other tablessymbol: Human-readable token symboldecimals: Required for converting raw amounts to human-readable valuesis_native: Flag for identifying Canton’s native token (Amulet/CNS)
Columns
| Column Name | Data Type | Description |
|---|---|---|
| TOKEN_ADDRESS | TEXT | Token address identifier for the asset on Canton |
| ASSET_ID | TEXT | Unique identifier for the asset across the crosschain database |
| SYMBOL | TEXT | Token symbol (e.g., CNS, USDC) |
| NAME | TEXT | Full name of the token |
| DECIMALS | NUMBER | Number of decimal places for the token |
| BLOCKCHAIN | TEXT | Blockchain identifier (always ‘canton’ for this model) |
| IS_NATIVE | BOOLEAN | Boolean flag indicating if this is the native Canton token (Amulet/CNS) |
| IS_DEPRECATED | BOOLEAN | Boolean indicating if this token is deprecated |
| TOKEN_IS_VERIFIED | BOOLEAN | Boolean indicating if this token has been verified |
| EZ_ASSET_METADATA_ID | TEXT | Surrogate key generated from completetokenassetmetadataid |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when the record was inserted into this table |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when the record was last modified |