Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

PairId

The identifier of a spot trading pair — base and quote denom.

Definition

type PairId = {
  baseDenom: string
  quoteDenom: string
}

Construction

import type { PairId } from "@left-curve/sdk"
 
const dangoUsdc: PairId = { baseDenom: "dango", quoteDenom: "bridge/usdc" }

Notes

  • A SwapRoute is PairId[] — an ordered list of hops.

See also