The BidAsk type represents bid and ask prices and amounts.
BidAsk
interface BidAsk { asks: [string, string][]; // [price, amount] bids: [string, string][]; // [price, amount] }
asks: [string, string][]
An array of ask price and amount pairs.
bids: [string, string][]
An array of bid price and amount pairs.
Last updated 11 months ago