From 0dcb0796dc15d6ecf572cbde1e00b11b25f863b6 Mon Sep 17 00:00:00 2001 From: Chirag <157453139+Chirag-S-Kotian@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:20:14 +0530 Subject: [PATCH] feat(explorer): As a user, I want the Portal page to display links to the Portal contract and owner addresses (#849) --- explorer/src/pages/Portal/index.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/explorer/src/pages/Portal/index.tsx b/explorer/src/pages/Portal/index.tsx index e8f20d35..163cb7f6 100644 --- a/explorer/src/pages/Portal/index.tsx +++ b/explorer/src/pages/Portal/index.tsx @@ -1,4 +1,5 @@ import { t } from "i18next"; +import { ArrowUpRight } from "lucide-react"; import { useCallback } from "react"; import { useParams } from "react-router-dom"; import useSWR from "swr"; @@ -12,6 +13,7 @@ import { EMPTY_STRING } from "@/constants"; import { regexEthAddress } from "@/constants/regex"; import { SWRKeys } from "@/interfaces/swr/enum"; import { useNetworkContext } from "@/providers/network-provider/context"; +import { getBlockExplorerLink } from "@/utils"; import { PortalLoadingSkeleton } from "./components/PortalLoadingSkeleton"; import { PortalModules } from "./components/PortalModules"; @@ -60,10 +62,12 @@ export const Portal = () => { { title: t("portal.id"), subtitle: portal.id, + link: chain ? `${getBlockExplorerLink(chain)}/${portal.id}` : "#", }, { title: t("portal.ownerAddress"), subtitle: displayPortalOwnerEnsAddress(), + link: chain ? `${getBlockExplorerLink(chain)}/${portal.ownerAddress}` : "#", }, { title: t("portal.revokable.title"), @@ -85,10 +89,21 @@ export const Portal = () => {