crosschain.defi Table: dim_stablecoins Type: View
What
This table provides a dimensional view of verified stablecoins across EVM-compatible blockchains. It consolidates stablecoin metadata from various sources to create a unified reference table for identifying and analyzing stablecoin tokens.Key Use Cases
- Identifying stablecoin tokens in transaction and event data
- Filtering DeFi activities to stablecoin-only transactions
- Analyzing stablecoin adoption and distribution
- Tracking verified stablecoin contracts across chains
- Building stablecoin-specific metrics and dashboards
Important Relationships
- Join with defi.ez_stablecoins_supply: Use
contract_addressfor supply metrics
Commonly-used Fields
contract_address: Unique stablecoin token contract addresssymbol: Token symbol (e.g., USDC, USDT, DAI)name: Full token namelabel: Combined symbol and name, as a stablecoin unique identifierdecimals: Number of decimal places for the tokenis_verified: Verification status
Sample queries
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCKCHAIN | TEXT | Blockchain, Network, or Platform the token price is recorded on. |
| CONTRACT_ADDRESS | TEXT | The unique smart contract address of the stablecoin token. Example: ‘0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48’ |
| SYMBOL | TEXT | The symbol identifier for the stablecoin token. Example: ‘USDC’ |
| NAME | TEXT | The full name of the stablecoin token. Example: ‘USD Coin’ |
| LABEL | TEXT | A combined display label containing both symbol and name. Example: ‘USDC: USD Coin’ |
| DECIMALS | NUMBER | The number of decimal places used by the token contract. Example: 6 |
| IS_VERIFIED | BOOLEAN | Indicates whether the stablecoin is verified by the Flipside team. Example: true |
| DIM_STABLECOINS_ID | TEXT | The unique identifier for each row in the table. |