From 1e8e0f6526d9744c1ee3d1bcc078e5810adca70e Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Wed, 17 Jun 2026 23:06:52 -0400 Subject: [PATCH] settings: point the GRIM link at the live upstream (GetGrin/grim), not the stale ardocrat fork --- src/gui/views/goblin/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/views/goblin/mod.rs b/src/gui/views/goblin/mod.rs index 5d07d51..c3799d1 100644 --- a/src/gui/views/goblin/mod.rs +++ b/src/gui/views/goblin/mod.rs @@ -2657,7 +2657,9 @@ impl GoblinWalletView { let mut open_nips = false; settings_group(ui, &t!("goblin.settings.third_party"), |ui| { if settings_row_nav(ui, &t!("goblin.settings.grim"), crate::VERSION) { - open_url(ui, "https://github.com/ardocrat/grim"); + // Live upstream GRIM (GitHub mirror of code.gri.mw/GUI/grim). + // Was github.com/ardocrat/grim — a stale personal fork. + open_url(ui, "https://github.com/GetGrin/grim"); } if settings_row_nav(ui, &t!("goblin.settings.grin_node"), "5.4.0") { open_url(ui, "https://github.com/mimblewimble/grin");