Interface IHeader

Interface defining the structure of a block header.

interface IHeader {
    acceptedIdMerkleRoot: string;
    bits: number;
    blueScore: bigint;
    blueWork: string | bigint;
    daaScore: bigint;
    hash: string;
    hashMerkleRoot: string;
    nonce: bigint;
    parentsByLevel: string[][];
    pruningPoint: string;
    timestamp: bigint;
    utxoCommitment: string;
    version: number;
}

Properties

acceptedIdMerkleRoot: string
bits: number
blueScore: bigint
blueWork: string | bigint
daaScore: bigint
hash: string
hashMerkleRoot: string
nonce: bigint
parentsByLevel: string[][]
pruningPoint: string
timestamp: bigint
utxoCommitment: string
version: number

Generated using TypeDoc