Archipelago — open-source initial import

This commit is contained in:
Archipelago
2026-08-12 10:55:49 +00:00
commit 38558cad1c
1595 changed files with 337206 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
//! Centralized constants for the Archipelago backend.
//! Avoids hardcoded values scattered across the codebase.
/// Bitcoin Core RPC endpoint (localhost only).
pub const BITCOIN_RPC_URL: &str = "http://127.0.0.1:8332/";
/// DWN (Decentralized Web Node) health check endpoint.
pub const DWN_HEALTH_URL: &str = "http://127.0.0.1:3100/health";
/// Tor SOCKS5 proxy for outbound onion connections.
pub const TOR_SOCKS_PROXY: &str = "socks5h://127.0.0.1:9050";