EnigmaMetadata
A rich per-market metadata row returned by getEnigmaPriceServiceMetadata. The read returns a Record<address, EnigmaMetadata>. Each row carries the pair identifiers, the base-token ref, USD / native price strings, liquidity, 24h price change, market cap, and the data source.
import type { EnigmaMetadata } from "@symmio/trading-core";Fields
namestringMarket symbol name.
chain_idstringChain identifier the pair trades on.
dex_idstringDEX identifier the pair is sourced from.
pair_addressstringOn-chain address of the trading pair.
base_tokenTokenRefDTOBase-token reference:
{ address, name, symbol }.price_nativestringPrice quoted in the native/quote token, as a decimal string.
price_usdstringPrice in USD, as a decimal string.
decimalnumberPrice decimals for the pair.
liquidityLiquidityDTO | nulloptionalLiquidity snapshot
{ usd }, or null when unavailable.price_changePriceChangeDTO24h price change:
{ h24: number | null }.market_capnumber | nulloptionalMarket cap in USD, or
null when unavailable.pair_created_atnumberPair creation timestamp (unix ms).
updated_atnumberLast-update timestamp (unix ms).
source"DEXSCREENER" | "MANUAL"Where the metadata was sourced from.
Related
- getEnigmaPriceServiceMetadata — returns
Record<address, EnigmaMetadata>. - EnigmaSymbolInfo — the lighter catalog row.
Last updated on