Type alias CollectionOfferEvent

CollectionOfferEvent: BaseEvent & {
    criteria: Record<string, unknown>;
    event_type: COLLECTION_OFFER | "collection_offer";
    expiration_date: number;
    maker: string;
    order_hash?: string;
    payment: EventPayment;
    protocol_address?: string;
    start_date: number | null;
    taker: string;
}

Collection offer event type.

Type declaration

  • criteria: Record<string, unknown>

    Criteria for collection offers

  • event_type: COLLECTION_OFFER | "collection_offer"
  • expiration_date: number

    Expiration date of the offer

  • maker: string

    Maker of the offer

  • 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 offer

  • taker: string

    Taker of the offer