Interface iAirdropDoc<T>

interface iAirdropDoc<T> {
    _docId: string;
    _id?: string;
    airdropped: boolean;
    hash?: string;
    timestamp: T;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

airdropped: boolean

True if the airdrop has been completed

hash?: string

The hash of the airdrop transaction

timestamp: T

The timestamp of when the airdrop was completed (milliseconds since epoch)