iota-sdk 1.0.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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

pub(crate) mod account_recovery;
pub(crate) mod address_generation;
pub(crate) mod background_syncing;
pub(crate) mod client;
pub(crate) mod get_account;
#[cfg(feature = "ledger_nano")]
pub(crate) mod ledger_nano;
pub(crate) mod storage;
#[cfg(feature = "stronghold")]
pub(crate) mod stronghold;
#[cfg(feature = "stronghold")]
pub(crate) mod stronghold_backup;
#[cfg(debug_assertions)]
pub(crate) mod verify_integrity;