Interface IDatastoreEntry

Represents the data entry both at the latest final and active executed slots.

See

  • final_value of type Uint8Array | null represents the value of the data entry at the latest final executed slot.
  • candidate_value of type Uint8Array | null represents the value of the data entry at the latest active executed slot.
interface IDatastoreEntry {
    candidate_value: Uint8Array;
    final_value: Uint8Array;
}

Properties

candidate_value: Uint8Array
final_value: Uint8Array

Generated using TypeDoc