We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35a737 commit 3ee98a8Copy full SHA for 3ee98a8
components/chainhook-cli/src/config/mod.rs
@@ -3,7 +3,7 @@ pub mod generator;
3
4
pub use chainhook_event_observer::indexer::IndexerConfig;
5
use chainhook_event_observer::observer::{
6
- EventObserverConfig, DEFAULT_CONTROL_PORT, DEFAULT_INGESTION_PORT,
+ EventObserverConfig,
7
};
8
use chainhook_types::{BitcoinBlockSignaling, BitcoinNetwork, StacksNetwork};
9
pub use file::ConfigFile;
@@ -12,6 +12,8 @@ use std::fs::File;
12
use std::io::{BufReader, Read};
13
use std::path::PathBuf;
14
15
+use crate::service::{DEFAULT_INGESTION_PORT, DEFAULT_CONTROL_PORT};
16
+
17
const DEFAULT_MAINNET_TSV_ARCHIVE: &str =
18
"https://archive.hiro.so/mainnet/stacks-blockchain-api/mainnet-stacks-blockchain-api-latest.gz";
19
const DEFAULT_TESTNET_TSV_ARCHIVE: &str =
0 commit comments