Interface iListActivityDoc<T>

interface iListActivityDoc<T> {
    _docId: string;
    _id?: string;
    _notificationsHandled?: boolean;
    addedToList?: boolean;
    addresses?: string[];
    block: T;
    initiatedBy: string;
    listId: string;
    timestamp: T;
    txHash?: string;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

_notificationsHandled?: boolean

Whether or not the notifications have been handled by the indexer or not.

addedToList?: boolean

Whether or not the address was added to the list or removed.

addresses?: string[]

The list of addresses that were added or removed from the list.

block: T

The block number of the activity.

initiatedBy: string

Initiator of the list activity.

listId: string

The list ID.

timestamp: T

The timestamp of the activity.

txHash?: string

The transaction hash of the activity.