Header defines the structure of a Tendermint block header.

interface HeaderSDKType {
    app_hash: Uint8Array;
    chain_id: string;
    consensus_hash: Uint8Array;
    data_hash: Uint8Array;
    evidence_hash: Uint8Array;
    height: bigint;
    last_block_id: undefined | BlockIDSDKType;
    last_commit_hash: Uint8Array;
    last_results_hash: Uint8Array;
    next_validators_hash: Uint8Array;
    proposer_address: Uint8Array;
    time: undefined | Date;
    validators_hash: Uint8Array;
    version: undefined | ConsensusSDKType;
}

Properties

app_hash: Uint8Array
chain_id: string
consensus_hash: Uint8Array
data_hash: Uint8Array
evidence_hash: Uint8Array
height: bigint
last_block_id: undefined | BlockIDSDKType
last_commit_hash: Uint8Array
last_results_hash: Uint8Array
next_validators_hash: Uint8Array
proposer_address: Uint8Array
time: undefined | Date
validators_hash: Uint8Array
version: undefined | ConsensusSDKType