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

  • Optional order_hash?: string

    Order hash (optional)

  • payment: EventPayment

    Payment information

  • Optional protocol_address?: string

    Protocol address (optional)

  • start_date: number | null

    Start date of the listing

  • taker: string

    Taker of the listing