Interface OrderV3

interface OrderV3 {
    amount_sold: null | string;
    buy: Token;
    expiration_timestamp: null | string;
    fees?: OrderFeeInfo[];
    maker_fees?: OrdersMakerTakerFee;
    maker_taker_type?: string;
    order_id: number;
    sell: Token;
    status: string;
    taker_fees?: OrdersMakerTakerFee;
    timestamp: null | string;
    updated_timestamp: null | string;
    user: string;
}

Hierarchy

  • OrderV3
    • OrderV3

Properties

amount_sold: null | string

Amount of the asset already sold by this order

OrderV3

buy: Token

OrderV3

expiration_timestamp: null | string

Expiration timestamp of this order

OrderV3

fees?: OrderFeeInfo[]

[DEPRECATED] Fee information for the order. Replaced by maker_fees / taker_fees depending on the type of order. Refer https://docs.x.immutable.com/docs/maker-taker-fees/#new-maker-taker-fields-and-the-deprecation-of-quantity_with_fees-in-buy-and-sell.

OrderV3

maker_fees?: OrdersMakerTakerFee

OrderV3

maker_taker_type?: string

MakerTakerType

OrderV3

order_id: number

ID of the order

OrderV3

sell: Token

OrderV3

status: string

Status of the order

OrderV3

taker_fees?: OrdersMakerTakerFee

OrderV3

timestamp: null | string

Timestamp this order was created

OrderV3

updated_timestamp: null | string

Updated timestamp of this order

OrderV3

user: string

Ethereum address of the user who submitted the order

OrderV3