BidAsk

The BidAsk type represents bid and ask prices and amounts.

interface BidAsk {
  asks: [string, string][]; // [price, amount]
  bids: [string, string][]; // [price, amount]
}

Properties

  • asks: [string, string][]

    • An array of and amount pairs.

  • bids: [string, string][]

    • An array of and amount pairs.

Last updated