iota-sdk 2.0.0-beta.1

The IOTA SDK provides developers with a seamless experience to develop on IOTA by providing account abstractions and clients to interact with node APIs.
Documentation
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

/// The module for announcing candidacy.
pub(crate) mod announce_candidacy;
/// The module to get the wallet's balance
pub(crate) mod balance;
/// The module for blocks
pub(crate) mod block;
/// Helper functions
pub(crate) mod helpers;
/// The module for claiming of outputs with
/// [`UnlockCondition`](crate::types::block::output::UnlockCondition)s that aren't only
/// [`AddressUnlockCondition`](crate::types::block::output::unlock_condition::AddressUnlockCondition)
pub(crate) mod output_claiming;
/// The module for the output consolidation
pub(crate) mod output_consolidation;
/// The module for participation
#[cfg(feature = "participation")]
pub(crate) mod participation;
/// The module for synchronization of the wallet
pub(crate) mod syncing;
/// The module for transactions
pub(crate) mod transaction;
/// The module for waiting for transaction acceptance
pub(crate) mod wait_for_tx_acceptance;