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

    Interface EventData

    Data that gets sent with each EventType

    interface EventData {
        accountAddress?: string;
        amount?: BigNumberish;
        assets?: {
            amount?: BigNumberish;
            asset: AssetWithTokenStandard;
            toAddress?: string;
        }[];
        error?: unknown;
        event?: EventType;
        order?: Offer
        | Listing;
        orderV2?: OrderV2;
        transactionHash?: string;
    }
    Index

    Properties

    accountAddress?: string

    Wallet address of the user who initiated the event.

    amount?: BigNumberish

    Amount of ETH sent when wrapping or unwrapping.

    assets?: {
        amount?: BigNumberish;
        asset: AssetWithTokenStandard;
        toAddress?: string;
    }[]

    Array of assets for bulk transfer and batch approval operations.

    error?: unknown

    Error which occurred when transaction was denied or failed.

    event?: EventType

    The EventType of the event.

    order?: Offer | Listing

    The order as returned by the API (Offer or Listing).

    orderV2?: OrderV2

    The OrderV2 object.

    transactionHash?: string

    The transaction hash of the event.