ethos_bitcoind/config.rs
1//! Configuration interface for Bitcoin RPC clients
2
3#[derive(Debug, Clone)]
4pub struct Config {
5 /// The RPC URL endpoint for the Bitcoin Core daemon
6 pub rpc_url: String,
7 /// Username for RPC authentication
8 pub rpc_user: String,
9 /// Password for RPC authentication
10 pub rpc_password: String,
11}