From e2c31274bdfc4b5bd64a2dfe8fe72b0060f16eb3 Mon Sep 17 00:00:00 2001 From: butler Date: Tue, 5 May 2026 02:03:24 -0400 Subject: [PATCH] Move fork home to git.us-ea.st MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repointed every reference (footer link, request User-Agent, README clone instruction) from git.pka.world/butler/grin-explorer to git.us-ea.st/butler/grin-explorer — same Gitea instance, same creds, just the canonical hostname for this project. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 2 +- src/requests.rs | 2 +- templates/base.html.tera | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2610dc9..6d8c1bb 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Grin is the very first, simple and fair MimbleWimble blockchain implementation. ## Installation -1. Clone repository: `git clone https://git.pka.world/butler/grin-explorer.git` +1. Clone repository: `git clone https://git.us-ea.st/butler/grin-explorer.git` 2. Build explorer: ``` cd grin-explorer diff --git a/src/requests.rs b/src/requests.rs index 9e2cd01..6a28ec2 100644 --- a/src/requests.rs +++ b/src/requests.rs @@ -244,7 +244,7 @@ pub async fn get_market(dashboard: Arc>) -> Result<(), anyhow:: if CONFIG.coingecko_api == "enabled" && count % 20 == 0 { client = reqwest::Client::new(); result = client.get("https://api.coingecko.com/api/v3/simple/price?ids=grin&vs_currencies=usd%2Cbtc&include_24hr_vol=true") - .header("User-Agent", "https://git.pka.world/butler/grin-explorer") + .header("User-Agent", "https://git.us-ea.st/butler/grin-explorer") .send().await?; val = serde_json::from_str(&result.text().await?)?; } diff --git a/templates/base.html.tera b/templates/base.html.tera index 28424ff..6136a82 100644 --- a/templates/base.html.tera +++ b/templates/base.html.tera @@ -341,7 +341,7 @@