A single price level in the order book depth.

interface DepthLevel {
    price: bigint;
    quantity: bigint;
}

Properties

Properties

price: bigint

Price at this level (chain integer).

quantity: bigint

Total quantity at this level (chain integer).