iota_genesis_builder/stardust/mod.rs
1// Copyright (c) 2024 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! The `stardust` module incorporates all the logic necessary for
5//! parsing Stardust UTXOs from a full-snapshot file, and converting
6//! them to the appropriate genesis objects.
7
8pub mod migration;
9pub mod native_token;
10pub mod parse;
11pub mod process_outputs;
12#[cfg(feature = "test-outputs")]
13pub mod test_outputs;
14pub mod types;