type OrderbookEntry: {
  price: number;
  quantity: number;
};

Represents an entry in an order book with price and quantity information.

Type declaration

MemberTypeDescription
pricenumberThe price of the asset in this order book entry.
quantitynumberThe quantity of the asset available at the specified price.