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

QueryOrderResponse

A resting limit order. The shape returned by Info.order.

Definition

class QueryOrderResponse(TypedDict):
    user: Addr
    pair_id: PairId
    size: Quantity
    limit_price: UsdPrice
    reduce_only: bool
    reserved_margin: UsdValue
    created_at: Timestamp

Fields

userAddr. The order owner.

pair_idPairId.

sizeQuantity. Signed remaining size.

limit_priceUsdPrice.

reduce_onlybool.

reserved_marginUsdValue. Margin locked behind this order.

created_atTimestamp. ns-precision integer string.

See also