From 5deffbda4c869b03692f386f64bd7389a86fb712 Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Thu, 18 Jun 2026 00:24:34 -0400 Subject: [PATCH] settings: GRIM link now points at the live upstream MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Settings third-party 'GRIM (upstream wallet)' link opened github.com/ardocrat/grim — a stale personal fork ~106 commits behind. Point it at github.com/GetGrin/grim, the live GitHub mirror of canonical code.gri.mw/GUI/grim. --- 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 5d07d51f..c3799d1c 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");