import solscan from "../../assets/solscan.png"; import { abbreviate } from "../../utils/abbreviate"; import { PublicKey } from "@solana/web3.js"; import Urls from "../../settings/urls"; export const ExplorerButton = ({ pubkey, tx, }: { pubkey?: string | PublicKey; tx?: string; }) => { return ( {abbreviate(pubkey || (tx as string), 4)} ); };