interface RollbackGuard {
    blockNumber: number;
    firstBlockNumber: number;
    firstParentHash: string;
    hash: string;
    timestamp: number;
}

Properties

blockNumber: number

Block number of the last scanned block

firstBlockNumber: number

Block number of the first scanned block in memory.

This might not be the first scanned block. It only includes blocks that are in memory (possible to be rolled back).

firstParentHash: string

Parent hash of the first scanned block in memory.

This might not be the first scanned block. It only includes blocks that are in memory (possible to be rolled back).

hash: string

Block hash of the last scanned block

timestamp: number

Block timestamp of the last scanned block