From 89de62014e66a5f3e9aec46ac52ef97e09bf8f6c Mon Sep 17 00:00:00 2001 From: Stark Sama Date: Sat, 4 Apr 2026 17:23:14 +0800 Subject: [PATCH] chore: update docs link to docs.monarchlend.xyz --- src/utils/external.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils/external.ts b/src/utils/external.ts index 159d8288..3ef0fe3c 100644 --- a/src/utils/external.ts +++ b/src/utils/external.ts @@ -61,8 +61,10 @@ export const getMerklCampaignURL = (chainId: number, type: string, identifier: s return `https://app.merkl.xyz/opportunities/${chainName}/${type}/${identifier}`; }; +export const MONARCH_DOCS_URL = 'https://docs.monarchlend.xyz'; + export const EXTERNAL_LINKS = { - docs: 'https://monarch-lend.gitbook.io/monarch-lend/', + docs: MONARCH_DOCS_URL, discord: 'https://discord.gg/Ur4dwN3aPS', github: 'https://github.com/monarch-xyz', } as const;