Interface iUpdateHistory<T>

interface iUpdateHistory<T> {
    block: T;
    blockTimestamp: T;
    timestamp: T;
    txHash: string;
}

Type Parameters

Implemented by

Properties

block: T

The block number of the on-chain transaction that updated this.

blockTimestamp: T

The timestamp of the block of the on-chain transaction that updated this.

timestamp: T

The indexer's timestamp of the update. This is provided in some cases because the time of indexing may be inconsistent with the time of the block.

txHash: string

The transaction hash of the on-chain transaction that updated this.