Skip to main content
The identity table behind every token figure. Every other table about tokens joins to it, and Coverage names the chains.

Columns

ColumnTypeDescription
token_idSTRINGToken identifier: {token_address}-{chain_id}. The key every other token table joins on, and every row has a real address in it.
chain_idSTRINGChain the contract is deployed on.
token_addressSTRINGContract address. Hex addresses are stored lowercase, and base58 addresses as the chain writes them.
symbolSTRINGSymbol 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.
nameSTRINGName read from the contract, unverified.
decimalsINT64How many decimal places to move to turn a raw amount into a token amount.
created_atTIMESTAMPWhen the token launched onchain.

Sample queries

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.