BaseOrder: {
    buyAmount: string;
    buyToken: OrderToken;
    executedBuyAmount: string;
    executedSellAmount: string;
    executedSurplusFee?: string | null;
    explorerUrl: string;
    fullAppData?: Record<string, unknown> | null;
    humanDescription?: string | null;
    kind: OrderKind;
    orderClass: OrderClass;
    owner: string;
    receiver?: string | null;
    richDecodedInfo?: null | RichDecodedInfo;
    sellAmount: string;
    sellToken: OrderToken;
    status: OrderStatuses;
    validUntil: number;
}

Type declaration

  • buyAmount: string

    The buy token raw amount (no decimals)

  • buyToken: OrderToken
  • executedBuyAmount: string

    The executed buy token raw amount (no decimals)

  • executedSellAmount: string

    The executed sell token raw amount (no decimals)

  • OptionalexecutedSurplusFee?: string | null

    The amount of fees paid for this order.

  • explorerUrl: string

    The URL to the explorer page of the order

  • OptionalfullAppData?: Record<string, unknown> | null

    The App Data for this order

  • OptionalhumanDescription?: string | null
  • kind: OrderKind
  • orderClass: OrderClass
  • owner: string
  • Optionalreceiver?: string | null

    The (optional) address to receive the proceeds of the trade

  • OptionalrichDecodedInfo?: null | RichDecodedInfo
  • sellAmount: string

    The sell token raw amount (no decimals)

  • sellToken: OrderToken
  • status: OrderStatuses
  • validUntil: number

    The timestamp when the order expires