Skip to main content

Import

import { AssetPairs } from '@krono/core'

Usage

Access the array of all available symbols, sorted by their liquidity rank (top N) and label.
// Get all loaded symbols
const options = assetPairs.symbols;

options.forEach(opt => {
  console.log(opt.displayLabel); // e.g. "BTC/USD"
});

Return Type

SymbolOption[]
The SymbolOption interface contains metadata for the UI, including display labels, icons, and normalized asset names.