Skip to Content
Symmio Trading-SDK — the SDK surface for builders on HyperEVM
CorePrice ServiceEnigmaMetadata

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

namestring
Market symbol name.
chain_idstring
Chain identifier the pair trades on.
dex_idstring
DEX identifier the pair is sourced from.
pair_addressstring
On-chain address of the trading pair.
base_tokenTokenRefDTO
Base-token reference: { address, name, symbol }.
price_nativestring
Price quoted in the native/quote token, as a decimal string.
price_usdstring
Price in USD, as a decimal string.
decimalnumber
Price decimals for the pair.
liquidityLiquidityDTO | nulloptional
Liquidity snapshot { usd }, or null when unavailable.
price_changePriceChangeDTO
24h price change: { h24: number | null }.
market_capnumber | nulloptional
Market cap in USD, or null when unavailable.
pair_created_atnumber
Pair creation timestamp (unix ms).
updated_atnumber
Last-update timestamp (unix ms).
source"DEXSCREENER" | "MANUAL"
Where the metadata was sourced from.
Last updated on