Class EraSummary

Class representing a summary of an era, including the block hash, era ID, stored value, state root hash, and the associated Merkle proof.

Hierarchy

  • EraSummary

Constructors

  • Constructs an EraSummary instance.

    Parameters

    • blockHash: Hash

      The hash of the block for this era.

    • eraID: number

      The unique identifier for the era.

    • storedValue: StoredValue

      The stored value representing data associated with the era.

    • stateRootHash: Hash

      The hash of the state root at the end of the era.

    • merkleProof: string

      The Merkle proof for the block in the era.

    Returns EraSummary

Properties

blockHash: Hash

The hash of the block for this era.

eraID: number

The unique identifier for the era.

merkleProof: string

The Merkle proof associated with the block in this era, used to verify the integrity of the data stored in the block.

stateRootHash: Hash

The hash of the state root, which represents the state at the end of the era.

storedValue: StoredValue

The stored value for this era, representing data related to the state at the end of the era.

Generated using TypeDoc