diff --git a/pages/multi/[address]/index.tsx b/pages/multi/[address]/index.tsx index 16a8e2b..c058e60 100644 --- a/pages/multi/[address]/index.tsx +++ b/pages/multi/[address]/index.tsx @@ -16,6 +16,7 @@ import Button from "../../../components/inputs/Button"; import Page from "../../../components/layout/Page"; import StackableContainer from "../../../components/layout/StackableContainer"; import { useAppContext } from "../../../context/AppContext"; +import { explorerLinkAccount } from "../../../lib/displayHelpers"; import { getMultisigAccount } from "../../../lib/multisigHelpers"; type TxView = null | "send" | "delegate" | "undelegate" | "redelegate" | "claimRewards"; @@ -76,18 +77,18 @@ const Multipage = () => { assert(state.chain.addressPrefix, "address prefix missing"); + const explorerHref = explorerLinkAccount( + process.env.NEXT_PUBLIC_EXPLORER_LINK_ACCOUNT || "", + multisigAddress, + ); + return (

{multisigAddress ? : "No Address"}

- {multisigAddress ? ( - - ) : null} + {explorerHref ? : null}
{pubkey && (