OPNet
    Preparing search index...

    Interface IBlockCommon

    This interface is used to define the common properties of a block.

    Raw

    interface IBlockCommon {
        baseGas: string;
        bits: string;
        checksumProofs: BlockHeaderChecksumProof;
        checksumRoot: string;
        ema: string;
        gasUsed: string;
        hash: string;
        height: BigNumberish;
        medianTime: number;
        merkleRoot: string;
        nonce: number;
        previousBlockChecksum: string;
        previousBlockHash: string;
        receiptRoot: string;
        size: number;
        storageRoot: string;
        strippedSize: number;
        time: number;
        txCount: number;
        version: number;
        weight: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    baseGas: string
    bits: string
    checksumProofs: BlockHeaderChecksumProof
    checksumRoot: string

    Allows us to verify that the block is correct and not regenerated.

    ema: string
    gasUsed: string
    hash: string
    height: BigNumberish
    medianTime: number
    merkleRoot: string
    nonce: number
    previousBlockChecksum: string
    previousBlockHash: string
    receiptRoot: string
    size: number
    storageRoot: string
    strippedSize: number
    time: number
    txCount: number
    version: number
    weight: number