Micro Block Extended

interface MicroBlockExtended {
    flags: `ba_${string}`;
    gas: number;
    hash: string;
    height: number;
    microBlockIndex: number;
    pofHash: string;
    prevHash: string;
    prevKeyHash: string;
    signature: string;
    stateHash: string;
    time: Date;
    transactionsCount: number;
    txsHash: string;
    version: number;
}

Hierarchy (View Summary)

Properties

flags: `ba_${string}`
gas: number

The gas used by the microblock

hash: string

Base58Check encoded tagged hash

height: number
microBlockIndex: number

The index of the micro-block on the micro-block height, starting from 0

pofHash: string

Base58Check encoded tagged hash

prevHash: string

Base58Check encoded tagged hash

prevKeyHash: string

Base58Check encoded tagged hash

signature: string

Base58Check encoded tagged value

stateHash: string

Base58Check encoded tagged hash

time: Date
transactionsCount: number

The number of transactions

txsHash: string

Base58Check encoded tagged hash

version: number