fedimint_core/iroh_prod.rs
1//! We want to provide our own infrastructure to be independent of n0, but for
2//! now we don't use the discovery part of it pending figuring out some
3//! performance regressions.
4
5/// The Iroh/Pkarr DNS server hosted by Fedimint project
6pub const FM_DNS_PKARR_RELAY_PROD: [&str; 0] = [
7 // "https://dns.irohdns-eu-01.dev.fedimint.org/pkarr",
8 // "https://dns.irohdns-us-01.dev.fedimint.org/pkarr",
9];
10
11/// The Iroh relays hosted by Fedimint project
12pub const FM_IROH_RELAYS_PROD: [&str; 2] = [
13 "https://irohrelay-eu-01.dev.fedimint.org",
14 "https://irohrelay-us-01.dev.fedimint.org",
15];