1// Copyright 2021 IOTA Stiftung 2// SPDX-License-Identifier: Apache-2.0 3 4//! High level APIs 5 6mod address; 7mod block_builder; 8mod consolidation; 9mod high_level; 10mod types; 11 12pub use self::{address::*, block_builder::*, types::*}; 13 14const ADDRESS_GAP_RANGE: u32 = 20;