Type alias SaleSuccess

SaleSuccess: {
    paymentMethod: SalePaymentTypes | undefined;
    tokenIds: string[];
    transactions: {
        method: string;
        hash: string | undefined;
    }[];
    transactionId: string;
    [key: string]: unknown;
}

Represents a successful Sale transaction.

Type declaration

  • [key: string]: unknown
  • paymentMethod: SalePaymentTypes | undefined

    Chosen payment method

  • tokenIds: string[]

    The minted items token ids

  • transactions: {
        method: string;
        hash: string | undefined;
    }[]

    The executed transactions

  • transactionId: string

    The order reference id, use it to trace order throughout flow

Generated using TypeDoc