From fc52db2ecd44cd9f63b346807d0ae3715fb9dd2a Mon Sep 17 00:00:00 2001 From: Shah Hussain Date: Mon, 8 Jun 2026 12:24:30 +0500 Subject: [PATCH] =?UTF-8?q?fix(domain):=20getmnemo.xyz=20=E2=86=92=20mnemo?= =?UTF-8?q?hq.com=20(post-cutover=20dead-domain=20repoint)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/lib/config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cce1bda..e7fc8a0 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "type": "git", "url": "https://github.com/ledgermem/getmnemo-cli.git" }, - "homepage": "https://getmnemo.xyz", + "homepage": "https://mnemohq.com", "bugs": { "url": "https://github.com/getmnemo/getmnemo-cli/issues" } diff --git a/src/lib/config.ts b/src/lib/config.ts index 1cb605a..35ee8f2 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -12,7 +12,7 @@ export interface CliConfig { const CONFIG_DIR_NAME = ".getmnemo"; const CONFIG_FILE_NAME = "config.json"; -const DEFAULT_API_URL = "https://api.getmnemo.xyz"; +const DEFAULT_API_URL = "https://api.mnemohq.com"; export function configDir(): string { return join(homedir(), CONFIG_DIR_NAME);