@safe-global/safe-gateway-typescript-sdk
    Preparing search index...

    Type Alias BaseOrder

    type BaseOrder = {
        buyAmount: string;
        buyToken: OrderToken;
        executedBuyAmount: string;
        executedFee: string | null;
        executedFeeToken: OrderToken;
        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;
    }
    Index

    Properties

    buyAmount: string

    The buy token raw amount (no decimals)

    buyToken: OrderToken
    executedBuyAmount: string

    The executed buy token raw amount (no decimals)

    executedFee: string | null

    The amount of fees paid for this order

    executedFeeToken: OrderToken

    The token in which the fee was paid, expressed by SURPLUS tokens (BUY tokens for SELL orders and SELL tokens for BUY orders).

    executedSellAmount: string

    The executed sell token raw amount (no decimals)

    executedSurplusFee: string | null

    Use executedFee instead

    The amount of fees paid for this order.

    explorerUrl: string

    The URL to the explorer page of the order

    fullAppData?: Record<string, unknown> | null

    The App Data for this order

    humanDescription?: string | null
    kind: OrderKind
    orderClass: OrderClass
    owner: string
    receiver?: string | null

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

    richDecodedInfo?: null | RichDecodedInfo
    sellAmount: string

    The sell token raw amount (no decimals)

    sellToken: OrderToken
    validUntil: number

    The timestamp when the order expires