import type { PublicKey } from "@solana/web3.js"; import { useMemo, type HTMLAttributes } from "react"; type Props = Omit, "children"> & { children: PublicKey | `0x${string}`; }; export const TruncatedKey = ({ children, ...props }: Props) => { const key = useMemo(() => { const isHex = typeof children === "string"; const asString = isHex ? children : children.toBase58(); return asString.slice(0, isHex ? 6 : 4) + ".." + asString.slice(-4); }, [children]); return {key}; };