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

    Type Alias ListingEvent

    ListingEvent: BaseEvent & {
        asset: EventAsset;
        event_type: LISTING | "listing";
        expiration_date: number;
        is_private_listing: boolean;
        maker: string;
        order_hash?: string;
        payment: EventPayment;
        protocol_address?: string;
        start_date: number | null;
        taker: string;
    }

    Listing event type.

    Type Declaration

    • asset: EventAsset

      Asset involved in the listing

    • event_type: LISTING | "listing"
    • expiration_date: number

      Expiration date of the listing

    • is_private_listing: boolean

      Whether the listing is private

    • maker: string

      Maker of the listing

    • Optionalorder_hash?: string

      Order hash (optional)

    • payment: EventPayment

      Payment information

    • Optionalprotocol_address?: string

      Protocol address (optional)

    • start_date: number | null

      Start date of the listing

    • taker: string

      Taker of the listing