Columns
| Column | Type | Description |
|---|---|---|
token_id | STRING | Token identifier: {token_address}-{chain_id}. The key every other token table joins on, and every row has a real address in it. |
chain_id | STRING | Chain the contract is deployed on. |
token_address | STRING | Contract address. Hex addresses are stored lowercase, and base58 addresses as the chain writes them. |
symbol | STRING | Symbol read from the contract, unverified. Any contract can call itself USDC, so read token_address to know what a token is, or the asset_id on dimensions.asset_tokens where somebody has already made that judgment. |
name | STRING | Name read from the contract, unverified. |
decimals | INT64 | How many decimal places to move to turn a raw amount into a token amount. |
created_at | TIMESTAMP | When the token launched onchain. |
Sample queries
- By address
- Its curated asset
token_id is the address and the chain joined by a dash, so one literal names one contract on one chain. symbol and name come off the contract, so read the address to know what the token is.