From 0cef7951072afcb506923f229e1825d25d150fb9 Mon Sep 17 00:00:00 2001 From: Nick Brown Date: Fri, 17 Apr 2020 01:42:42 -0700 Subject: [PATCH] Make addresses copyable --- explorer/src/components/AccountsCard.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/explorer/src/components/AccountsCard.tsx b/explorer/src/components/AccountsCard.tsx index 7bdb67a6a1..a305aa54f4 100644 --- a/explorer/src/components/AccountsCard.tsx +++ b/explorer/src/components/AccountsCard.tsx @@ -11,6 +11,7 @@ import { assertUnreachable } from "../utils"; import { displayAddress } from "../utils/tx"; import { useCluster } from "../providers/cluster"; import { PublicKey, LAMPORTS_PER_SOL } from "@solana/web3.js"; +import Signature from "./Signature"; function AccountsCard() { const { accounts, idCounter } = useAccounts(); @@ -156,7 +157,7 @@ const renderAccountRow = (account: Account) => { {statusText} - {account.pubkey.toBase58()} + {balance} {data}