// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
/// Amount at which outputs on a single addresses will get consolidated by default if consolidatioin is enabled
pub const DEFAULT_OUTPUT_CONSOLIDATION_THRESHOLD: usize = 100;
/// Amount at which outputs on a single addresses will get consolidated by default with a ledger secret_manager if
/// consolidatioin is enabled, needs to be smaller because the memory of the ledger nano s is limited
pub const DEFAULT_LEDGER_OUTPUT_CONSOLIDATION_THRESHOLD: usize = 15;
/// Amount of API request that can be sent in parallel during syncing
pub const PARALLEL_REQUESTS_AMOUNT: usize = 500;
/// ms before an account actually syncs with the network, before it just returns the previous syncing result
/// this is done to prevent unnecessary simultaneous synchronizations
pub const MIN_SYNC_INTERVAL: u128 = 5;
// Default expiration time for [ExpirationUnlockCondition] when sending native tokens, one day in seconds
pub const DEFAULT_EXPIRATION_TIME: u32 = 86400;