opensea-js - v8.0.20
    Preparing search index...

    Type Alias OrderEvent

    OrderEvent: BaseEvent & {
        asset?: EventAsset;
        criteria?: Record<string, unknown>;
        event_type: ORDER | "order";
        expiration_date: number;
        maker: string;
        order_hash?: string;
        order_type?: OrderEventType;
        payment: EventPayment;
        protocol_address?: string;
        start_date: number | null;
        taker: string;
    }

    Order event type returned by the API for order-related activities (listings, offers, trait offers, collection offers).

    Type Declaration

    • Optionalasset?: EventAsset

      Asset involved in the order (optional, not present for collection/trait offers)

    • Optionalcriteria?: Record<string, unknown>

      Criteria for collection/trait offers (optional)

    • event_type: ORDER | "order"
    • expiration_date: number

      Expiration date of the order

    • maker: string

      Maker of the order

    • Optionalorder_hash?: string

      Order hash (optional)

    • Optionalorder_type?: OrderEventType

      Order type providing more detail

    • payment: EventPayment

      Payment information

    • Optionalprotocol_address?: string

      Protocol address (optional)

    • start_date: number | null

      Start date of the order

    • taker: string

      Taker of the order