bitceptron_retriever/data/
defaults.rs1use crate::covered_descriptors::CoveredDescriptors::{self, P2pk, P2pkh, P2shwpkh, P2tr, P2wpkh};
2
3pub const DEFAULT_EXPLORATION_DEPTH: u32 = 100;
4pub const DEFAULT_EXPLORATION_PATH: &str = "*";
5pub const DEFAULT_BITCOINCORE_RPC_URL: &str = "127.0.0.1";
6pub const DEFAULT_BITCOINCORE_RPC_PORT: &str = "8332";
7pub const DEFAULT_BITCOINCORE_RPC_TIMEOUT_SECONDS: u64 = 6800;
8pub const DEFAULT_SWEEP: bool = false;
9pub const DEFAULT_NETWORK: bitcoin::Network = bitcoin::Network::Bitcoin;
10pub const DEFAULT_SELECTED_DESCRIPTORS: [CoveredDescriptors; 5] =
11 [P2pk, P2pkh, P2shwpkh, P2tr, P2wpkh];
12