bee-ledger-types 1.0.1

All types required to compute and maintain the ledger state.
Documentation
// Copyright 2020-2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Module containing types to describe and handle ledger snapshots.

/// Module containing types to describe snapshot headers.
pub mod header;
/// Module containing a type to describe snapshot information.
pub mod info;
/// Module containing a snapshot kind enumeration.
pub mod kind;
/// Module containing a type to describe the ledger changes occurring within a milestone.
pub mod milestone_diff;

pub use self::{
    header::{DeltaSnapshotHeader, FullSnapshotHeader, SnapshotHeader},
    info::SnapshotInfo,
    kind::SnapshotKind,
    milestone_diff::MilestoneDiff,
};