1
0
forked from GRIN/grim

Build 25: default to a steadier instant node + add the Goblin node

main.gri.mw has intermittent issues, so the default external ("instant") node
is now grincoin.org — both the onboarding first-connect and the head of the
external-node list. Adds the Goblin-run node https://main.us-ea.st as a default
option. (Relays already default to ours, nrelay.us-ea.st, plus relay.damus.io
and nos.lol — no change needed.)
This commit is contained in:
Claude
2026-06-11 23:48:31 -04:00
parent 68d72fa853
commit 78f629d8d3
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ impl Default for OnboardingContent {
Self {
step: Step::Intro,
integrated: true,
ext_url: "https://main.gri.mw".to_string(),
ext_url: "https://grincoin.org".to_string(),
restore: false,
name: "Main wallet".to_string(),
pass: String::new(),
+5 -3
View File
@@ -38,10 +38,12 @@ pub struct ExternalConnection {
pub available: Option<bool>,
}
/// Default external node URL for main network.
const DEFAULT_MAIN_URLS: [&'static str; 3] = [
"https://main.gri.mw",
/// Default external node URLs for main network. grincoin.org leads (main.gri.mw
/// has intermittent issues); main.us-ea.st is the Goblin-run node.
const DEFAULT_MAIN_URLS: [&'static str; 4] = [
"https://grincoin.org",
"https://main.us-ea.st",
"https://main.gri.mw",
"https://mainnet.grinffindor.org",
];