Type alias SaleEvent

SaleEvent: BaseEvent & {
    buyer: string;
    closing_date: number;
    event_type: SALE | "sale";
    nft: EventAsset;
    order_hash: string;
    payment: EventPayment;
    protocol_address: string;
    seller: string;
    transaction: string;
}

Sale event type.

Type declaration

  • buyer: string

    Buyer address

  • closing_date: number

    Closing date of the sale

  • event_type: SALE | "sale"
  • nft: EventAsset

    NFT involved in the sale

  • order_hash: string

    Order hash

  • payment: EventPayment

    Payment information

  • protocol_address: string

    Protocol address

  • seller: string

    Seller address

  • transaction: string

    Transaction hash