iota-client 1.4.0

The official, general-purpose IOTA client library in Rust for interaction with the IOTA network (Tangle)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! High level APIs

mod address;
mod balance;
mod consolidation;
mod message_builder;
mod unspent;

pub use address::*;
pub use balance::*;
pub use consolidation::*;
pub use message_builder::*;
pub use unspent::*;

const ADDRESS_GAP_RANGE: usize = 20;