Type alias Listing

Listing: Omit<Order, "price"> & {
    price: {
        current: Price;
    };
    remaining_quantity: number;
    type: OrderType;
}

Listing order type.

Type declaration

  • price: {
        current: Price;
    }

    The price of the listing with current price nested.

  • remaining_quantity: number

    The remaining quantity available for the listing. This is important for partially filled orders.

  • type: OrderType

    The order type of the listing.