From f0a3ca397104ad1691e04d34f18377c03a5cecd9 Mon Sep 17 00:00:00 2001 From: secretmemelocker Date: Tue, 27 Jan 2026 21:40:46 -0600 Subject: [PATCH] Add debank link --- src/components/shared/account-actions-popover.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/shared/account-actions-popover.tsx b/src/components/shared/account-actions-popover.tsx index 2f24fb41..013c3d84 100644 --- a/src/components/shared/account-actions-popover.tsx +++ b/src/components/shared/account-actions-popover.tsx @@ -2,7 +2,7 @@ import { useCallback, type ReactNode } from 'react'; import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem } from '@/components/ui/dropdown-menu'; -import { LuCopy, LuUser } from 'react-icons/lu'; +import { LuCopy, LuUser, LuWallet } from 'react-icons/lu'; import { SiEthereum } from 'react-icons/si'; import { useStyledToast } from '@/hooks/useStyledToast'; import { getExplorerURL } from '@/utils/external'; @@ -42,6 +42,10 @@ export function AccountActionsPopover({ address, chainId, children }: AccountAct window.open(explorerUrl, '_blank', 'noopener,noreferrer'); }, [address, chainId]); + const handleViewDeBank = useCallback(() => { + window.open(`https://debank.com/profile/${address}`, '_blank', 'noopener,noreferrer'); + }, [address]); + return ( @@ -58,7 +62,7 @@ export function AccountActionsPopover({ address, chainId, children }: AccountAct onClick={handleViewAccount} startContent={} > - View Account + View Monarch Portfolio View on Explorer + } + > + View on DeBank + );